Last active
February 17, 2024 03:27
-
-
Save evadecker/fa06d34eaf0da37e55792cd2ba3c20af to your computer and use it in GitHub Desktop.
Generate poster .png image from first frame of .mp4
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
# Generate a poster from the first frame | |
ffmpeg -i input.mp4 -vframes 1 output.png | |
# Generate a poster from the frame starting at 5 seconds | |
ffmpeg -i input.mp4 -ss 00:00:05 -vframes 1 output.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment