Created
December 1, 2011 14:20
-
-
Save Iktomist/1417066 to your computer and use it in GitHub Desktop.
Read go games in Audouard coordinates (caution -- SLOW -- working on a version that uses raw audio for speed)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
DIR=`pwd` | |
sox -n -r 16000 "silence.wav" trim 0 10 | |
cp silence.wav otherstuff.wav | |
#NB, each game should contain one move on each line. quadrant names such as a and b need to be followed by a space in order to make sense to festival. otherwise they will come out as b four three, etc. | |
while IFS= read -r line; do | |
echo "$line" | text2wave -o temp.wav | |
sox "otherstuff.wav" "temp.wav" "silence.wav" "output.wav" | |
mv output.wav otherstuff.wav | |
rm temp.wav | |
done < $@ | |
mv otherstuff.wav [email protected] | |
ffmpeg -i [email protected] [email protected] | |
lame -V 08 --tt $@ --tl $dir --ta $dir [email protected] [email protected] | |
rm -rf [email protected] [email protected] | |
rm -rf silence.wav otherstuff.wav |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment