Development

FFmpeg batch encode all files in folder

The best way to run a FFmpeg encode for all videos in a folder would be with a batch process.

A batch (.bat) file gets executed when you double-click it.

The following batch command will find all mp4 files in the directory and encode them using x264 slow crf 21 and put the output video into the compressed folder.

for %%a in ("*.mp4") do ffmpeg -i "%%a" -c:v libx264 -preset slow -crf 21 "compressed\%%~na.mp4"
pause

Copy the above code into a text file, edit it to your needs and then change the extension to .bat

This is a great way to process a bunch of files autonomously. Remember that if your files are not mp4 to change the *.mp4 to your file type. This could be *.mkv or *.avi

Share

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

1 year ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

1 year ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

2 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

2 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

2 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

2 years ago