summaryrefslogtreecommitdiffstats
path: root/Images
Commit message (Collapse)AuthorAge
* Add ability to select modelyum2022-12-18
| | | | | | | * icon now works when pinned to taskbar * add model selection * add script to dump mic devices * whisper models now download into the virtual environment
* Add logoyum2022-12-16
| | | | | | | * GUI now shows logo * Add package.ps1 to generate distributable application bundle * Rename ~GUI to GUI * Add ScopeGuard class
* Shorten audio window to 10 secondsyum2022-11-22
| | | | | This helps with temporal stability in long-running transcriptions, and lets us get rid of that hack where we refuse to update old pages.
* Update STT demoyum2022-11-22
| | | | | Zero mistranscribed words. One minor hiccup caused by instability in the (very long) transcription. I think the paging indicator is also buggy.
* String matching no longer relies on spacesyum2022-11-06
| | | | | | | | | | | Add a `matchStrings` which does basically the same thing as `matchStringList` except it doesn't split the input at space boundaries. I think this should work better for Japanese and Chinese, since they don't use spaces. Doesn't seem to cause any accuracy regressions for English. Also update the README.
* OSC controller uses one sync per region instead of 2yum2022-11-05
| | | | | | | | | | My theory as to why this seems to work: VRChat batches parameter updates together and applies them simultaneously. Thus we don't run into the expected failure mode where we update the prior region before paging over to the next region. * Fix beep feature * update the STT demo
* Add speech-to-text demoyum2022-11-04
|
* Add LICENSEyum2022-10-02
* Update README with contribution instructions & design details. * Add text-to-text demo gif * Document known Unity landmines in generate.sh.