Siri is a personal assistant that speaks to and gathers input from users to preform various tasks, compose messages, launch apps, and answer questions. Siri was announced by Apple alongside the iPhone 4S.

learn more… | top users | synonyms

-1
votes
1answer
36 views

Communicating between a running Ruby and Java program [closed]

I want to run a Java program and a Ruby program both all the time, and if needed I want both to communicate with each other, without having one program to call the other each time it's needed (like ...
0
votes
3answers
70 views

How to create a script to run Terminal commands?

I build a Siri proxy with my Raspberry Pi (I used The-Three-Little-Pigs-Siri-Proxy) and I like to start the proxy on startup. Is it possible to code python or ruby script that starts the server? To ...
0
votes
1answer
30 views

Net:Http only want part of the response

So I am using this: Net::HTTP.get(URI.parse(url)) Works perfect. Issue I am having is that the page it gets is formatted with head, html, body, etc tags. There is a label element in the body with ...
0
votes
1answer
62 views

Including commands from separate Ruby file

I have a chunk of code that has commands. I want to keep more commands in a separate file and pull them into the main. Thus my main file can be updated without losing any custom commands. How would I ...
0
votes
1answer
47 views

Applescript: Unknown error

I have been working on a script for a while now, and have had many questions asked. I also rewrote a lot of the code as per some peoples suggestions. Yet, I still have this one question that has been ...
-1
votes
1answer
41 views

using a variable in listen command siriproxy

I am setting up a listen command to grab a string of words in my siriproxy project. The string can be anything, so the easiest way is to make sure the string starts with a special word. I want to set ...
0
votes
1answer
23 views

Open file from same directory

Ok so with siriproxy it my lib folder along with the rb file for the plugin I have created a myconfig.yml file so I can change certain settings by writing to that file. I have been able to write to ...
0
votes
1answer
16 views

SiriProxy reset config variable

Ok here is my config section: It Pulls the variable from the config.yml file in the .siriproxy folder. def initialize(config) @hs_host = config["hs_host"] @speak_response = config["speak_response"] ...
0
votes
0answers
42 views

Creating Siri-Like program on Mac OSX (Obj-C) [closed]

I am trying to built a program in Obj-C, a background module that would loop everything coming from my microphone until it hears his name (of the program) then he starts listening for a vocal command ...
0
votes
1answer
95 views

how to delay 'say' actions in siri proxy plugin

I've started to play with Ruby on Rails to make some plugins for Siri Proxy Server. I am inexperienced with Ruby but have manage the basics. what I have done: ################ Commands listen_for ...
0
votes
1answer
47 views

How to add a count to a Ruby String (SiriProxy)

I make a SiriProxy using The Three Little Piggies, I played around with it, now I can control my room and my garage door with Siri. I deviced to let my pi send a tweet to me every time the garage door ...
2
votes
2answers
47 views

textDidChange method of UISearchBarDelegate has weird behavior with voice-to-text

I have a iPhone app that includes a UITableView with a UISearchBar at the top of it. When a user types into the UISearchBar the UITableView's contents are filtered appropriately. When the user ...
-1
votes
3answers
180 views

How to launch Siri using scheme url with xcode?

I need to launch Siri (on a jailbroken device) through the openUrl: method. For example [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"Siri://"]];
0
votes
1answer
80 views

Opening Siri stops AVAudioPlayer

I am currently using an AVAudioPlayer to play looped music in the background of my app. However, when siri is opened in my application it turns it off. I am farly experienced with objective c but I ...
0
votes
3answers
67 views

How to detect device has siri?

I need to find siri is available for device or not ? How do i achieve this. now I used [[UIDevice currentDevice] systemVersion], but in my iPad2 and iPad3 has same iOS version (6.0) but one has ...
0
votes
0answers
213 views

Siri Proxy not working

I am trying to use plamoni/SiriProxy on my computer when i try to run it i get this output: rvmsudo siriproxy server -d 192.168.1.66 -u nobody Warning: can not check `/etc/sudoers` for `secure_path`, ...
1
vote
1answer
90 views

