菜鸟教程小白 发表于 2022-12-12 18:48:32

ios - AVUrlAsset 和 WebVTT


                                            <p><p>在 iOS/TVOS 上,是否可以从 URL 加载远程 .vtt 文件并将其用作字幕轨道,同时从 URL 加载远程 HLS 视频(与在 m3u8 播放列表中指定的 VTT 不同) )?</p>

<p>伪代码:</p>

<pre><code>AVAsset* video_asset = AVAsset( &#34;http://video.m3u8&#34; );
AVAsset* subtitle_asset = AVAsset( &#34;http://subtitle.vtt&#34; );
AVPlayer player = player.playVideoWithSubtitle( video_asset, subtitle_asset );
player.play().
</code></pre>

<p>编辑:</p>

<p>文档提到使用 AVAsset 作为字幕,但实际上有人有例子吗?我只能找到关于添加字符串作为字幕而不是加载远程 VTT 的示例。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我在这里发布了一个解决方案:<a href="https://stackoverflow.com/a/37945178/171933" rel="noreferrer noopener nofollow">https://stackoverflow.com/a/37945178/171933</a>基本上,您需要使用 <code>AVMutableComposition</code> 将视频与字幕结合起来,然后播放该合成。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - AVUrlAsset 和 WebVTT,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35879678/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35879678/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - AVUrlAsset 和 WebVTT