Skip to content

Releases: video-dev/hls.js

v1.6.0-beta.1

10 Oct 16:11
2299042
Compare
Choose a tag to compare
v1.6.0-beta.1 Pre-release
Pre-release

Summary

HLS.js v1.6.0 includes support for HLS Interstitials. HEVC in MPEG2-TS has been adopted based on popular demand.

Live playback fixes improve stability and join time. Target latency is settable. Low-latency part fetching will transition seamlessly to full segment fetching when playback is far back enough not to benefit from part loading.

API enhancements for Interstitials allow the MediaSource to be transitioned between Hls instances. This can be used to achieve gapless playback between items when combined with timelineOffset.

API Enhancements

Design Details

The InterstitialsController handles HLS and media input and events for the primary HLS asset. It passes date range data to the scheduler to produce an array of Interstitial events and an array of event and primary items called the schedule. InterstitialsController has:

  • an InterstitialsSchedule which produces Interstitial events and a schedule of items on level update. The InterstitialsSchedule has
    • an array of InterstitialEvent objects. Each event contains properties and getters for finding its place on the playback timeline as well as an array of interstitial assets
  • an array of HLSAssetPlayer instances call the player queue. Each HLSAssetPlayer wraps a child instance of Hls used to preload and stream Interstitial assets.
  • the responsibility of loading asset lists. The InterstitialsController adds a loader to the corresponding InterstitialEvent while loading. The loader is removed and replaced by the asset list response once the request is complete.
  • the responsibility of scheduling Interstitial playback and maintaining the current playing and buffering schedule items and assets. The schedule advances according to primary currentTime changes on timeupdate and seeking events, advancement of the combined buffer on media append, and asset playback and buffer advancement and completion.

Configuration options

  • Interstitials parsing and playback are enabled via config option interstitialsController. Setting this to null turns off Interstitial parsing and playback.
  • To turn off Interstitial playback without removing parsing or schedule updates and buffered-to events, set config option enableInterstitialPlayback to false (allowing for custom playout and ad managers)
  • Config option interstitialAssetListLoadPolicy defines the loading policy of X-ASSET-LIST JSON
  • Several config options have been added specifically for Interstitial asset player instances:
    • primarySessionId identifies the parent player session that spawned the asset player (read from hls.sessionId)
    • assetPlayerId is used to identify logs from asset players
    • timelineOffset is used to offset MSE appends of Interstitial content (not all Interstitial assets are appended inline at offsets; most require a MediaSource reset)

