Skip to content

Instantly share code, notes, and snippets.

@0xff00ff
Created October 19, 2015 17:22
Show Gist options
  • Save 0xff00ff/bcac74ec10ef96303d27 to your computer and use it in GitHub Desktop.
Save 0xff00ff/bcac74ec10ef96303d27 to your computer and use it in GitHub Desktop.
#порезать видео на 2 части начиная с 47 сек и длительностью 12 сек
ffmpeg -i 'from.mp4' -ss 00:00:47.00 -t 00:00:12.00 -async 1 -strict -2 'result.mp4'
# слепить видео из двух частей
ffmpeg -i part1.mp4 -i part2.mp4 -filter_complex '[0:0] [0:1] [1:0] [1:1] concat=n=2:v=1:a=1 [v] [a]' -map '[v]' -map '[a]' -strict -2 'result.mp4'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment