Displaying recoreded voice in table view in ios - ios

I am developing a application which will store the voice and display recored voice in table view along with text what we speak, i am successfully able to record voice and play it back but i want to store all the recored voice in table view and play on my choice, can any one me to come out of this problem
Thanks in advance

Seems you want to add Voice to text feature in your app.
This link will help you in Convert the voice to text in iPhone

Related

Is there a way to create an enhanced casting on iOS?

I want to create an enhanced casting on my iOS app.
In simple words, I want to be able to customise the view that's on the screen the user is casting into.
UI for example:
User is watching a video on iOS device.
User clicks on airplay to cast the video to an external device, such as a TV.
Device's screen still showing the video, but on the external device the display contains the video with some customise widgets on it, and a window showing the camera coming from the iOS mobile.
I couldn't find any related information on web, maybe you'll have an idea on what can I do? and what is possible.
Thanks!

RPScreenRecorder Recording alert text change

Do we have the possibility of changing the Recording alert text display by the RPSCreenRecorder in iOS 11?. Actually, I was capturing my application screen content using StartCapture API and pushing the video content to my server. But the Alert text is telling that: "You can save the recording to the camera roll or share it with the friends. Record microphone audio if you want to add comments as you go", which is not relevant to me. I want to change that text to something which is relevant to me.
Any info.plist keys for changing the text like for Privacy controls?
Apparao Mulpuri
For now you can't change the text and yes, this is strange, but you can give an alert (or tell user that he will be asked for this) before the system alert.

Custom camera view on iOS from HTML5

I'm building an app for iOS which I'm currently developing using web programming languages. HTML, CSS, jQuery etc. I do that because it's quicker for me to work with these languages, in a first time.
My app will give users the possibility to record a video, and I know it is possible to do that since iOS 6 with HTML5 and to upload it to my server. However, I would like to be able to create a custom camera view, for example just like the one in Snapchat, with the ability to record a custom duration for the video (for example max 20 seconds), with a progress bar etc.
My first question is : from HTML5, is it possible to limit the duration of the record of a video ? For example with maximum 20 seconds ?
Second question : is it possible for me to continue to develop my app with web languages and when the user clicks on the "record a video button", an event is fired IN the iOS code directly ? So I can launch a custom camera view in iOS language and then send it directly to my server from the iOS code ?
Thanks for your help.
First question:
No, you can't create a custom camera view in HTML. This needs to be done in Swift or Objective-C on the device.
Second question:
I've read, that the new WKWebView can recieve messages from a Javascript.
This tutorial explains, how your app can communicate with the Javascript via delegate-calls. It requires, that your content is NOT displayed in an UIWebView, but in an WKWebView (iOS 8 or newer required)

Trying to create an Xcode Objective-C function that records a video capture of my UIView contents and saves to phone

I'm trying to create an Xcode Objective-C function that can be called from a button tap, that will record the contents of a UIView and its subviews (or a fixed section of the screen e.g. 320x320 in the center) and then allow the user to save the video to their iPhone camera roll. I also want to include the audio that is being played by the app at the time of the recording e.g background music and sound effects.
I'm having trouble finding any info on this as their seems to be a lot of people trying to record their running app for external purposes like the app store video preview. I need my video captured within the app, to be used as an app feature.
Does anyone know if this can be done or know a website or tutorial where I can learn what's needed? Thanks
I know this post is two years old, but for anybody who comes along who might need to record their iOS app's screens and save them to the phone's camera roll or even a specific URL, take a look at https://github.com/alskipp/ASScreenRecorder
I've tried it and it works! The frames per second aren't 60 so I don't know how well it would work if you were trying to record an action game, but it's still pretty awesome.
You can't do that with just one function, check that project:
https://github.com/coolstar/RecordMyScreen

How to have a custom audio for a Voiceover element?

Now, our app, pikSpeak Camera, was recently found useful to blind iOS community as it allowed to capture photos with sound as it allowed them to easily navigate through older pics just using the the audio tags.
The issue that I am facing is that I want to override the Voiceover audio tag associated with an element when a user selects it and instead have a custom audio in the UICollectionViewController cell selection.
Basically, I guess it's easy to disable the VO tag audio but then how do I play a custom audio on VO selection?

Resources