As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I would like to implement a project in which the recorded audio s converted into text.
I could do this using mturk where the recorded audio is uploaded and stored some where in cloud and the link is forwarded to the mturk but this would take longer time and it would be better if I could implement anything that does this task instantly and from iphone itself.
Is there any ways to do this ? DO i get some custom framework to work with voice so that it converts the audio into text.
Your best bet is looking at something like
OpenEars
http://www.politepix.com/openears/
You can use that to do speech recognition and text to speech and has some instructions on how to implement with iPhone
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I am developing one application that upload videos with different effects as per show in image. now i want to edit the video same as image editing in Aviary SDK or instagram appliction.
Is any framework available for video editing in objective c?
By editing do you mean filters? Try GPUImage. Best one you can get for free.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I need to open magazines in my iphone application. But magazines have extension .indd.
I found a lot but i can't get any clue or example how to do this.
So my question is
How to open .indd file using objective-c in iphone and if possible please provide me a link or demo example .
Thanks in advance.
With my knowledge a .indd file is a binary file. So you can do absolutely nothing with it on iOS. What you need is Indesign Server to parse / read those files.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Audio Unit looks like a Core audio concept, but I see that it has many custom configurations, so I'm thinking can I use audio unit's setting on an AVAudioPlayer?
but first, what is an audio unit?
From Apple documentation:
"iOS provides audio processing plug-ins that support mixing, equalization, format conversion, and realtime input/output for
recording, playback, offline rendering, and live conversation such as
for VoIP (Voice over Internet Protocol). You can dynamically load and
use these powerful and flexible plug-ins, known as
audio units"
You can find more here:
iOS Developer Library - Using Audio
iOS Developer Library - About Audio Unit Hosting
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm making a iOS app like Talking Tom and unable to record only human voice. It gets so much background noise along with the human voice and hence its not, accurate like Talking Tom.
I wonder there must some record settings be present to use with AVAudiorecorder which would help me in this context. I am just using the default record settings for now with AVAudioRecorder.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
can anyone give me sample code to transfer photos from one iphone to another using bluetooth
Your best bet would to use GameKit, which greatly simplifies connecting multiple devices over Bluetooth & transfering data. I can't remember having seen an Apple sample which does that, but it certainly would be possible. This is exactly what GameKit was intended for, peer-to-peer connectivity, not only limited to gaming.
You'll probably have to split the data of the image and send little chunks to the other device, which can reassemble the chunks to form the original file once finished.
http://developer.apple.com/iphone/library/documentation/NetworkingInternet/Conceptual/GameKit_Guide/Introduction/Introduction.html