hls.js 1.5.9-0.canary.10179 → 1.5.9-0.canary.10182
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/hls-demo.js +6 -0
- package/dist/hls-demo.js.map +1 -1
- package/dist/hls.js +24 -26
- package/dist/hls.js.map +1 -1
- package/dist/hls.light.js +23 -25
- package/dist/hls.light.js.map +1 -1
- package/dist/hls.light.min.js +1 -1
- package/dist/hls.light.min.js.map +1 -1
- package/dist/hls.light.mjs +23 -25
- package/dist/hls.light.mjs.map +1 -1
- package/dist/hls.min.js +1 -1
- package/dist/hls.min.js.map +1 -1
- package/dist/hls.mjs +24 -26
- package/dist/hls.mjs.map +1 -1
- package/dist/hls.worker.js +1 -1
- package/dist/hls.worker.js.map +1 -1
- package/package.json +2 -2
- package/src/demux/video/avc-video-parser.ts +1 -1
- package/src/demux/video/base-video-parser.ts +20 -23
- package/src/demux/video/hevc-video-parser.ts +1 -1
- package/src/types/demuxer.ts +1 -0
package/dist/hls-demo.js
CHANGED
@@ -259,6 +259,12 @@
|
|
259
259
|
url: 'https://devoldemar.github.io/streams/hls/bipbop/hevc.m3u8',
|
260
260
|
description: 'Advanced stream (HEVC Main 10, MPEG-TS segments)',
|
261
261
|
skipFunctionalTests: true
|
262
|
+
},
|
263
|
+
mpegTsBitmovinHevc: {
|
264
|
+
url: 'https://bitmovin-a.akamaihd.net/content/dataset/multi-codec/hevc/v720p_ts.m3u8',
|
265
|
+
description: 'HLS M2TS by Bitmovin (HEVC Main, many NALUs overflowing PESes, video only)',
|
266
|
+
abr: false,
|
267
|
+
skipFunctionalTests: true
|
262
268
|
}
|
263
269
|
};
|
264
270
|
|