With MPMoviePlayerControllers's, scaling a movie is easy with setting MPMovieScalingMode. (like MPMovieScalingModeFill, MPMovieScalingModeAspectFill)

With AVPlayer/AVPlayerLayer I can't seem to find anything like that. Do I have to do this myself? If so, how do I start on this?

link|improve this question

60% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Take a look at videoGravity property in AVPlayerLayer, looks like it is what you need.

link|improve this answer
Vladimir was faster than me. In my previous project I used videoGravity for what you intend. – renam.antunes Sep 1 '11 at 20:29
Thanks! Totally overlooked that! It's a NSString - pretty weird. – steipete Sep 1 '11 at 20:44
Thanks ! Is there any equivalent of Center content mode ? Didn't find it in AVPlayerLayer. – CedricSoubrie Feb 20 at 16:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.