Hls.js Versions Save

HLS.js is a JavaScript library that plays HLS in browsers with support for MSE.

v1.5.8

2 weeks ago

Summary

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

Changes Since The Last Release

https://github.com/video-dev/hls.js/compare/v1.5.7...v1.5.8

  • Fix preferManagedMediaSource:false when MSE is not present (#6338) @Asen-O-Nikolov
  • Fix duplicate audio codec in CODECS (#6341) @robwalch
  • Fix light player exception with audio groups (#6342) @iamboorrito
  • Determine canSkip based on age of last playlist request (#6300) @mcintyrehh
  • API.md update removeLevel (#6267) @PavelFomin90

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.

v1.5.7

2 months ago

Summary

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

Changes Since The Last Release

https://github.com/video-dev/hls.js/compare/v1.5.6...v1.5.7

  • Fix compatibility of ManagedMediaSource implementation with Edge 18 (#6246)
    • Fixes #6243 reported by @Wenjie-Shao

Demo Page

https://e655f194.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.6

2 months ago

Summary

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

Changes Since The Last Release

https://github.com/video-dev/hls.js/compare/v1.5.5...v1.5.6

  • Fix index offset in sidx parsing (#6221) @nklhtv
  • Fix issues with detached and destroyed level selection (#6216) @robwalch

Demo Page

https://50c883ad.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.5

2 months ago

Summary

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

Changes Since The Last Release

https://github.com/video-dev/hls.js/compare/v1.5.4...v1.5.5

  • Fix subtitle stream controller buffered TimeRanges (#6205)

Demo Page

https://62e182dc.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.4

2 months ago

Summary

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

Changes Since The Last Release

https://github.com/video-dev/hls.js/compare/v1.5.3...v1.5.4

  • Account for overlapping sidx sub-segment durations by parsing earlierst-presentation-time (#6192)
  • Support startLevel above max level index (#6190)
  • Align playlists streaming start position with mismatched end-list tags (#6189)

Demo Page

https://a68faad5.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.3

2 months ago

Summary

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

Changes Since The Last Release

https://github.com/video-dev/hls.js/compare/v1.5.2...v1.5.3

  • Fix regression in hls.light.js selection (#6155)

Demo Page

https://c4ee6181.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.2

3 months ago

Summary

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

Changes Since The Last Release

https://github.com/video-dev/hls.js/compare/v1.5.1...v1.5.2

  • Use average for level sorting and abandon rules check (#6135)

Demo Page

https://7ed4d72b.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.1

3 months ago

Summary

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

Changes Since The Last Release

https://github.com/video-dev/hls.js/compare/v1.5.0...v1.5.1

  • Fix regression where subtitle options with AUTOSELECT or FORCED are enabled at start (#6094) @robwalch
  • Null CMCDController callback properties on destroy (#6098)

Demo Page

https://2400e6db.hls-js-dev.pages.dev/demo/

API and Breaking Changes

If you are upgrading from version v0.14.17 or lower, see the MIGRATING guide for API changes between v0.14.x and v1.0.0.

Feedback

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

v1.5.0

3 months ago

Summary

HLS.js v1.5.0 includes playback and API enhancements that support HLS assets containing multiple codec variants, HDR video variants, and multi-channel audio renditions. Support for MediaCapabilities and ManagedMediaSource has also been adopted.

Media segment codec parsing is available for direct playback of media playlists as well as proper setup of MediaSource buffers for AV1, HEVC, HEVC with DolbyVision, AVC, AC3, EC3, Apple Lossless (ALAC), AAC, FLAC and Opus.

MediaCapabilities decodeInfo checks are performed after the initial start before switching to UHD, HDR, and Multi-channel audio options.

Note that auto-switching between codec families is not supported. HLS.js will attempt to start on the most efficient supported codec set available within the initial bandwidth estimate range (up to 500kbps). However, switching between variants with incompatible codecs requires manual intervention by the user or application. Constraining playback to compatible codecs maintains maximum compatibility and stable playback. changeType is used when necessary but avoided for auto-switching because it is not always stable or smooth between all combinations or on all platforms.

ManagedMediaSource support adds the ability to run HLS.js on iOS 17.1 and up. HLS.js in Safari on iOS, iPadOS, and MacOS leverages ManagedMediaSource to start and stop streaming for power-efficient use of wireless connections.

Changes Since The Last Release

https://github.com/video-dev/hls.js/compare/v1.4.14...v1.5.0

API Enhancements

  • Named exports for all classes and enums are available in ESM output (#5930) @robwalch
  • Rendition selection enhancements (#5704)
    • HLS.js will no longer start on the first variant (hls.firstLevel) or any variant of a preferred codec if its BANDWIDTH exceeds abrEwmaDefaultEstimateMax
    • Added hls.firstAutoLevel getter, used internally to get the starting level index hls.levels are sorted on height, frame rate, preferred codec, and video-range to infer order by quality. Height-first sorting allows cap-level-lontroller to set a max quality index at the maximum allowed resolution
    • Added getters for all audio tracks and all subtitle tracks: hls.allAudioTracks and hls.allSubtitleTracks
  • API enhancements for audio and subtitle selection (#5978)
    • hls.setAudioOption() and config.audioPreference have been added to simplify audio selection based on user preferences and playback settings
    • hls.setSubtitleOption() and config.subtitlePreference have been added to simplify subtitle selection based on user preferences and playback settings. Only subtitle media options (hls.allSubtitleTracks) are subject to selection criteria. Captions are assigned a TextTrack or emitted through events when native rendering is disabled.
  • config.videoPreference.preferHDR and preferHDR have been added to override the default SDR/HDR selection behavior
  • Base initial bandwidth estimate on first level bitrate (#5649)
    • Added setter for bandwidthEstimate that resets estimator to a new starting value
  • Initial selection and level filtering based on preferred codecs and MediaCapabilities (#5704)
    • Added config.useMediaCapabilities (defaults to true)
    • Set config.useMediaCapabilities to false to disable the use of MediaCapabilities.decodingInfo
  • isSupported() has been expanded to test alternate baseline codecs (#6006)
    • Added isMSESupported(), a subroutine of isSupported(), checks for MediaSource API without isTypeSupported checks.
    • Added getMediaSource(), which returns the preferred MSE interface or undefined when unavailable
    • Added named exports for isSupported, isMSESupported, and getMediaSource
  • Fire STEERING_MANIFEST_LOADED event when loading a Content Steering Manifest (#5417) @guillemcabrera
  • Added config flag for maximum front buffer frontBufferFlushThreshold (#5761) @iamboorrito
  • Implement event for maxAutoLevel change (#5763) @robwalch
  • Specify custom shouldRetry predicate in retryConfig (#5658) @PavelFomin90 (completed in #5762)
  • Default estimate enhancements (#5649) @robwalch
    • Added config.abrEwmaDefaultEstimateMax option, which limits how high the initial default value may be adjusted Separate peak and average bitrates of Level objects
  • Level properties
    • Level.bitrate uses variant BANDWIDTH (required peak bitrate) before falling back to optional AVERAGE-BANDWIDTH.
    • Level.averageBitrate returns parsed AVERAGE-BANDWIDTH. Falls back to runtime average Level.realBitrate (which is only set when config.abrMaxWithRealBitrate is enabled) and finally Level.bitrate (BANDWIDTH).
    • Added Level.frameRate returns parsed FRAME-RATE number or 0.
    • Added Level.codecs returns parsed CODECS or empty string.
    • Added Level.score returns parsed SCORE number or 0.
  • Added config option preferManagedMediaSource. Set it to false to use MediaSource rather than ManagedMediaSource on platforms with both.
  • Extended cmcd config option with cmcd.includeKeys. Takes an array of CMCD keys to include in client requests. (#5903) @littlespex

Codec Support

  • HDR/SDR VIDEO-RANGE selection and priority (#6007) @robwalch
  • Expand isSupported check to allow alternative codecs (#6006)
  • Added codec string parsing for h264, h265, and mp4a (#4996) @uvjustin
  • MP4 Sample Description ("stsd") CODEC Parsing (#5528)
  • Added HEVC decoder configuration parser (890fae30) @fogarasyroland
  • Added FLAC support (#4772) @jprjr
  • Added support for AC-3 codec in MPEG-TS (#5167) @erankor
  • Added AC3 file support and exclude AC3 parsing from hls.light builds (#5562) @robwalch
  • Added support for AC-3 audio in DVB streams (#5636) @softworkz
  • Prepare for Supporting Additional Video Codecs (#5634) @softworkz

iOS 17.1 Support

  • ManagedMediaSource Support (#5542) @robwalch
  • Check ManagedMediaSource removedRanges length on "bufferedchange" event (#5915)

Live Streaming Bug Fixes

  • Fixed Low-Latency HLS directives skipping part 0 (#5714) @jhonalino
  • Fixed support of skip directive without block reload (#5791) @robwalch
  • Fixed live frag finding after detaching and re-attaching past live window (#5742)
  • Handle #EXT-X-ENDLIST appended to live playlist without new segment (#5778)

Captions, Subtitles, and Metadata Bug Fixes

  • Clear CEA-608 captions on discontinuity (#5557)
  • Fixed DateRange metadata cue duration with ID3 cues that overlap (#5546)
  • Use input timescale when remuxing inband captions (#5675)

Bug Fixes (Misc)

  • Fix regression in emergency switch down (#6082) @robwalch
  • Fix codec parsing for AVC streams (#6077) by @Qizot
  • Fix fetch loader abort in progressive mode (#6066) @robwalch
  • Fix base-stream-controller onHandlerDestroying callback evocation (#6057)
    • (Removes circular references left after destroying player)
  • Fixed ID3 Decoding On Play Station 4 (#6042) @agajassi
  • Fixed (latency-controller) only sync live stream (#5604) @FredZeng
  • Use addEventListener for MediaKeySession events (#6030) @robwalch
  • Fix handling of the DATERANGE END-ON-NEXT attribute (#6038)
  • Fixed esds box parsing (#6019)
  • Added polyfill for isSafeInteger (#6022)
  • ID3 TextTrack Cue fixes for PlayStation4 (#6021)
  • Fixed issues parsing sei_messages (#5998) @jcekstrom
  • Fixed issues with long cea608 captions (#5953) @jcekstrom
  • Fixed regression in dev with CEA608 parser setup (#5986) @robwalch
  • Fixed detach/attach behavior dropping one of two SourceBuffers (#5974)
  • Filter variants with any unsupported codecs (#5533)
  • Fixed two AV1 parsing issues (#5774) @nyanmisaka
  • Push AUD units to fix decode errors with some TS segments (#5696) @robwalch
  • Fail MP3 probe if AC3 or EC3 detected (#5695)
  • Prevent ADTS probe false positives when bytes following ID3 are a match for MPEG audio (#5783)
  • Reset init segment when M2TS video configuration changes (#5794)
  • Fixed capLevelToPlayerSize after hiding player and maintain stable selection when aspect ratio changes (#5614)
  • Fixed handling of segments at the discontinuities that do not start with a keyframe (#5659)
  • Fixed AC3 PES parsing (#5673) @softworkz
  • Fixed issue #5632, where missing AUD units for keyframes causes them to be merged with their preceding frame (#5652) @Thulinma
  • Fixed Safari decode errors with DTS not increasing when PTS decreases (#5710) @robwalch
  • Fixed PlayReady DRM in Edge browser (#5699) @mikrohard
  • Do not jump start gaps when paused (#5502) @robwalch
  • Never back-track on first fragment to avoid loop loading (#5613)
  • Use last discontinuity bounds when aligning playlists on PDT (#5681)
  • Load last alt-audio segment even when is starts after the end of the main playlist (#5717)
  • Do not exit from stall detection when playhead is at or past end of buffer (#5779)
  • Error and switch on SourceBuffer append requests for non-existing tracks (#5485)
  • Handle mixed sourcebuffer errors (#5623)
  • Remove SourceBuffers on "updateend" when MediaSource is closed (#5731)
  • Resume fragment loading after level switch follows level error (#5537)
  • Prevent recursion in error event handlers that throw (#5549)
  • Reset loading start on worker setup error (#5620)

Enhancements

  • Use Content Steering Pathways to manage Redundant Streams (#5970)
  • Remove the use of self from enableLogger (#5936)
  • Refactor CMCD controller and tests to use the common media library utilities (#5903) @littlespex
  • Updated CMCD dependency @svta/common-media-library to v0.6.0 (#6024)
  • Lazy init CEA608 parsers (#5689) @robwalch
  • Improve buffer-controller logging (#5548)
  • Do not modify fmp4 bytes when there is no offset (#5780)
  • Ignore #EXT-X-INDEPENDENT-SEGMENTS (#6047)

Typescript Improvements

  • Correcting usage of extended generic type LoaderContext in type Loader (#5494) @lvnam96
  • Make loader context nullable and cleanup loader cleanup (#5552) @robwalch

Demo Page Enhancements

  • Added playsInline to video elements on demo pages (#5556) @tjenkinson

Documentation

  • Added additional documentation for workerPath config (#5765) @mogzol

Project and CI

  • Store deployments in JSON file, and generate md and txt file from that (#6044) @tjenkinson
  • Upgrade to Rollup 4 (#5886)
  • Configure typescript, eslint and prettier caches (#5990)
  • Update karma-rollup-preprocessor to version that works in watch mode (#5991)
  • Update question.yaml template description (#5591) @robwalch
  • Added Visual Studio Exclusions to .gitignore (#5635) @softworkz

Demo Page

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

API and Breaking Changes

If you are upgrading from version v0.14.17 or lower, see the MIGRATING guide for API changes between v0.14.x and v1.x.

Feedback

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

v1.4.14

4 months ago

Summary

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

Changes Since The Last Release

https://github.com/video-dev/hls.js/compare/v1.4.13...v1.4.14

  • Bugfix/ID3 Decoding On Play Station 4 (1.4.x cherry pick) (#6048) @agajassi

Demo Page

https://00e6b582.hls-js-dev.pages.dev/demo/

API and Breaking Changes

If you are upgrading from version v0.14.17 or lower, see the MIGRATING guide for API changes between v0.14.x and v1.0.0.

Feedback

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