Guest User

Untitled

a guest
Sep 20th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # Invoke as sh dv2flv.sh infile.dv outfile.flv
  2. mencoder $1 \
  3. -ofps 25 \
  4. -o $1.flv \
  5. -of lavf \
  6. -oac mp3lame \
  7. -lameopts abr:br=64 \
  8. -srate 22050 \
  9. -ovc lavc \
  10. -lavcopts vcodec=flv:keyint=50:vbitrate=600:mbd=2:mv0:trell:v4mv:cbp:last_pred=3 \
  11. -vf scale=480:320 \
  12.  
  13. # to change the speed:
  14. #-speed $3 \
  15. # to rotate, IIRC this takes an integer:
  16. #-vf-add rotate=$2 \
Add Comment
Please, Sign In to add comment