Return to Snippet

Revision: 32824
at October 2, 2010 19:33 by mikael12


Initial Code
#!/bin/bash
#
# Usage: avi2flv input.avi output.flv
ffmpeg -i $1 -y -b 800 -r 25 -f flv -vcodec flv -acodec libmp3lame -ab 128 -ar 44100 $2

Initial URL


Initial Description


Initial Title
AVI to FLV with ffmpeg

Initial Tags


Initial Language
Bash