2012-11-10 55 views
1

我需要在我的應用程序中使用具有兩個音頻標誌的m4v視頻。但是當我播放視頻時,它同時從兩個音軌開始。我需要使用設備的默認語言加載音軌(默認爲英語)。使用具有兩個音軌的m4v的Movieplayercontroller

這裏是我的代碼:

_moviePlayer = [[MPMoviePlayerViewController alloc] initWithContentURL:url]; 
[_moviePlayer shouldAutorotateToInterfaceOrientation:UIInterfaceOrientationLandscapeLeft]; 
_moviePlayer.moviePlayer.movieSourceType = MPMovieSourceTypeFile; 
[self presentMoviePlayerViewControllerAnimated:_moviePlayer]; 

回答

0

MPMoviePlayerController一樣好包裝MPMoviePlayerViewController不支持音軌的選擇。

+0

我可以選擇曲目「英語」或「西班牙語」。但是當你開始同時發聲時。 – Menthor