我嘗試以下各項如何顯示在單一視圖多視頻在iphone
在一個單一的視圖,但在同一時間只有一個播放視頻時產生的MPMoviePlayer
不同實例。我沒有得到如何做到這一點。我必須在單個視圖上進行實時相機視頻流傳輸,這是單個視圖上4個攝像頭的輸出。只要給我這個想法或方法。
我嘗試以下各項如何顯示在單一視圖多視頻在iphone
在一個單一的視圖,但在同一時間只有一個播放視頻時產生的MPMoviePlayer
不同實例。我沒有得到如何做到這一點。我必須在單個視圖上進行實時相機視頻流傳輸,這是單個視圖上4個攝像頭的輸出。只要給我這個想法或方法。
正如蘋果文檔中所解釋的那樣,您無法使用MPMoviePlayerController進行此操作。
Although you can create multiple MPMoviePlayerController objects and present their
views in your interface, only one movie player at a time can play its movie.
因此,結賬這個不錯的教程multiple-video-playback-on-ios。
並檢查這個不錯的sample code也。
因此,最後你可以使用AVPlayer,因爲你可以有多個AVPlayer
同時播放同一個視頻的實例。 。
MPMovieplayer一次只能播放一個視頻。相機支持您必須更多地關注AVPlayer。我看到一個example of it in SO本身。
'MPMoviePlayerController'不支持同時播放多個視頻(如文檔中所述)。你將不得不使用'AVPlayer'來完成它(支持這種情況)。 – Till