菜鸟教程小白 发表于 2022-12-13 00:42:15

ios - AVPlayer 在状态达到 "ReadyToPlay"后仍有延迟


                                            <p><p>我想从我的服务器播放 mp3 文件,我执行以下操作:</p>

<pre><code>NSURL *url = ;

AVPlayerItem *playerItem = ;

self.player = ;

self.player addObserver:self forKeyPath:@&#34;status&#34; options:0 context:nil];

self.hud = [initWithFrame:CGRectMake(150, 5, 50, 50)];   
self.hud.mode = MBProgressHUDModeIndeterminate;
;
;
</code></pre>

<p>这是我的 observeValueForKeyPath:</p>

<pre><code>- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {

if (object == self.player &amp;&amp; )
{
    if (self.player.status == AVPlayerStatusReadyToPlay)
    {
      ;
      ;
.
.
.
</code></pre>

<p>现在的问题是,即使 AVPlayer 的状态已更改为“readyToPlay”,它仍然需要大约 2-3 秒才能开始播放,当然我的加载 Spinner 在音乐开始之前被隐藏了......任何想法?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>试试 <code>;</code> 方法 <code></code> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - AVPlayer 在状态达到&#34;ReadyToPlay&#34;后仍有延迟,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/25288505/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/25288505/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - AVPlayer 在状态达到 &#34;ReadyToPlay&#34;后仍有延迟