summaryrefslogtreecommitdiff
path: root/client
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #224 from Holzhaus/fix-weather-pluginschneefux2014-11-052-10/+64
|\ | | | | Fix support for multi-word city names (Weather module)
| * Fix Weather testcaseschneefux2014-10-151-1/+1
| | | | | | | | | | | | The only change here is that the test profile location has been changed from "08544" (US zipcode of Princeton, NJ) to "Cape Town" (this was chosen because of high code coverage). It looks like it was broken anyway and just passed because the weather module did not fail if the city was not found. If I type http://rss.wunderground.com/auto/rss_full/08544 into my webbrowser, it says "City not found". If you now have an invalid location name in your profile, the user will be informed that something is fishy.
| * Fix support for multi-word city names (Weather module)schneefux2014-10-151-9/+63
| | | | | | | | | | | | Also, add support for setting a wmo_id directly in your config file. This fixes jasperproject/jasper-client#42
* | Remove TranscriptionMode and improve STT engine initialisationschneefux2014-11-054-135/+85
| |
* | Update API in tts.py __main__schneefux2014-10-201-1/+1
| |
* | Add config options to tts enginesschneefux2014-10-201-0/+76
| |
* | Adapt STT engine API from PR jasperproject/jasper-client#219 in tts.pyschneefux2014-10-201-0/+10
| |
* | Added MaryTTS engineschneefux2014-10-201-0/+71
| |
* | Fix bug #227: Not all arguments converted during string formattingschneefux2014-10-201-2/+2
|/
* Use jasperpath in stt.py (bugfix no. 2)schneefux2014-10-131-1/+1
|
* Use jasperpath in stt.py (bugfix)schneefux2014-10-131-1/+1
|
* Fix keyword detection regression in Mic.passiveListen()schneefux2014-10-131-1/+1
| | | | Prior to commit 6bb87e20423e41f1bb79e6af285fe4d49cf1359a (Handle all Google Speech options, Pull Request #148), passive listen checked if the transcribed phrase contained the keyword. Since then, it only detects if the transcribed phrase was *exactly* the keyword. When using Pocketsphinx, it often happens that additional words are transcribed (like "JASPER OF"), so that saying the keyword sometimes did not result in an active listen call. With this commmit, this regression will be fixed and the old behaviour restored.
* Nit: fix variable naming in client/vocabcompiler.pyschneefux2014-10-131-1/+1
|
* Fix G2P testcaseschneefux2014-10-081-2/+2
|
* remove redundant variable assignmentschneefux2014-10-081-3/+2
|
* Use configfile from jasper config dir in g2p.py (i.e. use )schneefux2014-10-081-1/+1
|
* Reorder importsschneefux2014-10-081-1/+2
|
* Use diagnose.check_executable for executable detection in g2p.pyschneefux2014-10-081-15/+2
|
* Remove unneccessary pass statement from AbstractVocabulary classschneefux2014-10-081-1/+0
| | | | This should raise vocabcompiler test coverage to 100%. Whohooo!
* Further improve unittest coverageschneefux2014-10-081-10/+21
|
* Update TestMic testcase to work with Vocabularyschneefux2014-10-081-1/+1
|
* Add test for keyword phrase extractionschneefux2014-10-081-0/+13
|
* improve vocabulary unittest coverageschneefux2014-10-081-16/+51
|
* Add testcases for (patched) PocketsphinxVocabularyschneefux2014-10-081-13/+54
|
* Add unittests for G2P without phonetisaurusschneefux2014-10-081-1/+40
|
* PEP8 style fixes in test.py and vocabcompiler.pyschneefux2014-10-082-2/+3
|
* Remove unused tempfile from client/g2p.pyschneefux2014-10-081-22/+21
|
* Remove unneccessary print from g2p.pyschneefux2014-10-081-1/+0
|
* Fix G2P testcases, do not depend on fixed translation stringschneefux2014-10-081-12/+7
|
* Minor style fix in phonetisaurus-g2p codeschneefux2014-10-081-3/+1
|
* Rewritten G2P codeschneefux2014-10-082-49/+154
|
* Integrate new vocabcompiler into jasper.py, client/stt.py and ↵schneefux2014-10-082-62/+68
| | | | client/musicmode.py
* Add method to get keyword phrases to vocabcompilerschneefux2014-10-081-0/+20
| | | | This way they can be used by other STT engines as well
* Use newer cmuclmtk libary version and catch ImportErrorschneefux2014-10-082-2/+2
|
* Remove UnorderedList from unittestsschneefux2014-10-081-6/+0
|
* Fix assert statements in vocabcompiler unittestsschneefux2014-10-081-1/+2
|
* Improve logging in vocabcompiler.pyschneefux2014-10-081-3/+16
|
* Add error handler for cmuclmtk import to vocabcompilerschneefux2014-10-081-1/+4
|
* Changed vocabcompiler test casesschneefux2014-10-081-20/+22
|
* Added DummyVocabulary classschneefux2014-10-081-0/+22
|
* Rewritten vocabcompiler and separated it from pocketsphinx logicschneefux2014-10-082-33/+330
| | | | | | | The pocketsphinx part of vocabcompiler now uses the cmuclmtk wrapper libary for compilation of the languagemodel/dictionary. A revision check has been implemented, so that vocabulary won't get recompiled if there's no need. Proper integration into jasper.py, client/stt.py and client/test.py is still missing due to pending pull requests that change these modules.
* Move STT engine docstrings into the class bodiesschneefux2014-10-081-39/+36
|
* Add testcase for diagnose.py's python import checkschneefux2014-10-061-1/+10
|
* Remove unused imports from client/tts.pyschneefux2014-10-061-2/+0
|
* Added docstrings to diagnose functionsschneefux2014-10-061-0/+50
|
* Transform DiagnosticRunner.run() into a single functionschneefux2014-10-061-43/+37
|
* Remove executable flag from diagnoseschneefux2014-10-061-0/+0
|
* Set loglevel at least to info during diagnose run and add '--diagnose' ↵schneefux2014-10-061-1/+7
| | | | argument to jasper.py
* Use diagnose module in stt.py and tts.pyschneefux2014-10-062-15/+18
|
* Improve diagnose.py reusabilityschneefux2014-10-062-107/+113
|