RPScreenRecorder Recording alert text change - ios

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.

Related

How to add flash to ios app?

Here is the thing, I am developing an app playing video using MPMoviePlayerController. When the user pauses the video, I show them an image( a button, when the user clicks the button, a UIWebview will be loaded) with advertisement on it, just like this:
Now instead of showing users picture advertisement, I want to show them advertisements that moves, like a flash file. Like the home page of Google.
I am a newbie to IOS development, anybody has suggestion about how to do this? Thx.
I found some cheap and quick way, LOL. I turned the flash to html by swf decompiler and then add the html to my app instead.

How can i make the button about audio in Xcode?

I want to make a useful dictionary.
So, i want to make a audio button and put some audio to button.
but, it's a not say. i don't have a skill in Xcode.
i need to help to me about make a audio button and put some audio to button in Tableview.
I want to create audio buttons for each.
I don't know this website system and i upload picture in Dropbox.
Have nice day.
enter link description here
I would add a "AVAudioPlayer *audio" to your recipe object that you play when the button "Play Audio" is pressed.

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

Displaying recoreded voice in table view in 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

Siri voice to Text breaks AVPlayer video

I have an app that is streaming Video data using an AVPlayer. The AVPlayer is using a APLEAGLView to render the pixels to the screen.
The issue I'm having is that I have a textbox within the same view. If you tap on the textbox and enter text with the keyboard it works fine.
However, if I use Siri's voice to text function on the textbox, then try play the video again, the audio plays and currentTime changes but the video is frozen on the frame that was there when you began the voice to text function.
This was fine previously but since a recent Apple update this is now broken.
Any help would be greatly appreciated as one of our biggest client's is complaining about this.
So I could not find the exact cause of the issue, but I did manage to fix it.
The issue was that the previous developers used an OPEN GL ES View to render the pixel buffer to the screen. I refactored it to use the standard AVPlayerLayer functionality and that fixed the issue.

Resources