Mercurial > hg > sonic-annotator
view tests/test.sh @ 269:39fb206b1153 piper-nopiper
Filter out Xing/LAME info frames, rather than letting them go to the mp3 decoder as if they were audio frames. Fixes the 1152-sample zero pad at start of some decoded mp3 files (distinct from decoder delay). The logic here is based on the madplay code.
author | Chris Cannam |
---|---|
date | Thu, 24 Nov 2016 13:32:04 +0000 |
parents | 56ff594b022c |
children |
line wrap: on
line source
#!/bin/bash mypath=`dirname $0` for x in \ supportprogs \ helpfulflags \ parse-errors \ transforms-basic \ audioformat \ vamp-test-plugin \ as-advertised \ summaries \ multiple-audio \ csv-writer \ csv-destinations \ lab-writer \ lab-destinations \ rdf-writer \ rdf-destinations \ midi-writer \ midi-destinations \ jams-writer \ jams-destinations \ ; do echo -n "$x: " if ( cd $mypath/test-$x ; bash ./test-$x.sh ); then echo test succeeded else echo "*** Test FAILED" exit 1 fi done