【发布时间】:2012-10-26 02:39:00
【问题描述】:
我正在使用此代码播放视频。
player= [[ MPMoviePlayerViewController alloc] initWithContentURL:movieURL];
player.navigationController.navigationBar.hidden = YES;
player.moviePlayer.scalingMode = MPMovieScalingModeAspectFit;
player.moviePlayer.controlStyle = MPMovieControlStyleNone;
player.moviePlayer.movieSourceType = MPMovieSourceTypeFile;
player.moviePlayer.fullscreen = NO;
[self presentModalViewController:player animated:NO];
视频播放完美但问题是在完成播放后我在控制台中得到了这个结果。
[MPAVController] Autoplay: Likely to keep up or full buffer: 0
[MPAVController] Autoplay: Skipping autoplay, not enough buffered to keep up.
然后在我尝试录制声音但无法录制之后。
谁能帮我解决这个问题。
【问题讨论】:
-
这个问题是出现在ios6还是其他ios版本上????
-
你能把你正在形成 movieURL 的代码部分贴出来吗
-
在两个 ios 中我都遇到了问题......即使我在 iPas 中录制,录制任务正在执行但没有声音..
-
我也有类似的问题stackoverflow.com/questions/14087555/…也许你能帮帮我?!
标签: iphone ios xcode ios6 audio-recording