Last active
February 26, 2025 00:41
-
-
Save danielvartan/80b5261572f0f4d4a660f830178695f2 to your computer and use it in GitHub Desktop.
Learn more abou FFMEG at: https://www.ffmpeg.org
This file contains 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
# Source: https://stackoverflow.com/a/42827058/8258804 | |
ffmpeg -ss 00:01:00 -to 00:02:00 -i input.mp4 -c copy output.mp4 |
This file contains 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.webm -r 10 output.gif | |
# ffmpeg -i in.webm -r 10 -ss 00:00:01 -to 00:00:05 out.gif |
This file contains 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
# Source: https://superuser.com/a/268986/2033807 | |
ffmpeg -i input.webm -c copy -an output.webm |
This file contains 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.webm -c copy output.mp4 | |
# ffmpeg -fflags +genpts -i in.webm -r 24 out.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment