Bash - avi2mpg
ffmpeg -i video.avi -target vcd video.mpg
DZone Snippets > whitetiger > convert
11376 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
ffmpeg -i video.avi -target vcd video.mpg
#!/bin/sh for i in `ls *.jpg`; do convert -geometry 320x240 $i galleria-$i done