1

アプリで 2 つのオーディオ タックを含む m4v ビデオを使用する必要があります。しかし、ビデオを再生すると、2 つのオーディオ トラックが同時に再生されます。デバイスの既定の言語 (既定では英語) でオーディオ トラックを読み込む必要があります。

これが私のコードです:

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

1 に答える 1

0

MPMoviePlayerControllerラッピングと同様に、MPMoviePlayerViewControllerオーディオ トラックの選択はサポートされていません。

于 2012-11-11T15:55:08.280 に答える