Menu
  • HOME
  • TAGS

How can I determine the length, in seconds, of a Vorbis stream?

c,vorbis

Using the lower level API, you can do this with ov_time_total.

ALSA buffer xrun induced by low quality source in ffmpeg capture

ffmpeg,video-capture,alsa,aac,vorbis

Found a partial solution in using two separate ffmpeg processes, as suggested in this thread: https://trac.ffmpeg.org/ticket/615 Specifically, this comment: https://trac.ffmpeg.org/ticket/615#comment:13 The separate audio and video files will have to be put together, later. Recording video in ffmpeg and audio in Audacity was not useful due to sync problems, written up...

How to decode ogg vorbis file java?

java,lwjgl,ogg,vorbis

VorbisJava does exactly this. There is a reasonable example in the tools directory. https://github.com/Gagravarr/VorbisJava/blob/master/tools/src/main/java/org/gagravarr/vorbis/tools/VorbisCommentTool.java VorbisFile vf = new VorbisFile(new File(inFile)); Also, Java Sound API has an extensible service provider model. You can add OggVorbis as a provider. See How can I decode OGG vorbis data from a ByteBuffer?...