hls.js 1.5.2-0.canary.9970 → 1.5.2-0.canary.9971
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/README.md +1 -0
- package/dist/hls-demo.js +5 -0
- package/dist/hls-demo.js.map +1 -1
- package/dist/hls.js +931 -215
- package/dist/hls.js.map +1 -1
- package/dist/hls.light.js +928 -212
- 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 +904 -197
- 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 +905 -198
- 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 +1 -1
- package/src/demux/tsdemuxer.ts +51 -20
- package/src/demux/video/avc-video-parser.ts +208 -119
- package/src/demux/video/base-video-parser.ts +134 -2
- package/src/demux/video/exp-golomb.ts +0 -208
- package/src/demux/video/hevc-video-parser.ts +746 -0
- package/src/remux/mp4-generator.ts +196 -1
- package/src/remux/mp4-remuxer.ts +3 -3
- package/src/types/demuxer.ts +2 -0
package/README.md
CHANGED
@@ -37,6 +37,7 @@ HLS.js is written in [ECMAScript6] (`*.js`) and [TypeScript] (`*.ts`) (strongly
|
|
37
37
|
- Fragmented MP4 container
|
38
38
|
- MPEG-2 TS container
|
39
39
|
- ITU-T Rec. H.264 and ISO/IEC 14496-10 Elementary Stream
|
40
|
+
- ITU-T Rec. H.265 and ISO/IEC 23008-2 Elementary Stream
|
40
41
|
- ISO/IEC 13818-7 ADTS AAC Elementary Stream
|
41
42
|
- ISO/IEC 11172-3 / ISO/IEC 13818-3 (MPEG-1/2 Audio Layer III) Elementary Stream
|
42
43
|
- ATSC A/52 / AC-3 / Dolby Digital Elementary Stream
|
package/dist/hls-demo.js
CHANGED
@@ -254,6 +254,11 @@
|
|
254
254
|
url: 'https://jvaryhlstests.blob.core.windows.net/hlstestdata/playlist_encrypted.m3u8',
|
255
255
|
description: 'aes-256 and aes-256-ctr full segment encryption',
|
256
256
|
abr: false
|
257
|
+
},
|
258
|
+
mpegTsHevcHls: {
|
259
|
+
url: 'https://devoldemar.github.io/streams/hls/bipbop/hevc.m3u8',
|
260
|
+
description: 'Advanced stream (HEVC Main 10, MPEG-TS segments)',
|
261
|
+
skipFunctionalTests: true
|
257
262
|
}
|
258
263
|
};
|
259
264
|
|