Displaying 3 results from an estimated 3 matches for "oggdemultiplex".
Did you mean:
oggdemultiplexer
2004 Sep 10
2
Ogg FLAC
--- Ingo Ralf Blum <ingoralfblum@gmx.de> wrote:
> > currently flac sets all granulepos members of the ogg pages to 0,
> when
> > embedding a FLAC stream into an Ogg file. Is it possible to change
> this
> > behaviour to use a more reasonable value, e.g. the bytes written so
> far.
> So
> > when the first packets is 1000 bytes long it gets the granulepos
2004 Sep 10
0
Ogg FLAC
...number, etc). I was going to forward this to vorbis-dev
> but haven't yet.
If you see the whole thing from a perspective of a filter graph, like
DirectShow or GStreamer, the number of bytes written so far is the best
solution. The graph for playing such a stream would be
FileReader -> OggDemultiplexer -> FLACDemultiplexer -> here we have PCM
audio data
Each filter has a capability to receive seek commands, which works upstream,
and each filter can deliver data by pushing it downstream. So lets look what
happens when you seek to a specific time. The FLAC demultiplexer, which
thinks, that...
2004 Sep 10
1
Ogg FLAC and granulepos
...his to vorbis-dev
> > but haven't yet.
>
> If you see the whole thing from a perspective of a filter graph, like
> DirectShow or GStreamer, the number of bytes written so far is the
> best
> solution. The graph for playing such a stream would be
>
> FileReader -> OggDemultiplexer -> FLACDemultiplexer -> here we have
> PCM
> audio data
>
> Each filter has a capability to receive seek commands, which works
> upstream,
> and each filter can deliver data by pushing it downstream. So lets
> look what
> happens when you seek to a specific time. Th...