Guest User

Untitled

a guest
Jul 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #!/bin/bash
  2. # video2ipod conversion script
  3. # Christopher Gilbert
  4. # September 26, 2006
  5. #
  6. # Usage:
  7. # video2ipod infile outfile
  8.  
  9. if [ -z "$2" ]; then
  10. echo $0 "infile outfile"
  11. else
  12. echo "ffmpeg -i `pwd`/$1 -f mp4 -s 320x240 `pwd`/$2"
  13. ffmpeg -i "`pwd`/$1" -f mp4 -s 320x240 "`pwd`/$2"
  14. fi
Add Comment
Please, Sign In to add comment