AVI to FLV with ffmpeg


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. #!/bin/bash
  2. #
  3. # Usage: avi2flv input.avi output.flv
  4. ffmpeg -i $1 -y -b 800 -r 25 -f flv -vcodec flv -acodec libmp3lame -ab 128 -ar 44100 $2

Report this snippet


Comments


You need to login to view comments.