m3u8 文件可以包含其他 m3u8 文件吗?
我想通过 Apple HTTP Streaming Tech
流式传输到 IPAD
。是否可以在c程序中嵌入其他M3U8
文件,例如include命令?
例如main.m3u8:
includes
1.m3u8
2.m3u8
这样IPAD
可以播放1.m3u8,然后2.m3u8等等。
I want to stream to IPAD
by Apple HTTP Streaming Tech
. Is it possible to embed other M3U8
files like the include command in the c program?
For example main.m3u8:
includes
1.m3u8
2.m3u8
So that IPAD
can play 1.m3u8, then 2.m3u8 and so on.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,您可以使用
EXT-X-STREAM-INF
标签来包含文件。该文档位于此处
也许您可以使用
PROGRAM-ID
来签署不同的媒体文件但是,我还没有尝试过
As I know you can use
EXT-X-STREAM-INF
tag to include file.The document is here
May be you can use
PROGRAM-ID
to sign different media filebut, I haven't tried it yet
是的,它可能是这样工作的。
您可以包含更多分辨率以包含多个 m3u8。
Yes, it may work like this.
You can include more resolution to include multiple m3u8.