Advertisement
Guest User

Untitled

a guest
Aug 28th, 2011
1,159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. ffmpeg -i INPUT -f sox - | sox -t sox - -c 2 -b 16 -t wav - | neroaacenc --ignore-length -q 0.13 -if - -of you.aac
  2. ffmpeg -i INPUT -f sox - | sox -t sox - -c 2 -b 16 -t wav - | venc -q-1.5 - you.ogg
  3.  
  4.  
  5. INPUT < anything :D
  6. -f sox - << set output to a sox-specific file
  7. -t sox - << reads the special ffmpeg|sox pipe
  8.  
  9. -c 2 << downmix to 2 channels :D :D :D
  10. -b 16 << sets output to 16bit (needed for venc)
  11.  
  12. -t wav << output wav for the audio encoders.
  13.  
  14. that's the pipe to use for sox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement