菜鸟教程小白 发表于 2022-12-12 18:55:23

iOS 8.4 特定 : AVPlayer not playing both video & audio and no errors


                                            <p><p>编辑:也在 8.3 模拟器中测试过,同样的问题。</p>

<p>我有一个在 iOS 9.0 及更高版本(所有版本)中运行良好的应用程序。然而特定于 iOS 8.4,AVPlayer 不播放任何内容。没有音频和视频。</p>

<p>适用于 iPad 和 iPhone。</p>

<p>我已经为状态和速率键路径添加了观察者,并且根据记录器,这些方法确实会被调用,就好像 avplayer 正在播放一样。但是在实际设备和模拟器中 - 没有视频和音频。</p>

<p>我也检查了 avplayer 的错误属性,它始终为空。</p>

<pre><code>- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object
                        change:(NSDictionary *)change context:(void *)context {
    if (object == ((AppDelegate*)[ delegate]).avplayer) {
      if ( ) {
            NSLog(@&#34;Status changed: %@, %@&#34;,change,((AppDelegate*)[ delegate]).avplayer.error.localizedDescription);


      }
      else if ( &amp;&amp; ((AppDelegate*)[ delegate]).avplayer.status == AVPlayerStatusReadyToPlay ) {
            NSLog(@&#34;Rate changed: %@&#34;,change);
      }
    }
}
</code></pre>

<p>输出:</p>

<pre><code>2016-03-13 15:01:47.152 XXXXX Status changed: {
    kind = 1;
    new = 1;
}, (null)
2016-03-13 15:01:47.153 XXXXX Rate changed: {
    kind = 1;
    new = 1;
}
2016-03-13 15:01:47.160 XXXXX Rate changed: {
    kind = 1;
    new = 1;
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我解决了这个问题 - 虽然我不确定为什么在 iOS 8 中会发生这种情况,但在 iOS 9 中却没有。</p>

<p>完成 <code>loadValuesAsynchronouslyForKeys</code> 没有返回到主线程。我通过输入 <code></code> 进行了检查,发现它是错误的。 </p>

<p>我通过在执行“<code>replaceCurrentItemWithPlayerItem</code>”之前切换到主线程来修复它。</p>

<pre><code>AVAsset *asset = ;
       completionHandler:^{
            NSLog(@&#34;Main: %d&#34;,);
            dispatch_async(dispatch_get_main_queue(), ^{
                AVPlayerItem *newItem = [ initWithAsset:asset];
                [((AppDelegate*)[ delegate]).avplayer replaceCurrentItemWithPlayerItem:newItem];
                ;
                [((AppDelegate*)[ delegate]).avplayer play];
            });
      }];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iOS 8.4 特定 : AVPlayer not playing both video &amp; audio and no errors,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35974481/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35974481/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS 8.4 特定 : AVPlayer not playing both video &amp; audio and no errors