I am completing a project in which I have mountains of .h264 video files that all need to be converted into good quality .avi files. They need to be .avi because I'm using DeepLabCut on them after. I have been able to do this file by file with the code:
ffmpeg -i practicevid_5.h264 -q:v 6 practicevid_5_2.avi
However, I would ideally like to be able to convert an entire folder of these files to save time. Please let me know if you can help out with this.