Advertisement
martadinata

fffmpeg flv to 3gp

Sep 5th, 2012
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #!/bin/bash
  2. echo "fakap mp3-to-flv converter http://staff.fakap.net/mp3toflv/"
  3. echo "Copyright (c) mypapit 2007"
  4. echo ""
  5. if [ $# -eq 0 ]
  6. then
  7. echo "Usage: flvto3gp [flv files] ..."
  8. exit
  9. fi
  10.  
  11. while [ $# -ne 0 ]
  12. do
  13. ffmpeg -i $1 -s 176x144 -vcodec h263 -r 10 -b 180 -sameq -ab 64 -acodec copy -ac 1 -ar 22050 "$1".3gp
  14. shift
  15. done
  16. echo "Finished fakaping with flv-to-3gp converter"
  17. echo "\"fakap all those nonsense!\""
  18. echo ""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement