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?

動画の再生時間を変更する

0
Last updated at Posted at 2025-12-28

#fps 総フレーム数、再生時間を調べる
ffprobe -v error -select_streams v:0 -show_entries stream=avg_frame_rate,r_frame_rate,nb_frames,duration -of default=noprint_wrappers=1 input.mp4

#動画の総再生時間を変える(12秒に短縮)
ffmpeg -i flood.mp4 -vf "setpts=PTS*(12/80),fps=15,trim=duration=12,setpts=PTS-STARTPTS" -an flood_12s.mp4

#動画の解像度を変更する
fmpeg -i m6_in.mp4 -t 10 -vf "setpts=0.50*PTS,scale=1200:-1,fps=15" -c:v libx264 -crf 25 -preset medium -c:a aac -b:a 128k m6_out.mp4

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?