Re: ffmpeg question



SteveSch <THISEMAIL@xxxxxxxxxxx> wrote:
I have been using this command on each file but it'd be nice to just do an
entire directory.

ffmpeg -i input.wmv -target ntsc-vcd output.mpg

A little sh scripting should do it:

for a in *.wmv; do ffmpeg -i $a -target ntsc-vcd `basename $a .wmv`.mpg; done

-Beej

.