Created
November 21, 2024 06:21
-
-
Save fahmifan/63aaa57a9673fb4695b2d03e33620ee5 to your computer and use it in GitHub Desktop.
ffmpeg increase tempo/speed like youtube did
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ffmpeg -i input.mkv -filter_complex "[0:v]setpts=<1/x>*PTS[v];[0:a]atempo=<x>[a]" -map "[v]" -map "[a]" output.mkv | |
| # example increase tempo to 1.25 | |
| # ffmpeg -i Coba1.mp4 -filter_complex "[0:v]setpts=0.8*PTS[v];[0:a]atempo=1.25[a]" -map "[v]" -map "[a]" Coba1.1.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment