I'm fairly inexperienced with PowerShell and I use it in certain occasions when I need to have total control of the conversion needed.
So, I am facing a problem where I have a collection of 20 videos. All share the same number pattern from 1300 to 1319, and I want to convert the whole collection of "MOV" files into "MP4" files using this command:
ffmpeg -i my-video-1300.mov -vcodec h264 -acodec mp2 my-video-1300.mp4
Is there a way to use a Regular Expression, wildcard, or whatever name is given to simply create a single line conversion command.
My idea of what it "should look like" is:
ffmpeg -i my-video-13[00-19].mov -vcodec h264 -acodec mp2 my-video-13[00-19].mp4
Of course this last line doesn't work, but I would like to learn the correct way of doing it.
Thanks.