#!/bin/sh
# Use sox to downsample from 96/24 to 44.1/16

cd /tmp

rm -f sibelius7.flac

test -d sibelius-7-sondergard.flac || echo "copying"
test -d sibelius-7-sondergard.flac || cp -a ~/repeat-tests/flac/sibelius-7-sondergard.flac .

time sox sibelius-7-sondergard.flac -G -b 16 sibelius7.flac rate -v -L 44100

