How to add overlay while video is being played and user touch add overlay in iphone sdk? - iphone

I want to add overlay on video i have seen the sample for adding overlay on video. but i don't want to do like this. I mean my video will be running and on this particular video If user will touch any thing than on that thing one overlay will appear and if user touches and moved than the overlay will continuously will be added on that video means user will track that frame. And the video will be saved with this overlay..
is this possible?

Related

Move across multiple video controller

I am trying to use video_player package to play multiple videos continuously. I am using VideoProgressIndicator which allows scrubbing in a video. I am able to move across the video which is currently playing but how to detect that user tapped on another video and update the current video player controller to that video.
And also how do i move the second video controller to the position where user tapped. (Seek to functionality is available in video_player but at which position i need to take the controller to?)
I want to move the video controller to second video controller and the second video should start playing from the position where user tapped.
Refer the video timeline at bottom with scrubber

How to programmatically make an embedded video player play in fullscreen?

I am using the Embedded Video Player to add a video to a website. The video is contained within a small container. Therefore, I would like to provide alternative UI for starting the video in a fullscreen mode.
How to programmatically start video in an embedded video player in fullscreen?, i.e. equivalent to user hitting "Fullscreen" button on the video player itself.

Overlay on vimeo movie on iPad/iPhone not clickable

We have a embedded background movie on giardinohotelgroup.ch (if you click on a small movie, the whole movie starts)
On desktop everything works as expected (the topbar is overlapping the movie and the links are still clickable)
The problem is, the same functionality doesn't work on iPad/iPhone.
The links are clickable as long the movie didn't started. As soon the user pushs the playbutton the links are not clickable anymore.
Do someone know why? Should not be a z-index issue because the links are not behind the movie.
iOS does not allow interaction with any elements above a video when the native controls are used, which we do in the current version of our player. On the iPhone, when they hit play it will automatically go into full screen and there is no way to prevent that.

adding native iphone camera zoom slider and youtube player controller to my app

Sorry for squeezing two questions into one, just figured those may be related and with respect to the DB storage at SO...
I am trying to find out a way to add the iphone camera native zoom slider as well as something similar to the youtube app player controller. I am guessing that the youtube one may be a custom button or something, but did not find a way to add the zoom slider.
I would like to add those two as overlay to a camera view that I am using within the app.
You could extract the UIKit artwork with https://github.com/0xced/UIKit-Artwork-Extractor.For the movie player controls you could use three UIButton and one UISlider.For the camera control you could subclass UIControl or UISlider.

Customizing the screen of Movieplayer in iPhone

I've few doubts regarding movie player app
How can I customize the screen size. I want only video or movie to be played only to half the screen and I want to add custom controls buttons to the remaining half of movie player.
In movie player example overlay view is there but how to change the name of the button and label in that and I'm unable to do that.
The MPMovePlayer UI cannot be modified. It plays fullscreen video, and provides the default controls. There's currently no way to do what you need in the official iPhone SDK.
Use this link for video player customization:
https://developer.apple.com/library/ios/samplecode/MoviePlayer_iPhone/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007798
download sample code and modify accordingly.