Mercurial > jmeCapture
annotate transcoding.txt @ 73:877ae4b2993c tip
merge laptop changes.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Mon, 10 Mar 2014 18:58:08 -0400 |
parents | df4a2d12ea13 |
children |
rev | line source |
---|---|
rlm@63 | 1 ffmpeg -r 60 -b 9000k -i out/%07d.png out.ogg |
rlm@43 | 2 |
rlm@43 | 3 |
rlm@43 | 4 |
rlm@43 | 5 # this is wrong. Why is is wrong!@ |
rlm@43 | 6 # ffmpeg -i main.wav -acodec libvorbis -i out.ogg -vcodec copy final.ogg |
rlm@43 | 7 |
rlm@43 | 8 |
rlm@43 | 9 # it's wrong because the inputs need to come first? |
rlm@43 | 10 ffmpeg -i main.wav -i out.ogg -sameq -acodec libvorbis -vcodec copy final.ogg |
rlm@43 | 11 # apparently |
rlm@43 | 12 |