Wednesday, May 1, 2024
 Popular · Latest · Hot · Upcoming
3
rated 0 times [  3] [ 0]  / answers: 1 / hits: 3187  / 1 Year ago, thu, february 9, 2023, 12:49:08

I found many .webm videos on the net and I want to know if it's possible to extract images from these.



Some videos I found have amazing images and I would like to set one of the frames as wallpaper.



I am using 12.04, thanks.


More From » video

 Answers
5

The following code works for me:



avconv -ss 30 -i my-cool-movie.webm -frames 1 -f image2 my-cool-picture.png


In this command,



-ss 30 specifies that you want to take the frame 30 seconds into the movie



-i my-cool-movie.webm specifies the name of the movie from which to take the frame



-frames 1 stops the program from extracting more than one frame



-f image2 my-cool-picture.png sets the output format to image and filename to my-cool-picture.png.


[#28501] Friday, February 10, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
odyroc

Total Points: 324
Total Questions: 109
Total Answers: 103

Location: Belize
Member since Mon, Apr 17, 2023
1 Year ago
;