Recording custom view with UIImagePickerController - ios

I have a UIImagePickerController that has a custom view displaying over the camera image. All works fine, but when the user records video, I want the items in my view to appear in the video. Instead, all I get is the ray video from the camera.
Is there a way to integrate my view into the recorded video?
_mike

Yes, AVFoundation allows you to do this, there's some great videos in Apple's AVFoundation tutorials, though here's a link to a great tutorial for using this framework.
http://www.raywenderlich.com/30200/avfoundation-tutorial-adding-overlays-and-animations-to-videos
Hope this help.

Related

Add scroll playback controls to AVPlayer like in Photos app

I'm creating AVPlayer view to watch the stream from CCTV. And I want to make playback controls in a video like in Photos app at iPhone(open Photos, play some video, at the bottom, it will be UIScrollView with some screenshots of your video) like at image below.
May I ask you some help on how to create something like this?
And this is my first question here, so sorry if something wrong. =)
ScrollView playback
AVPlayer cannot do this for streaming. The suggestion made on snapshots would also not be close to your want of getting the same behaviour as on local preview of videos in the Photos App on iOS.
If you are looking for this kind of experience I would recommend heading over to movi.ai to get your hands on our cross platform solution with this ready out of the box.

How to put the camera preview into a UIImageView?

I want to put the camera live view (back camera) inside the ViewController in iOS in Swift but I don't know how to do it.
Please, search for answers first and if you do not found then come and ask.
Here I am giving some which I found it here only. you can get more.
How to Add Live Camera Preview to UIView
Take photos with live video preview using AVFoundation

iOS AVCam Display image and prepare it to send to the server without saving it in photo library

so i'm looking for any sugestion about AVCam Controller. I'm used to UIImagePickerController but i need work with AVCam cause UIImagePickerController don't have enough options for me. Can some1 help me with display image taken from AVCam controller without saving it?
Looking for anwers,
thanks,
David.
This is direct from Apple: How to capture video frames from the camera as images using AV Foundation on iOS.

iOS App: AVFoundation Video camera recording delegates

I am trying to develop an app that records the video using the rear camera.
I want the video to be tweaked (adding overlay image, green screen) before saving it to a file.
I am using AVFoundation, and have researched anywhere, but I still cant make the correct codes to preview and record (without the tweaking)
Some codes that Iget from the internet use BufferDelegate, the rest are using RecordingDelegate.
Do I need to use both to achieve what I want? or is it just one ofthem?
Could you please pinpoint me how I can achieve this?

iPhone SDK: Custom video player controls

In my iPhone app I have designed a custom video player, currently it is very basic with just a play pause and stop button,
but I would like the user to be able to scrub, (I think thats the right word) the video like you can do with apple's original media player.
So for Instance I would like to be able to take a UISlider and have it control the current postiion of the videos playback if you get what I mean. Oh and incase your curious, the way I pause/play/stop the video is by using this simple piece of code [self.theMovie play]; [self.theMovie stop]; [self.theMovie pause]; The trouble is I don't know how to scrub the video.
Any help appreciated.
I've asked the same question: customize quicktime iphone and here MPVideoPlayer add/remove buttons
It seams that you have to posibilities:
You can add you view over the main window. An sample can be found here: MoviePlayer Sample
You can iterate through views, found one you need and Add/Remove views. I don't know yet how must does Apple likes/dislikes this method.

Resources