Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

ffmpeg extract images from video

# extract single image from timestamp
# -ss : seek to position
# -vframes:v 1 : extract single image
ffmpeg -i input.mov -ss 00:00:15 -vframes:v 1 out.png
Source by gist.github.com #
 
PREVIOUS NEXT
Tagged: #ffmpeg #extract #images #video
ADD COMMENT
Topic
Name
6+2 =