Monday, March 4, 2013

Posting videos to the web.


First, let's extract some frames from a series of movies (in .mp4 format)

for file in mayjune*.mp4 ; do ffmpeg -i $file  -r 1 -vframes 1 -ss 00:00:50 ${file%%.mp4}.png ; done

No comments:

Post a Comment