view tests/test-midi-writer/test-midi-writer.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 082c3f21f49e
children
line wrap: on
line source
#!/bin/bash

. ../include.sh

infile=$audiopath/20sec-silence.wav
tmpmidi=$mypath/tmp_1_$$.mid

trap "rm -f $tmpmidi" 0

for output in notes-regions curve-vsr; do

    flag=""

    $r -d "$testplug:$output" -w midi --midi-one-file "$tmpmidi" --midi-force "$infile" 2>/dev/null || \
	fail "Failed to run for plugin $testplug with output $output and no additional flags"

    midicompare "$tmpmidi" "$mypath/expected/$output.mid" || \
	faildiff_od "Output differs from expected for output $output" "$tmpmidi" "$mypath/expected/$output.mid"

done

exit 0