This is an old revision of the document!


FFMPEG

https://ffmpeg.org

A complete, cross-platform solution to record, convert and stream audio and video.

ffmpeg cli snippets

Cutting Videos1) :

  • ffmpeg -ss 00:00:15 -i input.mkv -to 00:01:00 -c copy output.mkv
  • ffmpeg -i input.mp4 -to 00:00:46 output.mp4

-ss is starting time, -to is duration of cut, -c is codec and copy is input's codec copied to output's.

tech/software/programs/cli/ffmpeg.1667843095.txt.gz · Last modified: 2022/11/07 17:44 by alephalpha0
CC Attribution-Share Alike 4.0 International Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International