@pjft said in RetroPie Screensaver Videos Omxplayer OFF Make The PI Freeze:
Using Handbrake you can batch convert them easily.
MeGui also has a useful batch convert feature, but perhaps the easiest way is to use FFmpeg with a bat file. This is what I use, I copied it from some helpful person from a forum years ago; I wish I could credit them because I have used it quite a lot...
@Echo Off If Not Exist "%~dp0*.mp4" Exit /B CD /D "%~dp0" If Not Exist "newfiles\" MD "newfiles" For %%A In (*.mp4) Do ffmpeg -i "%%A" -c:v libx264 -preset veryslow -crf 28 -c:a aac -b:a 96k -pix_fmt yuv420p "newfiles\%%A" pauseCopy and paste that into a txt editor then save as a .bat file. You will need to put ffmpeg.exe into the same folder as the videos with the bat file, double click the bat file and the videos will be put into a "new files" folder.
You can change some of the parameters: the -crf value is set at 28 which will make a small file size but low quality, if you want higher quality change the 28 to 22.