更新 .m3u8 播放列表文件以进行 HTTP 直播?
我正在将传入电影中的 MPEG-2 可传输格式转换为不可播放的实时流媒体,然后使用 mediastreamvalidator 验证 .m3u8 文件,它显示“警告:在没有 EXT-X-DISCONTINUITY 标记的情况下检测到流不连续性”。使用 FFMPEG 进行转换,请帮助我缺少什么?
斯里
I am converting MPEG-2 transportable format from incoming movie for live streaming which is not playable, then validate the .m3u8 file by using mediastreamvalidator, it says "WARNING: stream discontinuity detected without EXT-X-DISCONTINUITY tag". The conversion happen using FFMPEG, please help me what i am missing?
Sri
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能是指 PTS 和 PCR 不连续性。当使用新上下文生成不同的流时 - PTS 和 PCR 值可能完全不同步。这可能是引发不连续警告的潜在问题。
Possibly this refers to PTS and PCR discontinuity. When a different streams are generated using fresh context - the PTS and PCR values might be completely off the sync. This can be a potential problem that throws Warning of discontinuity.
使用 FFMPEG 时,您可以使用 setpts 选项重写输出文件上的时间戳。
When using FFMPEG, you can rewrite the timestamps on the output files with the setpts option.