Hi all the cats,
please consider my source attached source.avi (it's a mpeg-in-avi file video and audio)
In virtualduib I open it with avisynth with this script and using the ffms2 plugin:
FFVideoSource("V:\bframes1.avi")
AssumeFPS(25)
but in virtualdub there are no audio streams available. Please how have modify the avisynth script so that virtualdub can have audio, 16bit stereo L+R? thanks
+ Reply to Thread
Results 1 to 3 of 3
-
-
Code:
aud=FFAudioSource("V:\bframes1.avi") vid=FFVideoSource("V:\bframes1.avi") AudioDub(vid,aud) AssumeFPS(25)
Or if you have the ffms2.avsi loaded, it includes a function called FFMpegSource2()
Code:FFMpegSource2("V:\bframes1.avi", atrack=-1) AssumeFPS(25)