I'll piggy-back on the thread in case any NT expert is lurking around here.
I need to convert several MOV files into MP4, while converting the audio track as well, but the code I used from here doesn't seem to work:
Code: Select all
c:\>for %%A IN (*.mov) DO ffmpeg -i "%%A" -c:v copy -c:a libmp3lame -ab 128000 -ar 44100 -ac 2 -shortest -f mp4 "%%A.mp4"
%%A was unexpected at this time.
c:\>for "%%A" IN (*.mov) DO ffmpeg -i "%%A"-c:v copy -c:a libmp3lame -ab 128000 -ar 44100 -ac 2 -shortest -f mp4 "%%A.mp4"
"%%A" was unexpected at this time.
Thank you.
