Monday, April 29, 2024
 Popular · Latest · Hot · Upcoming
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 4710  / 1 Year ago, thu, december 22, 2022, 5:39:50

I want to extract images from a video
I want thous images to be extracted from specific time for example 0:30 1:15 1:45 and I would love them to be in PNG format as well



Thank you in advanced



Update
Thank you rechengehirn and Rmano Sadly I can not except both of your answer and I selected it randomly sorry for that but I thought it would be fair like that because both of your answers work so Thank you again


More From » video

 Answers
2

This works for me:



ffmpeg -i input_movie.mp4 -ss 00:00:05 -f image2 -vframes 1 imagename.png


Where the options are:



-i              > The input video file
-ss 00:00:05 > Start at Second 5 of movie
-f image2 > Force image output
-vframes 1 > Set the number of video frames to record


You can read the ffmpeg documentation on: http://ffmpeg.org/ffmpeg.html


[#28443] Friday, December 23, 2022, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
scrubuz

Total Points: 194
Total Questions: 96
Total Answers: 127

Location: Monaco
Member since Fri, Sep 24, 2021
3 Years ago
;