diff options
author | Ole Kristian Lien <ole.k.lien@gmail.com> | 2009-12-11 15:59:56 +0000 |
---|---|---|
committer | Ole Kristian Lien <ole.k.lien@gmail.com> | 2009-12-11 15:59:56 +0000 |
commit | 7ceb86925b8d8ae0278f27ff5419bae21288878f (patch) | |
tree | f56b2895331a37e86370dc3a9d5b939d3a69c9b2 | |
parent | aa208047552b9eeb095aed33d3ce573ab14904a9 (diff) |
test
-rwxr-xr-x | tools/theora-test | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/theora-test b/tools/theora-test new file mode 100755 index 0000000..b3a047b --- /dev/null +++ b/tools/theora-test @@ -0,0 +1,14 @@ +#!/bin/bash + +for i in {0..10}; do + VQUALITY=$i + + for i in {-2..10}; do + AQUALITY=$i + echo "--videoquality $VQUALITY --audioquality $AQUALITY" +# ffmpeg2theora $1 -o $NAME-v$VQUALITY-a$AQUALITY.ogv \ +# --videoquality $VQUALITY \ +# --audioquality $AQUALITY \ + + done +done |