Log in

View Full Version : VDub mod Batch Jobs


kaynian
25th February 2007, 19:19
Hello, all.

I'm looking for a way to batch-demux the audio streams from a directory of avis using virtual dub mod.

I've tried setting up a single job, going into the job list, and selecting 'process directory.' No luck. I don't care about video at this point

Is there something I'm doing wrong?

Pookie
26th February 2007, 00:13
Easier to do it with ffmpeg

demux audio
for %f in (*.avi) do ffmpeg -i "%f" -vn -acodec copy -y "%~nf.mp3"

demux video
for %f in (*.avi) do ffmpeg -i "%f" -an -vcodec copy -y "%~nf-v.avi"