Files
linux-wiki/content/deepin折腾笔记/第六章/6.11.9.md
2021-10-21 14:57:58 +08:00

359 B
Executable File
Raw Blame History

6.11.9 ffmpeg 调整播放速度

声音视频同时调节ffmpeg -i in.mp4 -filter_complex -r 25 "[0:v]setpts=1.25PTS[v];[0:a]atempo=0.8[a]" -map "[v]" -map "[a]" out.mp4
只调节视频ffmpeg -i in.mp4 -an -filter:v -r 25 "setpts=0.8
PTS" out.mp4
只调节音频ffmpeg -i in.mp3 -filter:a "atempo=1.25" -vn out.mp3