Is there any way to monitor user's movement of iphone like the “raise to speak” feature?

I want to get notified when the user raises the iphone to his face. Just like siri does. Is it possible? Add more specific requirement: I want to darken the screen when user put the phone near his ...
-1
votes
1answer
285 views

Is Siri SDK available?

Because of some rumor i'm searching for the Siri API for integrating it to my app. So, please help me about it. What this rumor is true or just a rumor. Is there any trust able API which is serve ...
0
votes
0answers
52 views

Python - Deciphering Line from SiriServer Plugin

I'm currently learning how to program plugins for SiriServer, in hope to create a bit of home automation using my phone. I'm trying to figure out how to program the text coverted speech to match and ...
0
votes
0answers
35 views

iOS SDK: Disable text dictation for UITextField [duplicate]

Is it possible to disable text dictation for an UITextField or the whole app?
0
votes
1answer
69 views

Siriproxy Server Error

I am trying to run Siriproxy on a fresh Raspberry Pi. I have followed this tutorial step by step: http://www.hometoys.com/emagazine.php?art_id=2090 Everything looked to install 100%. But on the last ...
-1
votes
1answer
684 views

How to integrate SIRI in iPhone app? [closed]

I am developing an iPad app. I want to integrate SIRI functionality in it. So, please guide me to work on this. Actually I don't know how to start. Thanks, Cp
0
votes
1answer
449 views

Can you teach Siri how to recognize the name of your app?

It is possible to open an app using Siri just by saying the name of the app. If Siri doesn't recognize the name properly (for example if it's not an english word, she won't), you can prepend it with ...
0
votes
0answers
44 views

Autosubmit form input with Siri

I'm developing a simple web app for Iphone. I have a form with an input text and I'd like to use the voice to search. It works but I have to press on the return button of the keybord. Is there a way ...
2
votes
2answers
95 views

iOS: Is there any notification that Siri has appeared?

I would like to receive a notification each time Siri appears or disappears from the screen. It may appear when the user puts the iPhone near his ear. Is it possible?
0
votes
1answer
351 views

Siri in your application [duplicate]

Possible Duplicate: Does Apple provide an API for SIRI? Is there a way to add Siri to your OSX and iOS applications ? and If so, how do you get Siri to process your own words as a ...
0
votes
0answers
111 views

How does one programmatically activate system hotkeys using Qt

I am trying to create a very simple GUI/automated process using Qt that assists in transcription of audio podcasts. The approach/hack that I am trying is playing ~20 second increments into Siri on a ...
0
votes
1answer
79 views

Siri-like scroll UITableView to bottom/footer

I have the need of scrolling a UITableView to a space which has no current UITableViewCells leaving only the last cell (with variable length) at the top, just like Siri does. Currently I'm scrolling ...
0
votes
2answers
1k views

Access Siri through iphone app

I am making an app in which I want to implement the concept of Siri/Voice recognition. I have tried the http://www.politepix.com/openears/ but did not get the output exactly it is not recognizing the ...
0
votes
0answers
278 views

How to enable Siri for iPhone apps programatically

I am working on an Universal app. I want to use the Siri to find my app when the user speak the app name. Is it possible? If yes, how can I achieve this? What are the things I have to do to get this ...
3
votes
4answers
489 views

Voice control API - high accuracy on specific phrases [closed]

I have several ideas for voice controlled apps. Unfortunately, based on what I've seen from Siri and Google Voice Actions, the technology doesn't seem to quite be there yet. Even in a perfectly quiet ...
4
votes
2answers
5k views

Where is iOS 6 Siri API

I read numerous press releases claiming that Apple would make Siri's API available in iOS, but now that Siri has been released I cannot find any documentation for the said API on developer.apple.com
1
vote
1answer
90 views

Siri-like Shadow on Scroll

In Apple's siri for iOS, when Siri answers a question and it doesn't fit on the whole screen a user can scroll through the information. What is interesting about the scroll/table view in Siri is that ...
0
votes
0answers
154 views

