Re: playing audio from an AVI file...
Posted by Xerxes Rånby on Mar 17, 2014; 12:00am
URL: https://forum.jogamp.org/playing-audio-from-an-AVI-file-tp4031894p4031929.html
The file PETE.avi contains both audio and video
I will quickly demonstrate playback using the GLMediaPlayer examples of this file.
#Audio only playback using GLMediaPlayer
2.1.5/jogamp-all-platforms/jar$ java -cp joal.jar:jogl-test.jar:gluegen-rt.jar:jogl-all.jar com.jogamp.opengl.test.junit.jogl.demos.es2.av.CrossFadePlayer PETE.avi
GLMediaPlayer[Playing, vSCR 2147483647, frames[p 0, d 0, t 0 (45.399 s), z 0 / 166], speed 1.0, 2330928 bps, hasSW true, Texture[count 0, free 0, dec 0, tagt 0xde1, ifmt 0xffffffff, fmt 0xffffffff, type 0xffffffff], Video[id -2, <unknown>, 0x0, glOrient false, 0.0 fps, 0.0 fdur, 0 bps], Audio[id 1, <Audio: pcm_u8, 11024 Hz, 1 channels, u8, 88 kb/s>, 88192 bps, 500490 frames], uri file:/home/familjen/Hämtningar/PETE.avi]
ALAudioSink[init true, playRequested true, device OpenAL Soft, ctx 0x310ecc43, alSource 1, chosen AudioDataFormat[sampleRate 11024, sampleSize 8, channelCount 1, signed false, fixedP true, packed, little-endian], al[chan Mono, type u8, fmt 0x1100, soft true], playSpeed 0.0, buffers[total 16, avail 14, queued[2, apts 0, 2004 ms, 22048 bytes], queue[g 16, l 32]
#Audio & Video playback using GLMediaPlayer
2.1.5/jogamp-all-platforms/jar$ java -cp joal.jar:jogl-test.jar:gluegen-rt.jar:jogl-all.jar com.jogamp.opengl.test.junit.jogl.demos.es2.av.MovieCube -file PETE.avi
reports:
Video[id 0, <Video: mjpeg, yuvj422p, 320x240>, 320x240, glOrient false, 15.00015 fps, 66.666 fdur, 0 bps], Audio[id 1, <Audio: pcm_u8, 11024 Hz, 1 channels, u8, 88 kb/s>, 88192 bps, 500490 frames]
Getting the GLMediaPlayer to connect with the AudioSystem3D will require some API changes inside the JOGL and JOAL project.
At a minimum, AudioSystem3D and GLMediaPlayers ALAudioSink has to use the same ALCcontext in order for the ALAudoSink "Source" to be positioned inside the AudioSystem3D.
This will require an enhancement bug-report.