hobbycommandline

Results 15 comments of hobbycommandline

If you add this feature, consider the New Note intent https://developer.android.com/guide/components/intents-common#NewNote Edit: I tried dispatching this action myself, it turns out that most notes app ignore these intents, including Google...

on further research, you can send plain text files to apps via that "open in" mechanism and much more apps support that, so even though its not the 'proper' way...

I have figured out how to do it in a way more apps recognize. You have to use Intent with ACTION_SEND with intent.setType("text/plain") and EXTRA_TEXT set to the message you...

I only implemented this in my own app, but you're welcome to use my code. unfortunately for you I wrote it in scheme https://github.com/hobbycommandline/Hobby-Scheme-Command-Line/blob/master/app/src/main/assets/scheme/actions/note.scm#L43 but if you get stuck at...

I have discovered your app supports receiving plain text files, so i will just send notes to your app that way instead, but technically ACTION_CREATE_NOTE is still the right way...

I tried using Vosk as a hotword detector but didn't have any luck; music playing from the phone makes Vosk unable to recognize any words. It seems Athena uses CMU...

I've decided that wake word activation would probably be best done as a separate app; some users don't want wake words, others want them on all the time. Me, I...

Oh darn turns out PocketSphinx isn't so great for hot word detection either while the phone is playing music. https://github.com/hobbycommandline/wake-word-pocketsphinx is what I threw together really quickly. You can try...

Ah maybe https://github.com/mozilla/androidspeech/network/members DeepSpeech by mozilla. I'll have to give that a try another day looks like snowboy might be the best bet for now https://github.com/Kitt-AI/snowboy/releases according to https://rhasspy.readthedocs.io/en/latest/wake-word/ ;...

Yeah I programmed it to quit or crash after launching an assistant as the assistant is no longer needed. I didn't check if an assistant was found at all, which...