Skip to content

Instantly share code, notes, and snippets.

@pointofpresence
Last active March 31, 2024 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pointofpresence/5cf36578fd9c20316f1bbddca3192d7d to your computer and use it in GitHub Desktop.
Save pointofpresence/5cf36578fd9c20316f1bbddca3192d7d to your computer and use it in GitHub Desktop.
FFmpeg: Разбить видео на фрагменты по времени
https://stackoverflow.com/questions/5651654/ffmpeg-how-to-split-video-efficiently - VIDEO SPLIT
time ffmpeg -v quiet -y -i input.ts -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 -sn test1.mkv
time ffmpeg -v quiet -y -i input.ts -vcodec copy -acodec copy -ss 00:30:00 -t 01:00:00 -sn test2.mkv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment