Skip to content

Latest commit

 

History

History
57 lines (27 loc) · 1.53 KB

ffmpeg-concat.md

File metadata and controls

57 lines (27 loc) · 1.53 KB

ffmpeg-concat

Concatenate multiple video files

Synopsis

$ ffmpeg-concat [OPTION]... INFILE... OUTFILE

Description

This script concatenates multiple video files.

FFmpeg has three concatenation methods:

  1. concat filter

    Use this method if your inputs do not have the same parameters (width, height, etc.) or are not the same formats/codecs, or if you want to perform any filtering. Note that this method performs a re-encode of all inputs.

  2. concat demuxer

    Use this method when you want to avoid re-encode and your format does not support file-level concatenation (most files used by general users do not support file-level concatenation).

  3. concat protocol

    Use this method with formats that support file-level concatenation (MPEG-1, MPEG-2 PS, DV). Do not use with MP4. This method does not work for many formats, including MP4, due to the nature of these formats and the simplistic physical concatenation performed by this method. It is equivalent of just raw joining the files.

Options

  • -m, --method value

    Select concatenation method: filter , demuxer or protocol

  • -y, --yes

    Overwrite existing files

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

See also

License

MIT