Skip to content

Instantly share code, notes, and snippets.

@evadecker
Last active February 17, 2024 03:27
Show Gist options
  • Save evadecker/fa06d34eaf0da37e55792cd2ba3c20af to your computer and use it in GitHub Desktop.
Save evadecker/fa06d34eaf0da37e55792cd2ba3c20af to your computer and use it in GitHub Desktop.
Generate poster .png image from first frame of .mp4
# 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