@videojs/http-streaming
Advanced tools
Comparing version 3.3.1 to 3.4.0
@@ -118,3 +118,2 @@ # Supported Features | ||
* [EXT-X-SESSION-KEY] | ||
* [EXT-X-INDEPENDENT-SEGMENTS] | ||
* Alternate video via [EXT-X-MEDIA] of type video | ||
@@ -282,3 +281,2 @@ * ASSOC-LANGUAGE in [EXT-X-MEDIA] | ||
[EXT-X-SESSION-KEY]: https://tools.ietf.org/html/draft-pantos-http-live-streaming-23#section-4.3.4.5 | ||
[EXT-X-INDEPENDENT-SEGMENTS]: https://tools.ietf.org/html/draft-pantos-http-live-streaming-23#section-4.3.5.1 | ||
[EXT-X-START]: https://tools.ietf.org/html/draft-pantos-http-live-streaming-23#section-4.3.5.2 | ||
@@ -285,0 +283,0 @@ [EXT-X-MEDIA]: https://tools.ietf.org/html/draft-pantos-http-live-streaming-23#section-4.3.4.1 |
{ | ||
"name": "@videojs/http-streaming", | ||
"version": "3.3.1", | ||
"version": "3.4.0", | ||
"description": "Play back HLS and DASH with Video.js, even where it's not natively supported", | ||
@@ -64,3 +64,3 @@ "main": "dist/videojs-http-streaming.cjs.js", | ||
"global": "^4.4.0", | ||
"m3u8-parser": "^6.0.0", | ||
"m3u8-parser": "^6.2.0", | ||
"mpd-parser": "^1.1.1", | ||
@@ -67,0 +67,0 @@ "mux.js": "6.3.0", |
@@ -500,4 +500,5 @@ /** | ||
const isLive = !playlist.endList; | ||
const isLLHLS = typeof playlist.partTargetDuration === 'number'; | ||
if (isLive && allowSeeksWithinUnsafeLiveWindow) { | ||
if (isLive && (isLLHLS || allowSeeksWithinUnsafeLiveWindow)) { | ||
allowedEnd = seekable.end(seekable.length - 1) + (playlist.targetDuration * 3); | ||
@@ -504,0 +505,0 @@ } |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6231960
120864
Updatedm3u8-parser@^6.2.0