0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[備忘録] Ubuntuで動画のclippingや結合を簡単にTerminalから行う方法

Posted at

学会発表の際に動画を撮影する必要があり,その編集時の備忘録.

簡単な話,ffmpegでできます.

# 10秒から2分30秒までを切り抜いて複製.
$ ffmpeg -ss 00:00:10.0 -i sample-before.mp4 -to 00:02:30.0 -c copy sample-after.mp4

# 複数の動画を結合.
$ ffmpeg -i "concat:sample1.mp4|sample2.mp4|sample3.mp4" -c copy sample-after.mpg
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?