Update your .m3u8 playlist file for HTTP Live streaming?

I convert a portable MPEG-2 format from an incoming movie for real-time streaming that does not play, and then check the .m3u8 file with the mediastreamvalidator tool, it says: "WARNING: stream break detected without EXT-X-DISCONTINUITY tag" . The conversion is using FFMPEG, please help me, what can I not see?

Sri

0
source share
2 answers

Perhaps this refers to the gap between PTS and PCR. When different streams are generated using a fresh context, the PTS and PCR values ​​can be completely disconnected from synchronization. This could be a potential issue that triggers a break warning.

0
source

When using FFMPEG, you can overwrite timestamps in the output files using the setpts parameter.

0
source

Source: https://habr.com/ru/post/1385139/


All Articles