What causes the iOS dictation keyboard to hide itself?

I am trying to debug an issue where when a user enables dictation, the dictation keyboard becomes disabled and/or switches back to the normal keyboard by scrolling a UITableView drawn above a ...
2
votes
2answers
562 views

Speech recognition, Such as Siri

Softwares such as Siri, takes voice command and responds to those questions appropriately(98%). I wanted to know that when we write a software to take input stream of voice signal and to respond to ...
5
votes
1answer
234 views

Possible ways to workaround the lack of API for Siri?

I know there is no API for Siri. It also looks like there is no indication of it changing anytime soon. But I can't wait to tap into its nice free-speech recognition capabilities, and so I was ...
-2
votes
1answer
361 views

iOS Create Siri icon and animation

I have an app that uses voice input and I would like to create an icon that replicate's the look and feel of the Siri mic. Are there any tutorials that outline how to go about this? I'm fine with ...
-1
votes
1answer
132 views

Android/ iOS: Voice Assistant for apps [closed]

I have been looking for a voice assistant which takes users voice commands, translates it to the plain text, xml or any format I want and thereafter I can respond to user by analyzing the user command ...
1
vote
0answers
320 views

Disabling dictation within the app

Is there any way to disable the dictation key? I really don't want to create a custom keyboard for this. I assumed it would be like the UIResponder, but that only applies to textview's shared menu; ...
0
votes
0answers
48 views

Are there any guidelines for how similar an app's interface can be to Siri?

I'd like to develop an app that has a voice command interface similar to Siri's. (I know, very hard to do, lots of voice commands to code in, but, hopefully, this app won't require too many of them). ...
0
votes
3answers
426 views

Google Maps and Siri implementation

Just wondering, can we integrate Google Maps and Siri together. For Example: I ask Siri, "show nearest Starbucks" and Siri will open the Map app or Google Maps and show the nearest Starbucks on ...
0
votes
0answers
166 views

Get UDID with python [closed]

im developing a siri server on python. I need to add a UDID check to it. Any way to get the UDID with the python server? The source is basicly it https://github.com/Eichhoernchen/SiriServerCore ...
2
votes
1answer
277 views

Disabling Siri in an app

Is there any way to completely disable Siri within the app? I am not only talking about the proximity sensor, but the long-press on the home key as well. Thanks.
-1
votes
1answer
1k views

Open source Siri clone

I'm thinking about creating an open source Siri clone in Ruby (not a Siri proxy, not the voice recognition part, but the "parse a question or command and take an action or return a response"). Similar ...
3
votes
1answer
114 views

Can Siri be disabled when using the microphone?

My app records things with the microphone, and on the 4S Siri sometimes activates during recording. Is there a way for my app to tell Siri to relax while I'm using the microphone for something else? ...
1
vote
2answers
334 views

Recover iPhone 4S keys without jailbreak?

Ok so my father just got an iphone 4S, i have the 4. So i'm a big Siri hacker and i wanted to get his Siri keys. I would not like to jailbreak his phone though... So i was thinking, maybe i could put ...
1
vote
0answers
430 views

iPhone Siri Raise to talk during a VoIP call

I am coding a SIP App for iPhone using PJSIP library.. I noticed that when Siri "Raise to Talk " option is enabled through the system settings, Siri starts when i raise the phone to answer a phone ...
0
votes
2answers
812 views

Can I use Siri in my program?

There is a way to use the iPhone' Siri technology in my program? Ex: When the user say "do this", than I config my program to do some action.
0
votes
2answers
480 views

How do I programmatically make the “dictate” keyboard key be pressed in iOS (Objective C)

I need to make the "dictate" microphone is the iPhone 4S be programmatically pressed, is this possible?
0
votes
2answers
431 views

Recreate the Siri-like curley quotes in iOS

I'm not sure if they use an image or if it's some kind of text transformation, but how does apple achieve the curly quote style found in Siri responses? When I attempt to recreate it with regular ...

1 2