Avatar
Fernando Vásquez is an electronics engineer and software developer currently based in the world. He occasionally blogs about Python and Android programming.

Video Command Line Edition with FFMPEG

Exctract MP3

ffmpeg -i __IN__ -vn -ar 44100 -ab 192k -ac 2 -f mp3 __OUT__.mp3
ffmpeg -i __IN__ -vn -ar 44100 -ab 128k -y __OUT__.mp3
ffmpeg -i __IN__.ogg -acodec libmp3lame __OUT__.mp3

Create gif from Video, image magic

ffmpeg -i video%05d.png video.avi
convert video.gif video%05d.png

Create video from images

ffmpeg -f image2 -i image%d.jpg video.mpg
convert 'images.gif[0]' image.png

remove audio

ffmpeg -i %in% -vcodec copy -an %out% 

all tags