Runs an FFmpeg command and shows a progress bar with percentage progress, elapsed time and ETA.
FFmpeg outputs something like:
frame= 692 fps= 58 q=28.0 size= 5376KiB time=00:00:28.77 bitrate=1530.3kbits/s speed=2.43x
Better FFmpeg Progress outputs something like:
⠏ Processing abc.webm ━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 23% 0:00:04 00:15
Where:
Processing abc.webmis the description of the progresss bar.23%is the percentage progress.0:00:04is the time elapsed.00:15is the estimated time until the FFmpeg process completes.
pip install better-ffmpeg-progress --upgradeCreate an instance of the FfmpegProcess class and supply a list of arguments like you would when using subprocess.run() or subprocess.Popen(). Example:
from better_ffmpeg_progress import FfmpegProcess, FfmpegProcessError
command = [
"ffmpeg",
"-i",
"https://media.xiph.org/video/derf/y4m/ducks_take_off_1080p50.y4m",
"-map",
"0:V",
"-c:V",
"libx264",
"-preset",
"ultrafast",
"-f",
"null",
"-",
]
try:
process = FfmpegProcess(command)
# Uncomment this line to use tqdm instead of Rich.
# process.use_tqdm = True
process.run()
except FfmpegProcessError as e:
print(
"An error occurred when running Better FFmpeg Progress:\n"
f"{e}"
)By default, Better FFmpeg Progress detects the duration of the input file and uses it to calculate percentage progress and ETA.
For partial, damaged, streamed or synthetic inputs, FFmpeg may be unable to detect the duration correctly. In these cases, you can provide the duration manually using duration_override.
The value should be the duration of the input file, in seconds:
from better_ffmpeg_progress import FfmpegProcess
command = [
"ffmpeg",
"-i",
"partial-input.flv",
"-c",
"copy",
"recovered-output.mkv",
]
process = FfmpegProcess(
command,
duration_override=1222.64,
print_detected_duration=True,
)
process.run()An instance of FfmpegProcess accepts the following optional arguments:
ffmpeg_log_level— Set a value for FFmpeg's-logleveloption. Default:"verbose".ffmpeg_log_file— Filepath or file-like object to which FFmpeg stderr will be written. Default:<input filename>_ffmpeg_log.txt.print_detected_duration— Print the detected duration. Default:False.duration_override— Specify input file duration in seconds to use for progress calculation, instead of trying to detect this automatically with FFprobe. Default:None.
The run method accepts the following optional argument:
print_command— Print the FFmpeg command being executed. Default:False.
By default, the Rich library is used to display a progress bar. tqdm can be used instead by setting process.use_tqdm = True:
process = FfmpegProcess(command)
process.use_tqdm = True
process.run()