Timothy J. Wood
2000-Sep-10 21:15 UTC
[vorbis-dev] Adding oggenc support for files other than WAV?
Is anyone working on making oggenc use some nice library that reads lots of different audio file formats so that people can encode from files other than WAV? For example, the 'AudioFile' library (just found it via a search on freshmeat) reads wav, aiff, aiff-c, .au, and .snd. Maybe there are other better libraries (OpenAL, maybe), but this library does what I want (read AIFF). -tim --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
sbj@mit.edu
2000-Sep-10 23:08 UTC
[vorbis-dev] Adding oggenc support for files other than WAV?
> Is anyone working on making oggenc use some nice library that reads >lots of different audio file formats so that people can encode from >files other than WAV?I am working on an audio library with Vorbis support, which will do what you want. If you're looking for something more than reassurance (e.g. source code) - it's not ready yet. James W. Clark --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
Michael Smith
2000-Sep-11 00:22 UTC
[vorbis-dev] Adding oggenc support for files other than WAV?
At 09:15 PM 9/10/00 -0700, you wrote:> > Is anyone working on making oggenc use some nice library that reads lotsof different audio file formats so that people can encode from files other than WAV? For example, the 'AudioFile' library (just found it via a search on freshmeat) reads wav, aiff, aiff-c, .au, and .snd. Maybe there are other better libraries (OpenAL, maybe), but this library does what I want (read AIFF).>It's somewhere on my list of things to do, but I'm not likely to have time soon - feel free to have a go. Oggenc was designed so that this would be VERY straightforward to implement. There's a static array somewhere near the start which oggenc walks through. This contains function pointers and misc. other info. Oggenc will try each of these in turn until one returns successfully. This function is responsible for setting up some other variables and function pointers which are used for oggenc to read raw audio data. It's completely untested, since only wav reading currently exists, but it's not conceptually all that difficult - so I think it should work. Michael --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
David Balazic
2000-Sep-11 05:16 UTC
[vorbis-dev] Adding oggenc support for files other than WAV?
Timothy J. Wood (tjw@omnigroup.com) wrote :> Is anyone working on making oggenc use some nice library that reads lots of different audio file formats so that people > can encode from files other than WAV? For example, the 'AudioFile' library (just found it via a search on freshmeat) > reads wav, aiff, aiff-c, .au, and .snd. Maybe there are other better libraries (OpenAL, maybe), but this library does > what I want (read AIFF).ox -t auto your.file -t wav - | oggenc ..... It is not a library, but if you write a wrapper shell script for the above command line, it will look ( and fell ) like one. David Balazic --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.