2013-03-26 57 views
0

嘗試使用AVPlayer播放媒體網址時,出現AVPlayerStatusFailed錯誤代碼爲-11819。請指教。嘗試使用AVPlayer播放媒體時,iOS上的NSError錯誤代碼爲-11819

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change: (NSDictionary *)change context:(void *)context 
{ 
    if (context == &AVPlayerItemStatusContext) { 
    AVPlayerItem *playerItem = (AVPlayerItem *)object; 
    NSInteger status = [playerItem status]; 
    switch (status) { 
     case AVPlayerStatusFailed: 
     { 
      NSError *error = [playerItem error]; 
      NSLog(@"%s %d\n", __FUNCTION__, [error code]); 
      ..... 
     } 
    .... 

}

回答

0

我AVError.h發現AVFoundation錯誤代碼-11819對應AVErrorMediaServicesWereReset(以下簡稱「操作無法完成,因爲媒體服務變得不可用」)。

相關問題