I have implemented a custom movie player with AVPlayer. On setting the value of videoGravity in AVPlayerLayer to AVLayerVideoGravityResizeAspectFill I see the desired effect in iOS 4.2, 4.3. But somehow on iOS 5.0 it has got no effect. Is anybody seeing a similar issue? Am I doing something wrong?
| ||||
|
feedback
|
|
On iOS5 you should reset layers bounds after setting videoGravity. This worked for me:
EDITED: "self" points to a PlayerView (subclass of UIView) object from example "Putting all together": https://developer.apple.com/library/ios/#documentation/AudioVideo/Conceptual/AVFoundationPG/Articles/02_Playback.html | ||||
|
feedback
|
|
Were you able to solve your issue with miham's suggestion?. My question's been banned by this "BoltClock" moderator, just want to know if that suggestion worked for you as it didn't for me. Please, BoltClock, don't remove my question. I think is legitimate to ask what type 'self' object is. miham states that that solution worked for him, well, it didn't work for me, so I think questioning what 'self' points to may give me clues as to what kind of object should I use. Documentation says setting gravity to AVLayerVideoGravityResizeAspectFill will clip the video to the AVPlayerLayer view but it doesn't do it, and I tested this in iOS 4.3.2 and iOS 5, so that leaves miham's answer as a no answer to Soumya Das original question and to mine (what 'self' points to?) too. Maybe you have the answer?, if so, post it here and don't just delete my question. EDITED: Found the solution to this issue. Tick checkbox "Clip Subviews" in IB for the view with the layer you're going to attach the video player to. Then, set the AVLayerVideoGravityResizeAspectFill of your AVPlayerLayer object. If you don't have the view in IB but you're creating it programmatically, set its clipsToBounds property to YES. | ||||
|
feedback
|