Speech to text in iOS Titanium - iphone

I am developing an iOS application in Titanium Appcelerator. I want help with speech to text functionality/api.
Is there any documentation available for the same?

You can use this COCOA class as reference.
Also there is an project at GITHUB, which might be of your interest.
I have used Openears but for reverse purpose. Text to Speech.
Also there are multiple SO questions as well that you can refer to.
SO Question 1, Question 2

Related

Is there any library for sinhalese language in flutter localization?

I’m developing a mobile application using flutter to be used in my country. i have to use Sinhalese language(SriLankan) font in the mobile UIs. I have searched in the Flutter Community and i was unable to find a proper solution.I want to know whether there is a flutter_localization library that can be used in my application?
I suggest that you use this Medium post as a guide. Although it implements Arabic and English as demonstration it will be beneficial to you since one of them is left-to-right and the other is right-to-left.
Yes you can use this article to integrate localisation in app.
Article it's really quick to integrate in app.
However if your language isn't supported by flutter_localizations library even though you can provide support using above class as mentioned on article.
here is snap
You have to implement localization in App. I found a simple example for the same here.

how can i convert text to speech without using Openears library?

i have a string.i need to convert it to Voice.
can any one help me to convert text to speech.
now i am using Openears library for this.however there is some problem when i convert text to speech.can any one provide me a good way to do it without Openears library.
Flite may be worth investigating. See this blog post.
NSSpeechSynthesizer class is there for Mac application. I think it also supports iPhone. Have dig at it. If you have Arron Hillegass "Cocoa Programming for Mac" book, you can find Mac application. All the best.

Core Data Spotlight Integration in iOS

I'm developping an ios (3.1.3) application to manage contacts, tasks, activities, etc. These models are managed by core data and it works very well. Now I want to make all these items searchable in the spotlight search bar in iOS.
Is that possible?
And if so, how to code it? I found the "Core Data Spotlight Integration Programming Guide" but it's not suitable for iOS and I don't find any document or tutorial related to what I want.
Any ideas, suggestions? or full solution! :D
Thanks in advance!
This will be possible from iOS 9 onwards.
Apple just released a CoreSpotlight framework at WWDC 2015, and with integration its possible to search contents within third party apps and much more.
Documentation
You cannot integrate your application with Spotlight in iOS for now, there's no API to do it.
You can file a radar and wish an new Spotlight API in iOS 5?
Global search spanning all apps was a core feature of PalmOS going way back to PalmOS version 2.0, if I recall correctly. Yet even today, Apple's iOS Spotlight Search still only supports the built in apps provided by Apple.
It is shameful that Apple hasn't opened this up to developers yet - it would make Spotlight so much more useful on the iPhone and iPad.
You can now do it with iOS9 Search.
https://developer.apple.com/library/prerelease/ios/releasenotes/General/WhatsNewIniOS/Articles/iOS9.html#//apple_ref/doc/uid/TP40016198-SW3

How Speech to Text conversion in iPhone

Is there any way, by which we can convert speech to Text using iPhone SDK?
Yes, if you are Google, Dragon, or Siri. The iPhone SDK does not provide any access to the iPhone 3GS's built-in voice recognition, which is apparently none too elaborate anyway. Your best bet is to find a web service to which you can upload audio clips for analysis.
http://cmusphinx.sourceforge.net/2010/05/vocalkit-shim-for-speech-recognition-on-iphone/
This looks promising.
Krishnan ,This is Reply for your Comment Is that the same case for Text to speech?.
No there is Library called OpenEars by using this Library you may achieve the text to Speech functionality.
OpenEars
OpenEars is an open-source iOS library` for implementing round-trip English language speech recognition and text-to-speech on the iPhone and iPad.
You should take a look of this library.
As of iOS 10 (not released yet), Apple has their own speech recognition API.
https://developer.apple.com/reference/speech/sfspeechrecognizer

What to do to make a map in the iphone Application?

I am New phone Application Developer and i want to develop an Application which contains maps so will you please give me some information regarding how to load map in my application?
You want to use MapKit. The specifics of this API are too expansive to discuss in this answer (and you didn't provide us with a description of what exactly you want to achieve), but look at the documentation for the MKMapView class and its delegate.
Also, there are some 80 questions on Stack Overflow tagged "MapKit".
Here's a blog post about the iPhone Map Kit.
If you don't understand it you should first play around with the iPhone SDK / Objective-C and get more familiar with it.