Using a Simple Wildcard Command in FFmpeg

Author’s note: This is a very simple automation technique for FFmpeg beginners. I’m sure there are much more efficient ways to script this project, but this represents my baby steps in FFmpeg automation.

I recently started a consulting project that involved encoding multiple files to multiple CRF values to create rate-distortion curves and BD-Rate computations. I’m testing three codecs with sixteen different test files, encoding each codec in a separate folder to avoid any kind of FFmpeg or other operating conflicts. So, this means three batch files for each file (one for each codec) or 48 different batch files. Not too onerous because all that changes is the file name, but I was wondering if there was a better way.

Here’s where I started; the first line creates the file, the second measures VMAF and PSNR with the Moscow State University Video Quality Measurement Tool.

ffmpeg -y -i GTAV.mp4 -c:v libx264 -crf 25 GTAV_x264_CRF25.mp4

"C:\Program Files\MSU_VQMT_12\msu_metric.exe" -in GTAV.mp4 -in GTAV_x264_CRF25.mp4 -csv -metr vmaf over Y -metr psnr over Y

Then I repeated the sequence for four different CRF values.

Adding the Wildcard

The client had sent a batch file that applied some wildcard automations. I couldn’t run it as is but adopted (stole) the operational schema which substituted wild cards for the static file name.

Here’s the new batch language that substitutes %1 for the file name in the source and output file. I saved the batch file as ffmpeg_x264.bat.

ffmpeg -y -i %1.mp4 -c:v libx264 -crf 25 %1_x264_CRF25.mp4

"C:\Program Files\MSU_VQMT_12\msu_metric.exe" -in %1.mp4 -in %1_x264_CRF25.mp4 -csv -metr vmaf over Y -metr psnr over Y

To run the batch and encode the file, you type in the batch and file name in the command window. Or, to encode the GTAV test file you would run this.

ffmpeg_x264 GTAV

Encoding Multiple Files

The obvious next question is how to run this command for all test files? The answer? Create another batch file in the same folder that sends out the batch file name:test filename commands in sequence. To make it work on Windows, you have to add call before the commands, like so (for GTAV and TOS).

call ffmpeg_x264.bat GTAV
call ffmpeg_x264.bat TOS

Getting Fancy with Folders

Don’t want all the files saved in the same folder? You can add wildcard-driven directories to your commands as well. Add the top line to the batch file (ffmpeg_x264.bat in my case)  to create the directory and the bolded sections to each of the command lines.

md %1

ffmpeg -y -i %1.mp4 -c:v libx264 -crf 25 %1\%1_x264_CRF25.mp4

"C:\Program Files\MSU_VQMT_12\msu_metric.exe" -in %1.mp4 -in %1\%1_x264_CRF25.mp4 -csv -metr vmaf over Y -metr psnr over Y -csv-dir %1 

Again, you create the folder with the file name using the md %1 command.

You store the file to that folder using the bolded command in the second line.

With the VQMT tool, you save the results file in the new directory via the bolded script in the third line.

 


These FFmpeg to the Rescue articles will appear in future additions of my book Learn to Produce FFmpeg in 30 Minutes or Less, now on the 2018 Edition. The book helps beginning and intermediate FFmpeg users produce high-quality, bandwidth-efficient files and encoding ladders as efficiently as possible. For those who prefer learning via video, check out this course. 

About Jan Ozer

Avatar photo
I help companies train new technical hires in streaming media-related positions; I also help companies optimize their codec selections and encoding stacks and evaluate new encoders and codecs. I am a contributing editor to Streaming Media Magazine, writing about codecs and encoding tools. I have written multiple authoritative books on video encoding, including Video Encoding by the Numbers: Eliminate the Guesswork from your Streaming Video (https://amzn.to/3kV6R1j) and Learn to Produce Video with FFmpeg: In Thirty Minutes or Less (https://amzn.to/3ZJih7e). I have multiple courses relating to streaming media production, all available at https://bit.ly/slc_courses. I currently work as www.netint.com as a Senior Director in Marketing.

Check Also

Build Your Own Live Streaming Cloud

I’m proud to speak at NETINT’s Build Your Own Live Streaming Cloud Symposium. We’ve assembled …

Man learning on his mobile device

Streaming Learning Center Goes Mobile

Just a quick announcement to let you know that if you’re taking a course on …

Figure 2. Cost per hour to produce a single 1080p stream using the x264 codec and FFmpeg. Graviton is clearly the most cost effective.

Which is the Best AWS CPU for FFmpeg?

If you encode with FFmpeg on AWS, you probably know that you have three CPU …

Leave a Reply

Your email address will not be published. Required fields are marked *