为什么我的视频在模拟器中播放但在使用AVFoundation Videoplayer的设备(iPad)上播放?

时间:2012-08-22 11:03:26

标签: objective-c ipad ios5 ios-simulator avfoundation

我用

构建了自己的自定义视频播放器(编辑:find example code here

AVMoviePlayerView.h

#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>

@class AVPlayer;

@interface AVMoviePlayerView : UIView

@property (nonatomic) AVPlayer *player;

- (void)setPlayer:(AVPlayer*)player;
- (void)setVideoFillMode:(NSString *)fillMode;

@end

AVMoviePlayerView.m

#import "AVMoviePlayerView.h"
#import <CoreMedia/CoreMedia.h>

@implementation AVMoviePlayerView


+ (Class)layerClass {

    return [AVPlayerLayer class];

}

- (AVPlayer*)player
{
    return [(AVPlayerLayer*)[self layer] player];
}

- (void)setPlayer:(AVPlayer*)player
{
    [(AVPlayerLayer*)[self layer] setPlayer:player];
}

- (void)setVideoFillMode:(NSString *)fillMode
{
    AVPlayerLayer *playerLayer = (AVPlayerLayer*)[self layer];
    playerLayer.videoGravity = fillMode;
}


@end

在我的MainViewController.m中调用它 - (void)viewDidLoad

    NSURL* url = [[NSBundle mainBundle] URLForResource:@"myVideo.264" withExtension:@"mp4"]; 
    self.avPlayer = [AVPlayer playerWithURL:url];
    [avPlayer addObserver:self forKeyPath:@"status" options:0 context:AVMoviePlayerViewControllerStatusObservationContext];
    [[NSNotificationCenter defaultCenter]   addObserver:self
                                               selector:@selector(playerItemDidReachEnd:)
                                                   name:AVPlayerItemDidPlayToEndTimeNotification
                                                 object:[self.avPlayer currentItem]];

方法

- (void)observeValueForKeyPath:(NSString*) path ofObject:(id)object change:(NSDictionary*)change context:(void*)context
{
    if (avPlayer.status == AVPlayerStatusReadyToPlay) {
        [self.VideoLoop setPlayer:self.avPlayer];
        [self.avPlayer play];
    }
}
- (void)playerItemDidReachEnd:(NSNotification *)notification {
    AVPlayerItem *p = [notification object];
    [p seekToTime:kCMTimeZero];
}

当然在MainViewController.h中定义

...
#import <CoreGraphics/CoreGraphics.h>
#import "AVMoviePlayerView.h"
@class AVMoviePlayerView;
@class AVPlayer;
...
IBOutlet AVMoviePlayerView *VideoLoop;
AVPlayer* avPlayer;

它在Simulator中工作正常(除了循环,但这是一个不同的问题),但在设备(iPad3)上没有显示视频。

我错过了什么吗? 感谢名单!!!

编辑:TO make it easier toshow me how stupid I am please find here some esample code. this does work in the simulator but not on device.

3 个答案:

答案 0 :(得分:12)

找到理由 - 只花了我50分...... iOS支持高达2.5 Mbps的MPEG-4视频和H.264 1080p。我的视频帧尺寸太大了!

答案 1 :(得分:1)

添加到@headkit&#39的答案,这对我有帮助......

在QuickTime中打开您的视频文件,

导出&gt; 1080。

别忘了将扩展名更改为&#34; mov&#34; !!

答案 2 :(得分:0)

对于像我这样来到这里的其他人并希望更新规格from Apple docs

iPhone 7,6s

  

支持视频格式:H.264视频高达4K,每秒30帧,   高配置级别4.2,AAC-LC音频高达160 Kbps,48kHz,立体声   .m4v,.mp4和.mov文件格式的音频; MPEG-4视频最多   2.5 Mbps,640x480像素,每秒30帧,简单配置文件,AAC-LC音频,每通道高达160 Kbps,48kHz,立体声音频,.m4v,   .mp4和.mov文件格式; Motion JPEG(M-JPEG)高达35 Mbps,   1280x720像素,每秒30帧,ulaw音频,PCM立体声音频   .avi文件格式

iPhone 5,5s,6

  

支持视频格式:H.264视频高达1080p,每帧30帧   第二,高配置4.1级,AAC-LC音频高达160 Kbps,   48kHz,.m4v,.mp4和.mov文件格式的立体声音频; MPEG-4视频   高达2.5 Mbps,640 x 480像素,每秒30帧,简单   配置AAC-LC音频,每通道高达160 Kbps,48kHz,立体声   .m4v,.mp4和.mov文件格式的音频; Motion JPEG(M-JPEG)最高可达   35 Mbps,1280 x 720像素,每秒30帧,ulaw音频,PCM   .avi文件格式的立体声音频

(对于谷歌 iPhone(型号)规格 的更新链接搜索,然后点击Apple网站的结果。向下滚动到“视频播放”)