VoxForge
Reader: hstech |
URL link to audio: hstech-20141025-abc.tgz, hstech-20141026-dfg.tgz, hstech-20141026-gsd.tgz |
I added three files as a test whether the FTP submission method works for me. The files are unfortunately lossy compressed because the device used does not support loseless recording but it was set to "speech recognition" setting so hopefully it will have some value.
--- (Edited on 2/16/2016 7:07 am [GMT-0600] by ) ---
>hstech-20141025-abc.tgz, hstech-20141026-dfg.tgz, hstech-20141026-gsd.tgz
thanks!
the last tarfile contained extra audio file and the prompts file had stuff that I had to take out.
to convert your audio to wav format for use with VoxForge corpus, I had to install the ffmpeg package and used this bash script:
#!/usr/sh
for FILE in *.WMA
do
FILENAME=$(basename "$FILE" .WMA)
echo "*** $FILENAME"
ffmpeg -i $FILENAME.WMA $FILENAME.WAV
done
you should be able to run this in Cygwin on Windows to do the same.
ken
--- (Edited on 2/18/2016 10:37 am [GMT-0500] by kmaclean) ---