5

I was thinking about creating a kind of Jarvis computer (Iron man). Only then a (little) bit more minimalistic. What I want to built is more of a question/answer type of application (something like Siri) and then extend it to do more stuff like turning lights off and on/ controlling my tv among others. But before I start with this I have a couple of questions regarding the voice control on the Raspberry Pi.

  • Can the Raspberry cpu/gpu handle the workload in order to translate voice to commands
  • If not, is there some sort of web-service I can access with the Raspberry to do the work for me? Perhaps I could buy a cheap Android device and make that do the translation for me (any tutorials??), or some kind of Google web-service?
  • If yes, what is the best way to achieve this? Some Java library, or something else?
  • Can the Raspberry handle multiple wireless microphone inputs (with a powered usb hub of course)?
  • Can the Raspberry handle multiple wireless audio outputs (for answering my questions)?
  • Is there perhaps a compete (or partial) tutorial on this topic? (That would be awsome!)
Rick Hoving
  • 657
  • 1
  • 8
  • 7

2 Answers2

3

Check out this project that involved speech recognition and a cheap robotic arm: http://www.aonsquared.co.uk/raspi_voice_control

Edit, October 2017: The above URL appears to have gone stale. An archive of the page can be found at https://web.archive.org/web/20130408071125/http://www.aonsquared.co.uk/raspi_voice_control

Cal Jacobson
  • 154
  • 3
  • 6
  • Link answers are taboo here. I know I'm being a hypocrite, but please see this meta post for more information. – xxmbabanexx Apr 23 '13 at 02:46
  • Yea just summarize the external source and reference the site and a link to it. It is mostly about SEO and nothing else..... – Piotr Kula Apr 23 '13 at 10:59
  • The site in question is not mine. Would you all prefer that I merely skipped past the page and not offered any help at all? – Cal Jacobson Apr 23 '13 at 17:00
  • 1
    Thanks a lot Carl! I think this will get me started and it answers questions 1,3 and 5 – Rick Hoving Apr 24 '13 at 08:34
  • @Leo: here's a tip if you come across an older link that returns a 404 -- go to Archive.org and enter the URL. I've had a lot of success with this. In this case, an archived version of the page is at https://web.archive.org/web/20130408071125/http://www.aonsquared.co.uk/raspi_voice_control . (Beyond that I can't help, the original site isn't mine!) – Cal Jacobson Oct 24 '17 at 19:59
0

The aonsquared project is actually a bit outdated. Better speech recognition performance can be found using Google's speech recognition or Siri. Someone posted something like this recently on youtube (looks like it takes whatever you say, compares it in a config file, and runs whatever command you tell it to) http://www.youtube.com/watch?v=tQi9dWVUJow

Anon
  • 1