Difference between revisions of "Creating a thumbnail image from video"

From MyWiki
Jump to: navigation, search
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
Reference : https://trac.ffmpeg.org/wiki/Create%20a%20thumbnail%20image%20every%20X%20seconds%20of%20the%20video<br>
 
Reference : https://trac.ffmpeg.org/wiki/Create%20a%20thumbnail%20image%20every%20X%20seconds%20of%20the%20video<br>
ffmpeg -i input.flv -ss 00:00:14.435 -vframes 1 out.png
+
 
 +
For ubuntu 14 replace ffmpeg with avconv<br>
 +
avconv -i input.flv -ss 00:00:14.435 -s 320x180  -vframes 1 out.png<br>

Latest revision as of 13:36, 17 October 2015

Reference : https://trac.ffmpeg.org/wiki/Create%20a%20thumbnail%20image%20every%20X%20seconds%20of%20the%20video

For ubuntu 14 replace ffmpeg with avconv
avconv -i input.flv -ss 00:00:14.435 -s 320x180 -vframes 1 out.png