New top-level API on Hls instances

  • bufferedToEnd getter returns a boolean indicating if EOS has been appended (media is buffered from currentTime to end of stream)
  • bufferingEnabled getter returns a boolean indicating whether fragment loading has been toggled with pauseBuffering() and resumeBuffering()
  • interstitialsManager getter returns an InterstitialsManager (or null). The InterstitialsManager is an interface that provides access to Interstitial program and timeline data as well as methods for seeking across items and skipping Interstitial events.
  • latestLevelDetails getter returns the LevelDetails of the most up-to-date HLS variant Playlist data
  • sessionId getter returns the session UUID assigned to the Hls instance
    • The sessionId value is used when assigning a _HLS_primary_id query parameter to interstitial requests
  • startLoad() now includes a second optional argument to skip seeking on start (otherwise, HLS.js seeks following to the first optional startPosition argument on append)
  • hasEnoughToStart getter returns whether enough is buffered to seek to start position (#6571)
  • startPosition getter returns the resolved startPosition that playback will begin at once media is appended
  • transferMedia() method detaches and returns MediaSource and SourceBuffers non-destructively
  • url getter returns the URL resolved from loadSource(url)

Updated top-level API on Hls instances

  • attachMedia() enhancements for transferring MediaSource and SourceBuffers between Hls instances
  • recoverMediaError() now seeks to the value of currentTime before the source reset is performed (#6297)

New Events for Interstitials

  • ASSET_LIST_LOADING when a request is made for an X-ASSET-LIST JSON object
  • ASSET_LIST_LOADED when a response is received for an X-ASSET-LIST JSON object
  • INTERSTITIALS_UPDATED when Interstitials are added, removed, or the schedule is updated following a variant playlist update or updated asset durations from X-ASSET-LIST JSON or asset playlist and media parsing
  • INTERSTITIALS_BUFFERED_TO_BOUNDARY when the forward buffer reaches the boundary of the following schedule item (Interstitial event or primary segment)
  • INTERSTITIAL_ASSET_PLAYER_CREATED when an asset player instance is created to stream an Interstitial asset (will always be before attaching media to the asset player)
  • INTERSTITIAL_STARTED when streaming of an Interstitial event containing one or more assets has begun (may occur before X-ASSET-LIST JSON is loaded or playback has started)
  • INTERSTITIAL_ENDED when streaming of an Interstitial event containing one or more assets has ended - before resuming primary or starting the next event
  • INTERSTITIAL_ASSET_STARTED when streaming of an Interstitial asset has begun (following the beginning of the event or the end of the last asset)
  • INTERSTITIAL_ASSET_ENDED when streaming of an Interstitial asset has ended (before the next asset or the event ending)
  • INTERSTITIAL_ASSET_ERROR when an error occurs starting or streaming an Interstitial asset (this can include non-fatal errors such as stalling and errors that will end streaming of the asset, resulting in the schedule advancing to the next asset or fallback to primary)
  • INTERSTITIALS_PRIMARY_RESUMED when playback of primary content has begun or resumed from an Interstitial event
  • BUFFERED_TO_END when the last audio and video segments in the playlist have been appended (EOS signaled on all SourceBuffers)
  • AUDIO_TRACK_UPDATED similar to LEVEL_UPDATED fired for any update to audio group playlists
  • SUBTITLE_TRACK_UPDATED similar to LEVEL_UPDATED fired for any update to subtitle group playlists

Updated Events

  • MEDIA_ATTACHING, MEDIA_ATTACHED, MEDIA_DETACHING, and MEDIA_DETACHED include additional information (depending on whether media is being transferred)

New Errors for Interstitials

  • Type: NETWORK_ERROR
    • details: ASSET_LIST_LOAD_ERROR network error loading asset list
    • details: ASSET_LIST_LOAD_TIMEOUT network timeout error loading asset list
    • details: ASSET_LIST_PARSING_ERROR asset list was not valid JSON or missing required data
  • type: OTHER_ERROR details: INTERSTITIAL_ASSET_ITEM_ERROR an issue interrupted or prevented asset playback. This will result in skipping the remainder of the asset or falling back to primary content. The event error will contain more details. This type of error differs from the INTERSTITIAL_ASSET_ERROR events forwarded from asset player errors.

Changes Since The Last Release

v1.5.16...v1.6.0-beta.1

New Features

  • HLS Interstitials Support (#6591) @robwalch
    • Fixes (#5730)
    • Resolves playback stuck with no audio-video buffer overlap (#6571) @JackPu
    • Resolves always honor config.startPosition when attaching(recovering) (#6297) @kedanielwu
    • DateRange parsing and validation enhancements for Interstitials (#6213) @robwalch
      • Resolves EXT-X-DATERANGE metadata synchronisation vs video stream in presence of frequent EXT-X-DISCONTINUITYs (#6203) @lnstadrum
    • Move hash function into utils (#6503) @robwalch
  • fetchSetup config optional async support (#6714) @zce
  • Improve support of unknown CODECS (#6620) @robwalch
    • Instead of filtering out variants with unknown codecs, determine if codec is audio or video based on passing isTypeSupported check
  • Adding AES-256 and AES-256-CTR encryption methods (#6018) @jvary
  • Support for H.265/HEVC in MPEG2-TS (#5847) @devoldemar
    • Support for H.265/HEVC in MPEG2-TS (#4943) @u93
    • Unsupported HEVC in M2TS found (#6334) @wangyong991
    • Play error stream MPEG-H Part2/HEVC (H.265) (hevc) (#6112) @zsahome
    • Do not include HEVC in TS support in hls.light (#6194) @robwalch
    • Fix PPS array growth in HEVC TS parser (#6724) @devoldemar
      • Fixes Memory leaks during playback of HEVC / H.265 / HEV1 / HVC1 HLS stream packaged into MPEG-TS (.ts files) (#6683) @izogfif
    • MPEG2-TS: Fix extraction of NALu overflowing PES packet (#6268) @devoldemar
  • Add support for CMCD nor (#6091) @littlespex
  • CMAF KLV support via Metadata callback (set enableEmsgKLVMetadata to true to enable) (#6674) @glynd

Enhancements

  • Low-Latency HLS:
    • Switch between part and fragment loading at start and on segment boundaries (#6170) @ro...
Read more

v1.5.16

08 Oct 22:46
Compare
Choose a tag to compare

Summary

HLS.js v1.5.16 includes bug fixes and improvements over the last release.

Changes Since The Last Release

v1.5.15...v1.5.16

Demo Page

https://37c2c81d.hls-js-dev.pages.dev/demo/

Feedback

Please provide feedback via Issues in GitHub. For more details on how to contribute to HLS.js, see our CONTRIBUTING guide.

v1.5.15

22 Aug 16:34
Compare
Choose a tag to compare

Summary

HLS.js v1.5.15 includes bug fixes and improvements over the last release.

Changes Since The Last Release

v1.5.14...v1.5.15

  • Parse multiple pssh from "encrypted" init data and fix Widevine key ID extraction for playlist match (#6640) @robwalch
  • Update test case to use Github Pages url (#6643) @ayellapragada

Demo Page

https://4e4dc178.hls-js-dev.pages.dev/demo/

Feedback

Please provide feedback via Issues in GitHub. For more details on how to contribute to HLS.js, see our CONTRIBUTING guide.

v1.5.14

05 Aug 22:14
0d29c78
Compare
Choose a tag to compare

Summary

HLS.js v1.5.14 includes bug fixes and improvements over the last release.

Changes Since The Last Release

v1.5.13...v1.5.14

Demo Page

https://54b0b8e6.hls-js-dev.pages.dev/

Feedback

Please provide feedback via Issues in GitHub. For more details on how to contribute to HLS.js, see our CONTRIBUTING guide.

v1.5.13

03 Jul 22:13
cedf96d
Compare
Choose a tag to compare

Summary

HLS.js v1.5.13 includes bug fixes and improvements over the last release.

Changes Since The Last Release

v1.5.12...v1.5.13

HLS.js changes:

Demo Page changes:

Demo Page

https://7e3969ad.hls-js-dev.pages.dev/demo/

Feedback

Please provide feedback via Issues in GitHub. For more details on how to contribute to HLS.js, see our CONTRIBUTING guide.

v1.5.12

01 Jul 18:03
Compare
Choose a tag to compare

Summary

HLS.js v1.5.12 includes bug fixes and improvements over the last release.

Changes Since The Last Release

v1.5.11...v1.5.12

Demo Page

https://001e7642.hls-js-dev.pages.dev/demo/

Feedback

Please provide feedback via Issues in GitHub. For more details on how to contribute to HLS.js, see our CONTRIBUTING guide.

v1.5.11

04 Jun 18:37
61dd3f5
Compare
Choose a tag to compare

Summary

HLS.js v1.5.11 includes bug fixes and improvements over the last release.

Changes Since The Last Release

v1.5.10...v1.5.11

  • Fix error handling for GAP tags in subtitle and audio playlists (#6478) @robwalch

Demo Page

https://f7ddc5db.hls-js-dev.pages.dev/demo/

Feedback

Please provide feedback via Issues in GitHub. For more details on how to contribute to HLS.js, see our CONTRIBUTING guide.

v1.5.10

03 Jun 18:52
Compare
Choose a tag to compare

Summary

HLS.js v1.5.10 includes bug fixes and improvements over the last release.

Changes Since The Last Release

v1.5.9...v1.5.10

Demo Page

https://56631b07.hls-js-dev.pages.dev/

Feedback

Please provide feedback via Issues in GitHub. For more details on how to contribute to HLS.js, see our CONTRIBUTING guide.

v1.5.9

29 May 20:40
Compare
Choose a tag to compare

Summary

HLS.js v1.5.9 includes bug fixes and improvements over the last release.

Changes Since The Last Release

v1.5.8...v1.5.9

  • Fix missing details if subtitle changed synchronously after loaded and before onLoaded callback (#6424) @iamboorrito
  • Fix: Handle irregular white-space in segment URIs (#6396) @robwalch
  • Fix backtracking when an appended segment has no buffered timerange (#6434)
  • Fix 608 parser handling of redundant control codes (Fixes #6427)
  • Fix 608 caption TextTrack Cue seek/discontinuity timing (regression introduced in v1.5.0 with #5557)
  • Fix JS AES fallback when browserCrypto.subtle returns undefined (rather than null) (#6446)
  • Emit FRAG_PARSING_ERROR on unsupported M2TS codec (#6447)

Demo Page

https://978f0c41.hls-js-dev.pages.dev/

Feedback

Please provide feedback via Issues in GitHub. For more details on how to contribute to HLS.js, see our CONTRIBUTING guide.

v1.5.8

10 Apr 22:38
Compare
Choose a tag to compare

Summary

HLS.js v1.5.8 includes bug fixes and improvements over the last release.

Changes Since The Last Release

v1.5.7...v1.5.8

Demo Page

https://e867d9c3.hls-js-dev.pages.dev/demo/

Feedback

Please provide feedback via Issues in GitHub. For more details on how to contribute to HLS.js, see our CONTRIBUTING guide.