Regards ,
I want to create a table with ffplay, that display the audio and video monitoring, from a signal like this:
Unfortunately I can do only the video section:
ffplay -i bar.mxf -vf "split=4[a][b][c][d],[d]vectorscope=m=color3:g=color[dd],[a]waveform=m=1:d=0:r=0:c=7[aa],\[b]waveform=m=0:d=0:r=0:c=7[bb],[c][aa]vstack[V],[bb][dd]vstack[V2],[V][V2]hstack"
I can't put together an audio filters with video filters, actually I can't even do the audio section, I've audio filters independent but I can't put it together.
SHOWVOLUME
ffplay -f lavfi "amovie=input.mka, asplit [a][out1]; [a] showvolume=f=255:b=4:w=720:h=68 [out0]"
EBUR128 LOUDNESS
ffplay -f lavfi -i "amovie=55.mp4,ebur128=video=1:meter=18 [out0][out1]"
AVECTORSCOPE
ffplay -f lavfi "amovie=input.mp3, asplit [a][out1];
[a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]"
How I can to set up the above table (audio and video) in a line of ffplay?
Or, How I can to set up only the audio section in a line of ffplay?
Thank you a lot