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?

More than 1 year has passed since last update.

ffmpegで指定箇所から指定時間の動画を切り取る

Last updated at Posted at 2021-11-30

ffmpegで指定箇所から指定時間の動画を切り取る

(例)src.mp4の開始240sec時間から、100secぶんを切り取ってdst.mp4という名前で保存する

$ ffmpeg -ss 240 -i src.mp4 -t 100 -c copy dst.mp4

尚、インストールは以下を事前に実行しておく

$ sudo apt install -y ffmpeg

参考

コマンドラインからmp4を倍速に変換する
FFMPEG で指定時間でカットするまとめ

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?