Files
2021-10-21 14:57:58 +08:00

5 lines
359 B
Markdown
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 6.11.9 ffmpeg 调整播放速度
声音视频同时调节ffmpeg -i in.mp4 -filter_complex -r 25 "[0:v]setpts=1.25*PTS[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