Convert Speech to text in iphone - iphone

I want to convert speech to text in iphone.
Is there any way. I had used vocalkit but it is not giving the true output.
Edit:
And i had also tried to use Openears for speech to text:-
OpenEars
But then also it is not working properly.....
The problem with open ears is
i had tried to implement open ears through http://www.politepix.com/openears/yourapp .But i cant't able to understand how to use the openears in our app(Step -4).I had successfully configured it.If u have any demo our detail link with sample code then please send it.
Example:-
I had found the code from github:-
Code Link
Not i this application when i speak anything it does not recognize properly.
I had edited my question.
Please check it
And i had also tried to use Openears for speech to text:-
OpenEars
But then also it is not working properly.....
The problem with open ears is
i had tried to implement open ears through http://www.politepix.com/openears/yourapp .But i cant't able to understand how to use the openears in our app(Step -4).I had successfully configured it.If u have any demo our detail link with sample code then please send it.
What i want to do is:-
Whatever i speak it recognize the proper words with any language and want to do the particular action on the recognized text of the speech..
Please help me.
Thanks in advance

What is wrong with OpenEars, I have used it and its working perfectly fine in my project
Also there is another library available out there, here is the link.
http://www.ispeech.org/developers/iphone

Related

iOS OpenEars not recognizing accurate sound

I want to implement an speech recognition feature in my iPhone app by research i came to know about OpenEars library and i downloaded that and got a sample project along with it i got a sample project,when i run it and if i say "hello" it is returning as "you said LEFT",i tried for many word combinations but i'm getting only Left,Right,Down,Forward & etc certain set of responses. Is this a bug in openears? if so is there any way to correct this?
Any help is appreciated in advance.Thank you.
Take a look at Using OpenEars In Your App
There's a corpus.txt file in your example which allows it to recognize only:
GO
FORWARD
BACKWARD
LEFT
RIGHT
START
STOP
TURN
You can add other words or even phrases though.

h264 library for iphone

I am making a project In which I want to use h264 library ,
But anywhere I am not able to find the library or any sample which I can use as a reference .
can anyone please suggest me where i can find this?
p.s. I am using this for Iphone
Probably you mean х264, the opensource library for decoding h.264/MPEG4-AVC content. Check it's homepage.
A useful example would be the source code for the VLC player for iPhone available here.

Open Source Mic Capturing on a Website

I'm looking for a solution of capturing a Microphone on a website.
I would really like it to be open source and/or at least free (if I have to install a special server or what/not)
Quality of sound is the most important issue here.
This has already been asked: Is it possible to record sound with HTML5?
There is no real HTML/JavaScript solution yet. It can be done with Flash, however. If you want to do that, here's a good example and tutorial.
#Asaf well to add to already given flash solutions ,
Flash
http://sziebert.net/posts/server-side-stream-recording-updated/ . This solution uses Red5 and flash ( getMicrophone() call http://livedocs.adobe.com/flash/9.0/main/00001866.html ) .
Silve Light also has Sound Capturing facility . ref: https://twitter.com/chuckstar/status/10541469193
Java
There is a sample working code in Java which can record sound in Ogg file Fomrat , but i am not sure if it can work on websites http://code.google.com/p/mind-listening/source/browse/trunk/freemind/mind-listening/jorbis-0.0.15.jar?spec=svn37&r=37

about upload iPhone video to Youtube

how to set the video format of the iPhone camera captured? I think that can be mov,mp4, h.2x , because iPhone can play it, but can not find API to set the video format to recording .....
also want upload the video to youtube, anyone know where can find a good open source code for this purpose, I think that this feature will be commonly and it must be done by other coder....just want save time for this purpose ..
thanks for your help
use gdata is enough
Using gdata is the way to go as Robin mentioned above. Here is a great article that outlines what you need to do and provides a great set of source code to get you started.
Hope this helps!!

How to Recognize image in iphone sdk?

i wanna ask that , is there any api to recognize image?
i need read data from image...can i read numbers which is printed on image..
It seems as though there is no built in function for OCR and this would have to be a custom aspect not found in foundation.
Good luck!
You can always download an open-sourced, external library (package) to do the OCR. GOCR is one example.
There are many OCR libraries available for reading text from an image. You can check my answer Mobile OCR Engine for iPhone app
and for reading numbers only check my answer How to read numbers only in an image
Hope it helps you.