2018-07-10 23:04:56 +00:00
|
|
|
#EXTM3U
|
|
|
|
#EXT-X-VERSION:6
|
2022-03-07 19:56:34 +00:00
|
|
|
## Generated with https://github.com/shaka-project/shaka-packager version <tag>-<hash>-<test>
|
2018-07-10 23:04:56 +00:00
|
|
|
#EXT-X-TARGETDURATION:2
|
|
|
|
#EXT-X-PLAYLIST-TYPE:VOD
|
2022-03-07 19:56:34 +00:00
|
|
|
#EXT-X-MAP:URI="bear-640x360-video.mp4",BYTERANGE="870@0"
|
Add support for EditLists in ISO-BMFF
- EditLists in input files are parsed and applied to sample timestamps.
- An EditList will be inserted in the ISO-BMFF output if
- There is an offset between the initial presentation timestamp (pts)
and decoding timestamp (dts). Chrome, as of M67, still uses dts in
buffered range API [1], which creates various problems when buffered
range by pts does not align with buffered range by dts. There is
another bug in Chrome that applies EditList to pts only [2]. This
means that we can insert an EditList to align pts range and dts range.
- MediaSamples have negative timestamps (e.g. for Audio Priming).
You may notice the below change on some contents:
- Some media duration is reduced by one or two frames. This is because
EditList in the input file was ignored in the previous code, so video
streams start with a zero dts and a non-zero pts; the smaller of dts
and pts was used as the starting timestamp (related to the earlier
workaround for Chrome's dts bug), so the calculated duration was
actually a bit larger than the actual duration. Now with EditList
applied, the initial pts is reduced to zero, so the media duration is
also reduced to reflect the actual and correct media duration.
It may also result in negative timestamps in TS/HLS Packed Audio, which
will be addressed in a follow up CL.
Fixes #112.
Partially address b/110782437.
[1] https://crbug.com/718641, fixed but behind MseBufferByPts.
[2] https://crbug.com/354518. Chrome is planning to enable the fix for
[1] before addressing this bug, so we are safe.
Change-Id: I59317740ad3807ca66fa74b3a18fdf7f32c96aeb
2018-07-03 00:52:25 +00:00
|
|
|
#EXTINF:1.001,
|
2022-03-07 19:56:34 +00:00
|
|
|
#EXT-X-BYTERANGE:99313@938
|
2018-07-10 23:04:56 +00:00
|
|
|
bear-640x360-video.mp4
|
|
|
|
#EXTINF:1.001,
|
|
|
|
#EXT-X-BYTERANGE:121807
|
|
|
|
bear-640x360-video.mp4
|
|
|
|
#EXTINF:0.734,
|
|
|
|
#EXT-X-BYTERANGE:79662
|
|
|
|
bear-640x360-video.mp4
|
|
|
|
#EXT-X-ENDLIST
|