Input Speech (Experimental) to message

Post your questions and help other users.

Moderator: Martin

Post Reply
etaon
Posts: 14
Joined: 11 Nov 2013 21:11

Input Speech (Experimental) to message

Post by etaon » 14 Nov 2013 20:09

Hi. I dont know english. Sorry.
Im very like this programm. This is ideal.
Please, help me create flow with Input Speech (Experimental).
I need listen my word. And create message on screen. In the beginning.
Im create flow to run app with Input Speech (Experimental) later.
To example, push "back" in all app with my voice.

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: Input Speech (Experimental) to message

Post by Martin » 16 Nov 2013 09:14

Hi,

A flow like this might work:

-trigger Notification on Statusbar Selected: select for speech input
-action Input Speech (select Show user interface)
-action Notification on Screen: {value}
-action Control UI with following script:

Code: Select all

if (value=="back")
{
    back();
}
Action Input Speech stores the detected word/sentence in a local variable with name value. The script in action Control UI checks whether the detected word is back and invokes the back function.
Note that action Input Speech is experimental and might not work on all devices.

Regards,
Martin

etaon
Posts: 14
Joined: 11 Nov 2013 21:11

Re: Input Speech (Experimental) to message

Post by etaon » 16 Nov 2013 21:51

Thank you very much :-)
Its work. Now i cant or dont know how insert flow in post. I ll try later on desktop pc.
My flow with russian word "back": http://automagic4android.com/flow.php?i ... beb8917453

And a little question too:
System must listen in real time my one word "system". After this word start listening of command like "back". I think, in this moment it cant be realized.
Or somebody can do it?

I ll try realise with pressing button "camera".
Last edited by etaon on 17 Nov 2013 17:44, edited 2 times in total.

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: Input Speech (Experimental) to message

Post by Martin » 17 Nov 2013 10:02

There should be a button Publish Flows/Widgets when you open the forum within Automagic. It uploads the flow to our server and creates a link on the clipboard you can paste into a post.

Automagic does not support continuous speech input so you have to use some kind of trigger to execute the flow. I think that the plugin AutoVoice might support continuous speech input but I'm not sure (untested).

Post Reply