大家好,我按照网络上的帖子写一个用MPMoviePlayerViewController 播放本地与远程视频的例子,碰到不少问题望大虾能帮忙指导: 我的代码如下(刚开始学习IOS,大虾快帮帮忙啊,:)): -(IBAction)playFileVideo //按钮点击后执行此处本地播放代码 -(void)playerRun:(NSString *)url if (isUrl) { MPMoviePlayerViewController *pc = [[MPMoviePlayerViewController alloc]initWithContentURL:urlPath]; //add view. //set animation. //set config and start playing. //callback [urlPath release]; -(void)playCallback:(NSNotification *)notification [[NSNotificationCenter defaultCenter] removeObserver:self name:MPMoviePlayerPlaybackDidFinishNotification object:nil]; if (player) { |
|
我描述的情况在simulator及手机上都表现一致。xcode是3.2.6,系统是mac os x 10.6.6
|
|
自己顶
|
|
有高手能帮我看看怎么回事么?
刚开始学这个实在不懂啊 |
|
15分 |
没有做过
http://developer.apple.com/library/ios/#documentation/MediaPlayer/Reference/MPMoviePlayerController_Class/Reference/Reference.html 看文档吧 |
我现在的代码是能播放本地的mp4和远程的mp4,但不能播放3gp格式,现象是play后,系统会马上回调到我注册的MPMoviePlayerPlaybackDidFinishNotification callback(playCallback)。对于3gp是不是有什么限制?
|
|
85分 |
MPMoviePlayerViewController支持视频格式:H.264 视频最高可达 1080p,每秒 30 帧,High Profile level 4.1,采用 AAC-LC 声音格式,最高 160 Kbps,48kHz, 立体声为 .m4v, .mp4 与 .mov 文件格式;
MPEG-4 视频最高可达 2.5 Mbps,640 x 480,每秒 30 帧,Simple Profile 采用 AAC-LC 声音格式,每声道最高 160 Kbps,48 KHz,立体声为 .m4v、.mp4 与 .mov 文件格式; Motion JPEG (M-JPEG) 最高可达 35 Mbps,1280 x 720,每秒 30 帧,音频为 ulaw 格式,PCM 立体声为 .avi 文件格式 木有3gp呀?? |
结贴:代码没有问题,是ios上有些3gp格式不支持。我从3g.youku.com中下载的3gp在手机上尝试已通过。原先测试的3gp文件是通过优酷工具从flv转码成3gp的,估计是里面编码有不同。
刚开始学ios就膜拜到这儿,希望以后能和大家多交流,:) |