maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   [DEVEL] Saera: Siri clone for Maemo5, Harmattan and Sailfish OS (https://talk.maemo.org/showthread.php?t=84753)

rfeese 2013-06-19 22:19

Re: [DEVEL] Saera: Siri clone for Maemo5 and Harmattan
 
@Jannis

Yes, I think the way you are describing the voice control sounds excellent. Please continue and you should probably start a new topic!

jalyst 2013-06-20 04:11

Re: Voice control for Maemo5 and Harmattan
 
Quote:

Originally Posted by Jannis (Post 1353301)
:confused: Well, my question is, are there still users of the N900 which are even interested in this little piece of software? (If there is anyone, perhaps just click the Thanks! - link as a feedback.)

Most definitely. N900 & N9/950 users...
Some exclusively one or the other, some users of both.

nokiabot 2013-06-20 06:58

Re: Voice control for Maemo5 and Harmattan
 
Quote:

Originally Posted by jalyst (Post 1353339)
Most definitely. N900 & N9/950 users...
Some exclusively one or the other, some users of both.

both n900 and n9 users are highly intrested

Amboss 2013-06-20 09:27

Re: [DEVEL] Saera: Siri clone for Maemo5 and Harmattan
 
As taixzo pointed out, maybe you could join your efforts and develop something like "the voicy Saera"?

sondjata 2013-06-20 13:21

Re: [DEVEL] Saera: Siri clone for Maemo5 and Harmattan
 
interested, but so far this app hasn't been very useful. Just being honest. It doesn't understand much of what I say and I speak pretty "proper". lol

Wikiwide 2013-06-20 13:41

Re: [DEVEL] Saera: Siri clone for Maemo5 and Harmattan
 
Quote:

Originally Posted by sondjata (Post 1353460)
interested, but so far this app hasn't been very useful. Just being honest. It doesn't understand much of what I say and I speak pretty "proper". lol

One size doesn't fit all. If the sphinx tries to understand words of any human, with long list of dictionary words, it will fail much of the time. The list of possible words should be short each time it tries to recognise a word, and ideally, sphinx would be trained to recognise specifically voice of one human using it.
Best wishes. Thank you.

Jannis 2013-06-20 16:34

Re: [DEVEL] Saera: Siri clone for Maemo5 and Harmattan
 
Quote:

Originally Posted by taixzo (Post 1353312)
I am quite interested in that. I've found it hard to actually make Saera do anything useful, because it's trying to do everything at once.

I think there is no difference -Voicy vs. Saera- in making them do anything useful. Saera does all the processing in one file and Voicy separates these things into different files, one for each app to control. This separation only makes it easier to add/remove controls for a user. The actual piece of python code needed to control something is the same.

From my perspective there aren't many situations where voice control for a phone is really useful (I am not talking about fun things like Chuck Norris news etc.), but at least there are some.
My list goes as follows:
1: navit, because it's better to concentrate on driving and to keep the hands off the phone
2: accept/reject a phone call while driving
3: dial a number while driving
4: control the mp3-player (for example in bed)
5: take a picture

Any suggestions for other useful things?

BluesLee 2013-06-20 16:50

Re: [DEVEL] Saera: Siri clone for Maemo5 and Harmattan
 
Quote:

Originally Posted by Jannis (Post 1353505)
From my perspective there aren't many situations where voice control for a phone is really useful (I am not talking about fun things like Chuck Norris news etc.), but at least there are some.
My list goes as follows:
1: navit, because it's better to concentrate on driving and to keep the hands off the phone
2: accept/reject a phone call while driving
3: dial a number while driving
4: control the mp3-player (for example in bed)
5: take a picture

Any suggestions for other useful things?

About four months ago i compiled xbmcvc - a program for controlling XBMC with simple voice commands on my N900 from Kempniu to control XBMC running on my Raspberry Pi connected to a tv.

Unfortunately, i had dependency issues on my N9, so i forgot about this 'project'. If there is interest i can look into it again.

djcrash1981 2013-06-20 17:09

Re: [DEVEL] Saera: Siri clone for Maemo 5
 
Quote:

Originally Posted by taixzo (Post 1309231)
I don't have a paypal account set up, but I could set one up if there is interest.



That is kind of odd - apt-cache policy python-beautifulsoup shows it as being in nokia's main repository, and I didn't have to go anywhere else to get it. Did you run apt-get update first?
Espeak I installed from rzr's repo. I'll upload the .debs to my server.



What do you mean? I did post the .deb a few posts back. It is not easy to install yet because I am still working on it; here are basic installation instructions, if these are complicated wait until I get things better sorted out:
  1. Download the following files to your N9 or N950:
    espeak_1.46.11_armel.deb
    espeak-data_1.46.11_all.deb
    libespeak_1.46.11_armel.deb
    python-gst0.10_0.10.21-1maemo2+0m6_armel.deb
    saera_0.0.1_armel.deb
    gstreamer0.10-pocketsphinx_7.0-0svn11247_armel.deb
    libpocketsphinx1_7.0-0svn11247_armel.deb
    libsphinxbase1_7.0-0svn11246_armel.deb
    pocketsphinx-hmm-en-hub4wsj_7.0-0svn11247_all.deb
    pocketsphinx-lm-en-hub4_7.0-0svn11247_all.deb
    pocketsphinx-utils_7.0-0svn11247_armel.deb
  2. Code:

    devel-su
  3. Code:

    apt-get install python-gobject python-beautifulsoup wget
    dpkg -i *.deb


Hi All,

I've tried to install this app, I've downloaded all this packages and installed them but when I try to install Saera marks a dependency problem with phyton-cairo and phyton-gtk2, for the first one there's no issue because with a apt-get install phyton-cairo it get it but the problem is with the second that is nowhere to find in the actual repos, anyone know how to solve this?

Regards,
DjCrash1981

nokiabot 2013-06-20 17:55

Re: [DEVEL] Saera: Siri clone for Maemo5 and Harmattan
 
Quote:

Originally Posted by Jannis (Post 1353505)
I think there is no difference -Voicy vs. Saera- in making them do anything useful. Saera does all the processing in one file and Voicy separates these things into different files, one for each app to control. This separation only makes it easier to add/remove controls for a user. The actual piece of python code needed to control something is the same.

From my perspective there aren't many situations where voice control for a phone is really useful (I am not talking about fun things like Chuck Norris news etc.), but at least there are some.
My list goes as follows:
1: navit, because it's better to concentrate on driving and to keep the hands off the phone
2: accept/reject a phone call while driving
3: dial a number while driving
4: control the mp3-player (for example in bed)
5: take a picture

Any suggestions for other useful things?

oh man its exactly what i wanted :)
but two extra things shout to turn off phone or reeboot very handy when in bed and phone on desk or charge:)
be able to shedule the time period for which the app/daemon woud automatically turn itself on and off:)
plus would be great if i can change tracks by clicking fingers or clapping:)


All times are GMT. The time now is 09:09.

vBulletin® Version 3.8.8