Somewhat fancy voice command recognition software
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

language_updater.sh 655B

123456789101112131415161718192021222324
  1. #!/bin/bash
  2. blatherdir=~/.config/blather
  3. sourcefile=$blatherdir/sentences.corpus
  4. langdir=$blatherdir/language
  5. tempfile=$blatherdir/url.txt
  6. lmtoolurl=http://www.speech.cs.cmu.edu/cgi-bin/tools/lmtool/run
  7. cd $blatherdir
  8. # upload corpus file, find the resulting dictionary file url
  9. curl -L -F corpus=@"$sourcefile" -F formtype=simple $lmtoolurl \
  10. |grep -A 1 "base name" |grep http \
  11. | sed -e 's/^.*\="//' | sed -e 's/\.tgz.*$//' | sed -e 's/TAR//' > $tempfile
  12. # download the .dic and .lm files
  13. curl -C - -O $(cat $tempfile).dic
  14. curl -C - -O $(cat $tempfile).lm
  15. # mv em to the right name/place
  16. mv *.dic $langdir/dic
  17. mv *.lm $langdir/lm
  18. rm $tempfile