A collection of .bat files for some usefull ffmpeg conversions.
Bat files are supported in windows only.
Bat files work on their own, but you need to have the latest versions of ffmpeg installed, as well as ffprobe and ffplay (those two are packed along ffmpeg.exe)
- Download the latest release and unpack it wherever you want.
- If you don't have FFmpeg already, download the lastest "static" ffmpeg pack. You can either put the ffmpeg executables in the repository's
ffmpeg
folder, or register ffmpeg to your operating system (recommended!).
Click to expand: How to register ffmpeg in Windows
-
Browse in the archive up to the
bin
subfolder containing ffmpeg, ffprobe and ffplay executables. Uncompress thebin
folder where you want. This guide will use:C:\ffmpeg\bin
-
Register ffmpeg, ffprobe & ffplay to environment variables
Through command line (fastest):
- Open the terminal (press X and click
Terminal
) - enter the following command:
setx PATH "%PATH%;C:\ffmpeg\bin"
Through user interface:
- Startmenu Search: "Edit Environment Variables for your account"
- Environment variables
- Under "User variables for <username>", find and double-click "Path"
- New
- Type in
C:\ffmpeg\bin
and ⏎ Enter - Ok
- Ok
- Ok
- Open the terminal (press X and click
I.E. with files named as "Video_TO_xxx.bat".
These files are made to be the simplest to use :
- drag an drop your input file on the .bat file;
- a command prompt window opens during the process;
- once finished, the window disapears;
- the new files are located aside the originals.
Same general usage. But:
To make it work, you need to have your picture file in the same folder as the source video, named as cover.jpg
.
Do check those links first:
FileName | Image Orientation | Pixel Length of Smallest Side |
---|---|---|
cover.jpg | Portrait or square | 600 |
small_cover.png | Portrait or square | 120 |
cover_land.png | Landscape | 600 |
small_cover_land.jpg | Landscape | 120 |
Same general usage.
Uses Windows' "Courier New" font in bold by default, with a two-digits zero padding. If you need to customize:
- Replace the font path line 8 in
fontfile=/Windows/Fonts/courbd.ttf
(**on Windows, don't use\
nor incllude the drive letter likeC:
) - Change the
2
to whatever digit number line 8 in{eif\:n\:d\:2}
Use the files named as "ImgSeq_To_xxx.bat".
As it is more complex to manage images sequences, you need to:
Image sequence have some variable settings:
- framerate (default used: 24)
- start frame (default used: 1)
- name pattern (default used: "frame_xxx.jpg")
If your need a different frame rate or start frame, feel free to edit the .bat file.
As for the name pattern, the easiest is to have your image files created with the same name pattern. You can also edit the .bat file.
To edit the name pattern, edit the value between quote marks. As for the frames numbering, here's how it works:
There's always a code like this one somewhere in the name pattern: %%03d
. This is used to indicate the script that each file has a number that goes up for each file name. The way you write the code will indicate how he is compsed, and you can put the code anywhare in the name :
-
%%
indicates where the numbers should start -
if the counting is zero-padded (like
01
02
03
...), write a0
-
indicate the number of digits
-
end with a
d
At the end of the filenane is always writen the file extension. It can be anything you need, like .jpg, .png, etc. Be aware that some formats like EXR need some special treatment, hence the dedicated .bat files for them.
To use the .bat files:
-
Copy the desired .bat file in the images' folder
-
Make sure the .bat settings fit your needs, edit the script or your files names if needed
-
Double-click the .bat file
-
A command prompt window opens during the process;
-
Once finished, the window disapears;
-
The new file is located aside the pictures.
Sets a custom cover/thumbnail for a MKV video file.
Sets a custom cover/thumbnail for a MP4 video file.
Prints the frame number on a MP4 video, with a semi-transparent background and a two-digit zero-padded number.
Prints the frame number on a MOV video, with a semi-transparent background and a two-digit zero-padded number.
Prints the frame number on a MP4 video, with a semi-transparent background and a two-digit zero-padded number.
Converts a JPG image sequence into a MP4 video. The output video is 24 frames per second encoded with an AVC/H264 standard medium quality.
Converts an EXR image sequence into a MP4 video, with settings specific to EXR files that are not suited for usual JPGs or PNGs. The output video is 24 frames per second encoded with an AVC/H264 standard medium quality.
Needs two input files, sort them alphabethically and produces two videos: one side-by-side horizontally and one stacked with overlay blend mode.
Creates an video file suited for playback on Android devices.
Creates a MKV file encoded with AOMedia Video 1 (AV1) codec, supposed to save 30% bitrate compared to VP9 and HEVC at the same visual quality (and 50% compared to AVC/x264). As of today, the encoder is extremely slow and **experimental **(encodes at ~0,01% of original video speed on my tests). Use at your own risk.
Creates an animated GIF file playing 24 frames per second, from any video file.
Creates an animated GIF file playing 30 frames per second, resized at 320 pixels wide (with the same ratio), from any video file.
Turns your video into a standard PNG image sequence. The files will be stored in a folder aside your original video file, with the same name, as the following:
| original_video.mp4
| original_video_name/
| | frame_xxxx.png
Frame counting is zero-paded and uses four digits.
Made for Instagram squares in mind, but can be used for anything. It does several things:
-
ensure maximum compatibility for displaying videos on mobile devices (including old ones) ;
-
ensures compatibility for Instagram ;
-
Resizes the video to fit it in a square while keeping the original aspect ratio ;
-
Fills the gaps left by the original video's ration by a blurred background effect.
You can change the output resolution if you want. Just open the bat file in a text editor, and edit the SquareSize
value at line 5. The default value is 600 (pixels), you can use any integrer value you want. Just note that the higher you set, the longer it will take (because there's more data to process, blur increase time exponentially according to resolution) and Instagram doesn't displays more than ~600 pixels a square anyway.
Example:
Creates a high quality HEVC file contained in MKV. That's what I use for file storage with quality.
Creates a standard MP4 file with fast h264 encoding. Good e.g. for quick previews of large files.
Creates a MP4 file made to be readable in most web services. While also making sure the size is dividable by 2 (otherwise some video files might not be readable in the Internet).
Creates a video file readable by discord and within the 8MB file size limit. Note that it adapts the encoding quality depending of the video duration. The longer the video, the uglier it gets. Dont try to send your movies with that 😉 .