mpeg-convert

A python wrapper that enhances the user experience and productivity when using ffmpeg


Keywords
transcode, ffmpeg, convert, media, mp4, mp3
License
MIT
Install
pip install mpeg-convert==0.2.1

Documentation

A customizable1 tool that provides some quality-of-life additions for FFmpeg. This tool adds features such as pretty printing, progress bars, and command presets.

Installation

Ensure Python and FFmpeg is installed. Then, use the Python Packaging Index (PyPI) to install mpeg-convert and its dependencies. You may need to use pip3 instead of pip in certain environments:

$ pip install --upgrade mpeg-convert
$ mpeg-convert --help

This tool does not aim to replace FFmpeg or any other conversion software such as Handbrake. Rather, it tries to improve the user experience and productivity when using FFmpeg. See usages and configuring for more details.

Usage

The most basic way to use mpeg-convert is to specify an input file path and an output file path. mpeg-convert will then call FFmpeg to initiate the conversion, and display a bar indicating the progress of the conversion. No extra FFmpeg options will be added when transcoding the file. This is demonstrated with the command and screenshot below:

$ mpeg-convert sample.mp4 output.mov

no_preset_nobg

For conversions where you may need or want to tweak extra options (e.g. frame rate, constrast, or bitrate changes), you can add a named or unnamed preset by following the configuration guide. After you have saved your custom preset to the config file, you can use it by using the --preset flag for named presets, or convert between matching file containers/extensions for unnamed presets. This will use the extra custom FFmpeg options you specified in the preset when transcoding. This is demonstrated below:

$ mpeg-convert sample.mp4 output.mov --preset="custom-1080p"

yes_preset_nobg

As of writing, presets are the only method to use FFmpeg options while converting with mpeg-convert. Additionally, multiple inputs and other advanced FFmpeg features are not supported by mpeg-convert. Such feature is unlikely to be added to mpeg-convert, since it is written as a complement, not replacement, to FFmpeg; consider directly using FFmpeg or other UI based programs such as Handbrake for such tasks.

Configuring

Presets allows you to save FFmpeg commands for repeated use, eliminating the need to enter long and complex flag/options each time you need to convert or edit media files. You can add presets to mpeg-convert by editing the YAML configuration file. To open the config, use the --config flag as demonstrated below:

$ mpeg-convert --config

There are two types of presets you can specify in the config file: named presets and unnamed presets.

  • Named presets are invoked when you explicitly use the --preset flag. You can add a named preset under the named key. Each named preset must have a unique name and a string of ffmpeg options. To activate a named preset, specify its name with the --preset flag, and mpeg-convert will use the options when converting. An example of a named preset is below:
named:
- name: "custom-1080p"
  options: "-vf scale=1920x1080 -r 24"
  • Unnamed presets are applied automatically to conversions of specific file types and extensions. They are useful when you want conversions between one container type and another container type to always use certain FFmpeg options. Each unnamed preset must have an array of file extensions in from-type and to-type, and a string of FFmpeg options; and voilà, whenever you convert between any of the file extensions in from-type to any of the extensions in to-type, mpeg-convert will automatically use the FFmpeg options specified in the unnamed preset. An example of an unnamed preset is below:
unnamed:
- from-type: ["mp4", "mov"]
  to-type: ["gif"]
  command: "-vf scale=1280x720 -r 8"

If you have an unnamed preset specified for a file type you are converting to/from, but you would like to temporarily disable it, you can use the --plain flag. This will remove any FFmpeg options for the current conversion.

When searching for matching presets, mpeg-convert will check using the following order:

  • Check if --plain flag is specified. If not...
  • Check if --preset flag is specified. If not...
  • Check if there is a matching unnamed preset. If not...
  • Initiate the conversion without any FFmpeg commands

Troubleshooting

  • Do you have python installed?
  • Do you have ffmpeg installed?
  • Common pitfalls:
    • Does the output file have an extension?
    • Does the extension match the codec?
      • HEVC with .mp4
      • ALAC with .m4a
    • Is the encoder installed on your system?

Notes

This project has undergone substantial changes in v0.2.0. Click here if you are looking for documentation before v0.2.0

--