私は iPad3、iPad2、iPad1 + すべてのシミュレーターを持っています。アプリでは、さまざまな種類のビデオを再生します: m4v、mov、mp4...
問題は次のとおりです。iPad3 iOS 6.0.1 のみ。動画が無音で再生されます!クライアントは iPad3 でも同じ問題を抱えています。
問題は何ですか?
編集:
if ( ![TVOutManager sharedInstance].tvoutWindow )
{
player = [[MPMoviePlayerController alloc] initWithContentURL: URL];
player.view.autoresizingMask = UIViewAutoresizingFlexibleWidth;
[player setUseApplicationAudioSession:YES];
self.view.autoresizesSubviews = YES;
CGFloat originY = 0;
if (!currentFile.isHideToolbar)
originY = 44;
CGRect f = self.view.bounds;
f.origin.y = originY;
f.size.height -= originY;
[player.view setFrame: f];
[self.view addSubview: player.view];
[self.view bringSubviewToFront:self.toolbar];
[player play];
}
else
{
[[TVOutManager sharedInstance] startVideo:URL];
ExternalVideoControlView* exView = [[ExternalVideoControlView alloc] initWithFrame:CGRectMake(0, 44, 1024, 724)];
exView.player = [TVOutManager sharedInstance].player;
[self.view addSubview:exView];
}