I am checking the integrity of a lot of video files from a directory. I found this question (for Ubuntu). My question is what the code would be if I wanted to do the same on my Windows machine.
ffmpegBin-folder: /downloads/ffmpeg/bin
<br>
videoSource-folder: /downloads/ffmpeg/videos
<br>
error-Folder: /downloads/ffmpeg/error
When I do it with every single file instead of for the whole directory, I use the folowing code:
bin\ffmpeg.exe -v error -i videos\fileName.mp4 -f null - >error\fileName.log 2>&1
PS. All the videos have the ".mp4" extension, but preferably I would like to fetch all the files despite them having different extension.