Avancerad FFmpeg-redigering
Komplexa FFmpeg-kommandon för professionell redigering: ändra uppspelningshastighet, beskära för sociala medier, överlagra text/logotyper och bränna in undertexter.
Change Playback Speed
Speed up video and audio by 1.5x without distortion.
ffmpeg -i input.mp4 -filter_complex "[0:v]setpts=PTS/1.5[v];[0:a]atempo=1.5[a]" -map "[v]" -map "[a]" output.mp4
Note:
setpts=PTS/1.5 speeds up video timestamps. atempo=1.5 speeds up audio while preserving pitch (pitch-correction).Change Video FPS (Keep Audio)
Change frame rate to 60fps without altering playback speed.
ffmpeg -i input.mp4 -filter:v fps=60 output.mp4
Note:Simply re-samples the video to 60 frames per second. Audio speed remains normal.
VIDEO API
Upptäck varför Hunt är den föredragna API-leverantören för utvecklare.