diff options
author | James Almer <jamrial@gmail.com> | 2016-08-04 16:21:25 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2016-08-04 16:25:40 -0300 |
commit | 376d4b3c0d9d779baef3e2a72ac1ffe77e8508b8 (patch) | |
tree | f3ce1d9feb7f9f6f8352a9966722ef546fb03f06 /tests/lavf-regression.sh | |
parent | ce944e84892f1ba21602bd83b1a5d532dfdd1eda (diff) | |
download | ffmpeg-376d4b3c0d9d779baef3e2a72ac1ffe77e8508b8.tar.gz |
avformat: add a TTA Muxer
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tests/lavf-regression.sh')
-rwxr-xr-x | tests/lavf-regression.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/lavf-regression.sh b/tests/lavf-regression.sh index 0e20513563..8d961781d9 100755 --- a/tests/lavf-regression.sh +++ b/tests/lavf-regression.sh @@ -145,6 +145,10 @@ if [ -n "$do_nut" ] ; then do_lavf nut "" "-acodec mp2 -ab 64k -ar 44100 -threads 1" fi +if [ -n "$do_mka" ] ; then +do_audio_only mka "" "-c:a tta" +fi + if [ -n "$do_mkv" ] ; then do_lavf mkv "" "-acodec mp2 -ab 64k -vcodec mpeg4 \ -attach ${raw_src%/*}/00.pgm -metadata:s:t mimetype=image/x-portable-greymap -threads 1" @@ -350,6 +354,10 @@ if [ -n "$do_sox" ] ; then do_audio_only sox fi +if [ -n "$do_tta" ] ; then +do_audio_only tta +fi + if [ -n "$do_caf" ] ; then do_audio_only caf fi |