Chris@0: #!/bin/bash Chris@0: Chris@119: . ../include.sh Chris@0: Chris@119: infile1=$audiopath/3clicks8.wav Chris@119: infile2=$audiopath/6clicks8.wav Chris@0: Chris@147: infile1dot=$audiopath/3.clicks.8.wav Chris@0: Chris@150: outfile1=3clicks8.json Chris@150: outfile2=6clicks8.json Chris@44: Chris@150: outfile3=3clicks8_vamp_vamp-example-plugins_percussiononsets_onsets.json Chris@150: outfile4=3clicks8_vamp_vamp-example-plugins_percussiononsets_detectionfunction.json Chris@150: outfile5=6clicks8_vamp_vamp-example-plugins_percussiononsets_onsets.json Chris@150: outfile6=6clicks8_vamp_vamp-example-plugins_percussiononsets_detectionfunction.json Chris@147: Chris@150: outfile1dot=3.clicks.8.json Chris@0: Chris@150: tmpjson=$mypath/tmp_1_$$.json Chris@0: Chris@150: trap "rm -f $tmpjson $outfile1 $outfile2 $outfile3 $outfile4 $outfile5 $outfile6 $infile1dot $outfile1dot $audiopath/$outfile1 $audiopath/$outfile2 $audiopath/$outfile3 $audiopath/$outfile4 $audiopath/$outfile5 $audiopath/$outfile6 $audiopath/$outfile1dot" 0 Chris@0: Chris@119: transformdir=$mypath/transforms Chris@0: Chris@200: mandatory="-w jams" Chris@197: Chris@0: Chris@200: ctx="onsets transform, one audio file, default JAMS writer destination" Chris@0: Chris@147: rm -f $audiopath/$outfile1 Chris@0: Chris@197: $r -t $transformdir/onsets.n3 $mandatory $infile1 2>/dev/null || \ Chris@0: fail "Fails to run with $ctx" Chris@0: Chris@150: check_json $audiopath/$outfile1 "$ctx" Chris@0: Chris@0: Chris@200: ctx="onsets transform, one audio file with dots in filename, default JAMS writer destination" Chris@44: Chris@147: rm -f $audiopath/$outfile1 Chris@44: Chris@44: cp $infile1 $infile1dot Chris@44: Chris@197: $r -t $transformdir/onsets.n3 $mandatory $infile1dot 2>/dev/null || \ Chris@44: fail "Fails to run with $ctx" Chris@44: Chris@150: check_json $audiopath/$outfile1dot "$ctx" Chris@44: Chris@147: rm -f $infile1dot $audiopath/$outfile1dot Chris@44: Chris@44: Chris@200: ctx="onsets and df transforms, one audio file, default JAMS writer destination" Chris@0: Chris@147: rm -f $audiopath/$outfile1 Chris@0: Chris@197: $r -t $transformdir/onsets.n3 -t $transformdir/detectionfunction.n3 $mandatory $infile1 2>/dev/null || \ Chris@0: fail "Fails to run with $ctx" Chris@0: Chris@150: check_json $audiopath/$outfile1 "$ctx" Chris@0: Chris@0: Chris@200: ctx="onsets transform, two audio files, default JAMS writer destination" Chris@0: Chris@147: rm -f $audiopath/$outfile1 Chris@147: rm -f $audiopath/$outfile2 Chris@0: Chris@197: $r -t $transformdir/onsets.n3 $mandatory $infile1 $infile2 2>/dev/null || \ Chris@0: fail "Fails to run with $ctx" Chris@0: Chris@150: check_json $audiopath/$outfile1 "$ctx" Chris@150: check_json $audiopath/$outfile2 "$ctx" Chris@0: Chris@0: Chris@200: ctx="onsets transform, two audio files, one-file JAMS writer" Chris@0: Chris@200: $r -t $transformdir/onsets.n3 $mandatory --jams-one-file $tmpjson $infile1 $infile2 2>/dev/null || \ Chris@152: fail "Fails to run with $ctx" Chris@150: Chris@152: check_json $tmpjson "$ctx" Chris@150: Chris@150: Chris@200: ctx="onsets transform, two audio files, stdout JAMS writer" Chris@150: Chris@200: $r -t $transformdir/onsets.n3 $mandatory --jams-stdout $infile1 $infile2 2>/dev/null >$tmpjson || \ Chris@0: fail "Fails to run with $ctx" Chris@0: Chris@150: check_json $tmpjson "$ctx" Chris@0: Chris@0: Chris@200: ctx="onsets transform, one audio file, many-files JAMS writer" Chris@0: Chris@147: rm -f $audiopath/$outfile3 Chris@0: Chris@200: $r -t $transformdir/onsets.n3 $mandatory --jams-many-files $infile1 2>/dev/null || \ Chris@0: fail "Fails to run with $ctx" Chris@0: Chris@150: check_json $audiopath/$outfile3 "$ctx" Chris@0: Chris@0: Chris@200: ctx="onsets transform, two audio files, many-files JAMS writer" Chris@0: Chris@147: rm -f $audiopath/$outfile3 Chris@147: rm -f $audiopath/$outfile5 Chris@0: Chris@200: $r -t $transformdir/onsets.n3 $mandatory --jams-many-files $infile1 $infile2 2>/dev/null || \ Chris@0: fail "Fails to run with $ctx" Chris@0: Chris@150: check_json $audiopath/$outfile3 "$ctx" Chris@150: check_json $audiopath/$outfile5 "$ctx" Chris@0: Chris@0: Chris@200: ctx="onsets and df transforms, two audio files, many-files JAMS writer" Chris@0: Chris@147: rm -f $audiopath/$outfile3 Chris@147: rm -f $audiopath/$outfile4 Chris@147: rm -f $audiopath/$outfile5 Chris@147: rm -f $audiopath/$outfile6 Chris@0: Chris@200: $r -t $transformdir/onsets.n3 -t $transformdir/detectionfunction.n3 $mandatory --jams-many-files $infile1 $infile2 2>/dev/null || \ Chris@0: fail "Fails to run with $ctx" Chris@0: Chris@150: check_json $audiopath/$outfile3 "$ctx" Chris@150: check_json $audiopath/$outfile4 "$ctx" Chris@150: check_json $audiopath/$outfile5 "$ctx" Chris@150: check_json $audiopath/$outfile6 "$ctx" Chris@147: Chris@147: Chris@147: ctx="output base directory" Chris@147: Chris@147: rm -f ./$outfile1 Chris@147: Chris@200: $r -t $transformdir/onsets.n3 -t $transformdir/detectionfunction.n3 $mandatory --jams-basedir . $infile1 2>/dev/null || \ Chris@147: fail "Fails to run with $ctx" Chris@147: Chris@150: check_json ./$outfile1 "$ctx" Chris@147: Chris@147: Chris@147: ctx="output base directory and many-files" Chris@147: Chris@147: rm -f ./$outfile3 Chris@147: rm -f ./$outfile5 Chris@147: Chris@200: $r -t $transformdir/onsets.n3 $mandatory --jams-basedir . --jams-many-files $infile1 $infile2 2>/dev/null || \ Chris@147: fail "Fails to run with $ctx" Chris@147: Chris@150: check_json ./$outfile3 "$ctx" Chris@150: check_json ./$outfile5 "$ctx" Chris@147: Chris@147: Chris@147: ctx="nonexistent output base directory" Chris@147: Chris@200: $r -t $transformdir/onsets.n3 $mandatory --jams-basedir ./DOES_NOT_EXIST $infile1 2>/dev/null && \ Chris@147: fail "Fails with $ctx by completing successfully (should refuse and bail out)" Chris@0: Chris@0: Chris@200: ctx="existing output file and no --jams-force" Chris@0: Chris@147: touch $audiopath/$outfile1 Chris@0: Chris@197: $r -t $transformdir/onsets.n3 $mandatory $infile1 2>/dev/null && \ Chris@0: fail "Fails by completing successfully when output file already exists (should refuse and bail out)" Chris@0: Chris@0: Chris@200: ctx="existing output file and --jams-force" Chris@0: Chris@147: touch $audiopath/$outfile1 Chris@0: Chris@200: $r -t $transformdir/onsets.n3 $mandatory --jams-force $infile1 2>/dev/null || \ Chris@0: fail "Fails to run with $ctx" Chris@0: Chris@150: check_json $audiopath/$outfile1 "$ctx" Chris@0: Chris@0: Chris@0: exit 0