我使用MPMoviePlayerController在iPhone上播放視頻,我將其視圖添加到應用程序的窗口,但我旋轉模擬器視頻不旋轉。我錯過了什麼?在iPhone上使用MPMoviePlayerController旋轉視頻
0
A
回答
0
-(IBAction)press<p>
{<p>
<t> NSURL *url = [NSURL URLWithString:@"http://www.businessfactors.de/bfcms/images/stories/videos/defaultscreenvideos.mp4"];<p>
MPMoviePlayerViewController *mp = [[MPMoviePlayerViewController alloc] initWithContentURL:url];<p>
[[mp moviePlayer] prepareToPlay];<p>
[[mp moviePlayer] setShouldAutoplay:YES];<p>
[[mp moviePlayer] setControlStyle:2];<p>
[[mp moviePlayer] repeatMode];<p>
[[mp moviePlayer] setRepeatMode:MPMovieRepeatModeOne];<p>
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(videoPlayBackDidFinish:) name:MPMoviePlayerPlaybackDidFinishNotification object:nil];<p>
[self presentMoviePlayerViewControllerAnimated:mp];<p>
}
-(void)videoPlayBackDidFinish:(NSNotification*)notification {
[self dismissMoviePlayerViewControllerAnimated]; <p>}
相關問題
- 1. iPhone旋轉視頻
- 2. iphone:在mpmovieplayercontroller中旋轉?
- 3. 使用ffmpeg庫爲iPhone旋轉視頻
- 4. 旋轉iphone視頻數據
- 5. 使用ffmpeg在視頻轉換後在iPhone上播放視頻
- 6. 在iPhone上轉換視頻
- 7. 如何旋轉MPMoviePlayerController視頻但不是其超級視圖
- 8. 將MPMoviePlayerController旋轉到Landscape - iPhone SDK
- 9. iPhone旋轉和全屏視頻
- 10. iPhone視頻屏幕不旋轉
- 11. iOS - 視頻不能僅在iOS7上通過iPhone旋轉?
- 12. 如何在iphone中使用MPMoviePlayerController播放視頻?
- 13. ios 8 - MPMoviePlayerController視頻不會相應旋轉
- 14. 在Android上播放3D旋轉視頻
- 15. iPhone - MPMoviePlayerController停止縮放視頻
- 16. MPMoviePlayerController自動旋轉?
- 17. 奇怪的MPMoviePlayerController視圖旋轉/動畫...
- 18. PHP旋轉視頻
- 19. 旋轉avplayer視頻?
- 20. Vlcj視頻旋轉
- 21. PHP旋轉視頻
- 22. AVMutableComposition旋轉視頻
- 23. 如何在Android上旋轉設備旋轉視頻?
- 24. 在android中旋轉視頻
- 25. 從視頻攝像頭拍攝視頻並使用MPMoviePlayerController IPhone SDK進行顯示
- 26. MPMoviePlayerController不在iOS7上播放視頻
- 27. iphone:在旋轉可見視圖時旋轉翻轉視圖
- 28. 如何使用FFmpeg旋轉視頻?
- 29. 視頻旋轉到使用的ffmpeg
- 30. 使用FFmpeg進行視頻旋轉
我是否正確假定視頻保持靜止,所以如果將設備旋轉180°,視頻相對於UI看起來顛倒了? – 2012-01-07 05:36:57
是的,視頻始終保持肖像模式 – meggar 2012-01-07 05:39:52
這似乎是iOS本身的問題,因爲我剛剛在我的iPad和iPhone上測試它隨應用旋轉,只要頂部的UIViewController(或子類,就像一個UINavigationController)允許通過回答yes來回答「ShouldAutorotateToInterfaceOrientation:' – 2012-01-07 05:42:31