File size: 382 Bytes
5610573 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/bash
: ${CMAKE_BINARY_DIR:=$(pwd)}
. ${CMAKE_BINARY_DIR}/test/testfuncs.sh
tmpout="test-sphinx_pitch.out"
echo "PITCH TEST"
run_program sphinx_adtools/sphinx_pitch \
-samprate 11025 \
-i $tests/regression/chan3.raw \
-input_endian little \
-o test-sphinx_pitch.f0 \
-raw yes > $tmpout 2>&1
compare_table "PITCH test" test-sphinx_pitch.f0 $tests/regression/chan3.f0 0.1
|