Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I recorded a video with a bluescreen. We have the software to convert that video to a transparent background. What's the best way to play this video overlaid on a custom UIView? Anytime I've seen videos on the iPhone it always launches that player interface. Any way to avoid this?

Thanks!

share|improve this question

7 Answers

You'll need to build a custom player using AVFoundation.framework and then use a video with alpha channel. The AVFoundation framework allows much more robust handeling of video without many of the limitations of MPMedia framework. Building a custom player isn't as hard as people make it out to be. I've written a tutorial on it here: http://www.sdkboy.com/?p=66

share|improve this answer

Don't know if anyone is still interested in this besides me, but I'm using GPUImage and the Chromakey filter to achieve this^^ https://github.com/BradLarson/GPUImage

EDIT: example code of what I did (may be dated now):

NSURL *sampleURL = [[NSBundle mainBundle] URLForResource:@"test" withExtension:@"mov"];

-(void)AnimationGo:(GPUImageView*)view{
    movieFile = [[GPUImageMovie alloc] initWithURL:sampleURL];
    filter = [[GPUImageChromaKeyBlendFilter alloc] init];

    [movieFile addTarget:filter];

    GPUImageView* imageView = (GPUImageView*)view;
    [imageView setBackgroundColorRed:0.0 green:0.0 blue:0.0 alpha:0.0];
    imageView.layer.opaque = NO;
    [filter addTarget:imageView];

    [movieFile startProcessing];

    //to loop
    [imageView setCompletionBlock:^{
        [movieFile removeAllTargets];
        [self AnimationGo:view];
    }];
}

I may have had to modify GPUImage a bit, and it may not work with the latest version of GPUImage but that's what we used

share|improve this answer
Is the playback performance smooth? – yourfriendzak Jul 27 '12 at 12:52
very. I had to make a few changes to GPUImage to make it so that it would loop, but the rest was pretty much just drop-in.^^ – Matthew Clark Jul 27 '12 at 17:08
Can you play the video and apply the filter at the same time? (real time transformation, in other words) – yourfriendzak Jul 27 '12 at 19:22
1  
yeah, it uses the GPU using opengles to filter everything so as long as you are only doing 1 or 2 filters it's VERY responsive^^ – Matthew Clark Jul 28 '12 at 1:37
and you are able to see the UIView below the transparent parts of the chroma keyed video? could you post some sample code maybe? i'm stuck on this for days. – Etienne678 Dec 19 '12 at 16:26
show 1 more comment

I'm assuming what you're trying to do is actually remove the blue screen in real-time from your video: you'll need to play the video through OpenGL, run pixel shaders on the frames and finally render everything using an OpenGL layer with a transparent background.

See the Capturing from the Camera using AV Foundation on iOS 5 session from WWDC 2011 which explains techniques to do exactly that (watch Chroma Key demo at 9:00). Presumably the source can be downloaded but I can't find the link right now.

share|improve this answer

Only way to avoid using the player interface is to roll your own video player, which is pretty difficult to do right. You can insert a custom overlay on top of the player interface to make it look like the user is still in your app, but you don't actually have control of the view. You might want to try playing your transparent video in the player interface and see if it shows up as transparent. See if there is a property for the background color in the player. You would want to set that to be transparent too.

--Mike

share|improve this answer

I'm not sure the iPhone APIs will let you have a movie view over the top of another view and still have transparency.

share|improve this answer

You can't avoid launching the player interface if you want to use the built-in player.

Here's what I would try:

  • get the new window that is created by MPMoviePlayerController (see here)
  • explore the view hierarchy in that window, using [window subviews] and [view subviews]
  • try to figure out which one of those views is the actual player view
  • try to insert a view BEHIND the player view (sendSubviewToBack)
  • find out if the player supports transparency or not.

I don't think you can do much better than this without writing your own player, and I have no idea if this method would work or not.

Depending on the size of your videos and what you're trying to do, you could also try messing around with animated GIFs.

share|improve this answer

if you could extract the frames from your video and save them as images then your video could be reproduced by changing the images. Here is an example of how you could reproduce your images so that it looks like a video:

enter image description here

in this image that I uploaded the names of the images have a different name but if you name your images as: frame1, fram2, fram3.... then you could place that inside a loop.

I have never tried it I just know it works for simple animations. Hope it works.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.