Changelog
π 7.8.0 (2024/07/15)β
Webβ
β¨ Featuresβ
- Added
MultiViewPlayer.ui
to access the UI of a multiview player.
π Issuesβ
- Fixed
MultiViewPlayer.destroy()
to not remove the original container element from the DOM. - Updated
MultiViewPlayerLayout
in the TypeScript type definitions to be a string union instead of an enum. - Fixed an issue on older browsers (such as Samsung Tizen 2.4) where the player failed to load when
Symbol.iterator
is not defined. - Fixed an issue on Tizen where seeking backwards after the stream ended could cause the player to be stuck in a playback loop and not ending again.
- Fixed an issue where Google IMA midroll and postroll ads were not preloaded.
Androidβ
π Issuesβ
- Fixed an issue where audio played on the phone instead of the connected headset after stopping Chromecast.
- Fixed an issue where the play/pause button was not working in a PiP window when targeting API 34 (or Android 14).
- Fixed an issue where caching sources would cause a runtime crash.
π Deprecationsβ
- Jitpack.io is now deprecated in favor of the THEOplayer Maven repository. Starting from 8.0 we will no longer publish new versions of the THEOplayer Android SDK or connectors to Jitpack.
iOSβ
β¨ Featuresβ
- Added
player.ads.registerServerSideIntegration()
API for registering custom server-side advertisement integrations. This API is currently experimental.
π 7.7.1 (2024/07/09)β
Webβ
π Issuesβ
- Fixed a regression where DASH playback could stall indefinitely after an HTTP request timed out on older browsers without
fetch()
.
Androidβ
π Issuesβ
- Fixed an issue where playback was not restoring after a poor network connection.
π 7.7.0 (2024/07/01)β
Generalβ
β¨ Featuresβ
- Added the ability in HLS to disable the video track (or audio track) on any stream, in order to play audio-only (or video-only).
π Issuesβ
- Fixed an issue where for LL-HLS a race condition could potentially throw the error 'Internal error: attempted to download an incomplete segment'.
- Fixed an issue where the player could sometimes stall while playing an HLS stream with rounded
#EXTINF
durations.
Webβ
π Issuesβ
- Fixed a regression where the player would throw an "Invalid UTF-8 detected" error when loading an HLS stream on an older browser without
fetch()
support and when using a network response interceptor.
Androidβ
β¨ Featuresβ
- Added support for caching MP4 videos.
π Issuesβ
- Fixed an issue where audio and text tracks restored to default when starting or stopping casting.
- Fixed an issue where media tracks were not updated after changing source while casting to Chromecast
- Fixed an issue where player paused when going to a fullscreen view during an IMA ad.
iOSβ
β¨ Featuresβ
- Added ActiveQualityChangedEvent which is fired by a MediaTrack when its activeQualityBandwidth property value changes.
π 7.6.1 (2024/06/26)β
Generalβ
π Issuesβ
- Fixed an issue where the player could sometimes stall while playing an HLS stream with rounded
#EXTINF
durations.
π 7.6.0 (2024/06/18)β
Webβ
π Issuesβ
- Fixed a memory leak where an
<iframe>
created by the Google DAI integration was not properly removed after callingplayer.destroy()
. - Fixed a performance issue with segment downloads on WebOS 5.x and below and Tizen.
- Fixed an issue where the player would sometimes stall after switching to a very short period in a multi-period DASH stream.
Androidβ
β¨ Featuresβ
- Added
player.ads.registerServerSideIntegration()
API for registering custom server-side advertisement integrations. This API is currently experimental.
π Issuesβ
- Fixed an issue where the player would sometimes crash on ad play-out completion.
- Fixed an issue where Google IMA ads were not preloaded when using
AdsRenderingSettings.enablePreloading
. - Fixed an issue where setting preload to
PreloadType.AUTO
would cause the player to always autoplay if the source contained Google-IMA pre-roll ads. - Fixed an issue where the player would show the first frame of the content before playing a Google-IMA pre-roll ad if preload type
PreloadType.AUTO
was selected. - Fixed an issue where the player would appear stuck if you changed the source during Google-IMA ad playback.
- Fixed an issue where a source change could trigger a crash on some Android devices.
- Fixed an issue where a media track could not be enabled in its
ADDTRACK
event listener.
π 7.5.0 (2024/06/04)β
Generalβ
β¨ Featuresβ
- Added
HlsPlaybackConfiguration
flagdelaySubtitlePreload
to delay preloading of subtitles until after video/audio for HLS streams, to work around an issue on MediaTailor streams where no ads are provided when loading subtitles concurrently.
Webβ
π Issuesβ
- Fixed an issue where the player's seekable range would be incorrect when casting an HLS stream to Chromecast V2.
- Fixed an issue where the player's currentTime was not updated after changing the source to an HLS stream while casting to a CAF receiver.
- Fixed an issue where the player would stall indefinitely when seeking into a discontinuity misalignment.
Androidβ
π Issuesβ
- Fixed an issue where adding more than one integration on Android 7 (API level 24) caused a crash.
iOSβ
π Issuesβ
- Fixed an issue where the airplay state would be incorrect after killing and re-instantiating a player instance whilst connected to an AirPlay device.
- Fixed an issue where a downloaded mp4 on iOS would be evicted right after the download finishes.
π 7.4.1 (2024/05/27)β
Generalβ
π Issuesβ
- Fixed an issue where incomplete
ServiceDescription
tags in a DASH stream would prevent the player from being able to load the manifest.
Androidβ
π Issuesβ
- Fixed an issue where streams with Google DAI SSAI would not start playing.
π 7.4.0 (2024/05/21)β
Generalβ
π Issuesβ
- Fixed an issue with the ABR algorithm for HLS on devices that do not report the total segment byte size during the download.
Webβ
β¨ Featuresβ
- Added support for managing low-latency live playback for HLS and DASH streams via
player.latency
. - Added support for LL-DASH
ServiceDescription
elements, used as the defaultplayer.latency
configuration for LL-DASH live playback. - Added
player.ads.registerServerSideIntegration()
API for registering custom server-side advertisement integrations. This API is currently experimental.
π Issuesβ
- Fixed an issue where IMA post-roll ads would be preloaded too early. The post-rolls for VMAPs can now only be preloaded if
player.preload
is set to at least"metadata"
.
Androidβ
β¨ Featuresβ
- Exposed the focus() method on GoogleImaIntegration and GoogleDaiIntegration to allow moving the focus on interactive elements.
iOSβ
β¨ Featuresβ
- Added
resizeTransitionEnabled
API on THEOplayer to control whether to enable or disable the transition animation when resizing the player. - Introduced
activeQualityBandwidth
property forMediaTrack
. This API can be used to get the current video track quality's bandwidth value. - Introduced
TrackUpdateEvent
event alongsideTrackEventTypes
. This event can be listened to through aMediaTrack
'saddEventListener
method.
π Issuesβ
- Fixed an issue where returning from picture-in-picture to the application when in the background would cause the player to pause.
- Fixed an issue where
PLAYING
andPAUSE
events would not fire during IMA ads when using the native picture-in-picture buttons. - Fixed an issue where seeking beyond the duration of an asset would not trigger an
ended
event, would keep incrementing the currentTime and block the viewer from restarting playout from scratch.
π 7.3.0 (2024/05/07)β
Webβ
π Issuesβ
- Fixed an issue where the player will stutter on playback when starting to Chromecast.
- Fixed an issue where the player would sometimes only enable audio when casting a DASH stream to Chromecast v2.
Androidβ
β¨ Featuresβ
- The Android SDK is now also published to
maven.theoplayer.com/releases
. - Added experimental support for setting a custom
Surface
to render the content into.
π Issuesβ
- Fixed an issue where content started playing behind the advertisement if IMA and DAI integrations were used simultaneously.
- Fixed an issue where no
ended
event is fired when reaching the end of a stream on a Chromecast receiver.
iOSβ
β¨ Featuresβ
- Added support for sideloaded text tracks on Chromecast.
π 7.2.0 (2024/04/23)β
Generalβ
β¨ Featuresβ
- Added support for setting a liveOffset for HLS live streams.
Webβ
β‘ Improvementsβ
- Added some improvements for handling of the license requests on Tizen 2.4.
π Issuesβ
- Fixed an issue in the HLS pipeline where the currentProgramDateTime would briefly return an incorrect value after switching qualities.
- Fixed an issue where sometimes the player would do an incorrect seek on WebOS 5.X.
Androidβ
β¨ Featuresβ
- Added support for sideloaded WebVTT TextTracks on Chromecast.
β‘ Improvementsβ
- Updated the Google IMA dependency from 3.32.0 to 3.33.0.
iOSβ
β¨ Featuresβ
- Added
TextTrack.forced
API to indicate whether the track contains Forced Narrative cues.
π 7.1.1 (2024/04/15)β
Generalβ
π Issuesβ
- Fixed an issue where setting preload to auto and autoplay would result in an endless spinner for HLS live streams.
Androidβ
π Issuesβ
- Fixed an issue where the player would crash when removing the Google IMA integration in response to the
ended
event.
iOSβ
π₯ Breaking Changesβ
- Increasing minimum IMA SDK supported version to 3.18.5.
π 7.1.0 (2024/04/10)β
Generalβ
β¨ Featuresβ
- Added the option to enable tracks immediately after the track is added for HLS streams.
Webβ
β¨ Featuresβ
- Added support for adaptation set switching.
π Issuesβ
- Fixed an issue where active tracks were not consistent between Chromecast sender and receiver.
- Fixed an issue where ABR would not work for some streams on Safari.
- Fixed an issue where the click-through button for Google DAI was not clickable on mobile devices.
Androidβ
β¨ Featuresβ
- Added support for adaptation set switching.
π Issuesβ
- Fixed an issue where stream is paused when starting casting.
- Fixed a rare issue where the player would periodically stall due to failing requests on certain networks.
- Fixed a memory leak where the player would unintentionally keep some segments in memory for long periods of time.
iOSβ
π Issuesβ
- Fixed an issue where calling
Ads.scheduledAdBreaks
with IMA/DAI integrations would return an empty list.
π 7.0.0 (2024/04/03)β
Officially announcing THEOplayer 7.0β
Introducing a major version bump to THEOplayer 7.0. This version officially releases all the improvements and developments THEOplayer has achieved since version 6.0.
THEOplayer 7.0 is backwards compatible for most features but includes some breaking changes per SDK. Please review them carefully in the respective changelog for your SDK.
-
Further improvements to accelerate monetization of your FAST/AVOD service by enabling seamless THEO Ads integration on Chromecast CAF (v3) receivers. (Currently available on Web)
-
A smaller and more efficient Android and iOS player thanks to refactorings and further modularization.
-
Added experimental support for using
ManagedMediaSource
in iOS Safari. This brings MPEG-DASH and HESP support to iOS, along with manual quality selection for HLS streams. (Requires iOS 17.1 or higher.) -
Added conformance to Apple's new privacy policy for API usage.
-
Performance optimizations to help our React Native and Flutter SDKs run smoothly on all devices.
Generalβ
π₯ Breaking Changesβ
- Changed the Chromecast default app ID on all platforms to our THEOplayer Chromecast CAF receiver with app ID
8E80B9CE
. If you prefer the previous default web behavior which uses our Chromecast V2 receiver, you can set theChromecastConfiguration.appID
to1ADD53F3
. For our Android and iOS SDKs, we officially only support Chromecast CAF receivers. If you prefer to use the default Google Chromecast CAF receiver instead, you can set the app ID toCC1AD845
. - In an effort to align with the changes made by Apple regarding the App Store publishing policy, starting from THEOplayer 7.0 we will distribute our SDK builds using Xcode 15. Effectively, this means that developing a client application using THEOplayer iOS/tvOS SDK will require a minimum version of Xcode 15.
π Issuesβ
- Fixed an issue where setting
liveOffset
on a DASH source would be ignored ifsuggestedPresentationDelay
was specified in the manifest.
Webβ
β¨ Featuresβ
- Added THEOlive support as a feature to THEOplayer.
Androidβ
π₯ Breaking Changesβ
- Removed unused
RequestCallback
interface. - Removed deprecated asynchronous
Player
APIs in favor of the respective synchronous ones. - Removed deprecated
GoogleImaIntegrationFactory#createGoogleImaIntegration
APIs. - Removed deprecated
GoogleDaiIntegrationFactory#createGoogleDaiIntegration
APIs. - Removed deprecated
CastIntegrationFactory#createCastIntegration
API. - Removed deprecated
THEOplayerSettings#isFullScreenOrientationCoupled()
in favor ofFullScreenManager#isFullScreenOrientationCoupled()
. - Removed deprecated
THEOplayerSettings#setFullscreenOrientation(@ScreenOrientation int)
in favor ofFullScreenManager#setFullscreenOrientation(@ScreenOrientation int)
. - Removed deprecated
THEOplayerSettings#getFullscreenOrientation()
in favor ofFullScreenManager#getFullscreenOrientation()
. - Removed deprecated
AdsConfiguration
. - Removed
THEOplayerGlobal#getSDKType()
API. - Align
LoadedDataEvent#getCurrentTime()
andWaitingEvent#getCurrentTime()
APIs with the rest of Events to returndouble
instead ofString
. - Applications using the Cache feature are now required to add
android.permission.FOREGROUND_SERVICE_DATA_SYNC
permission in their AndroidManifest.xml file. - Removed deprecated
THEOplayerView.getPlayerSuiteVersion()
andTHEOplayerGlobal.getPlayerSuiteVersion()
APIs. - Removed deprecated
MediaTailorSource.Builder
constructors. - Removed deprecated
SourceDescription.Builder#ads()
API. - Removed deprecated
KeySystemConfiguration.Builder#licenseType()
API.
β‘ Improvementsβ
- Updated the Gson dependency from 2.8.2 to 2.10.1.
- Updated the Google Chromecast dependency from 21.3.0 to 21.4.0.
- Updated the Google Mediarouter dependency from 1.2.6 to 1.7.0.
- Updated the Google IMA dependency from 3.31.0 to 3.32.0.
iOSβ
π₯ Breaking Changesβ
- Removed deprecated bitcode compilation support.
- Removed deprecated
THEOplayer.playerSuiteVersion
API. - Removed deprecated
THEOplayer.requestCurrentTime
API. - Removed deprecated
THEOplayer.requestVideoHeight
API. - Removed deprecated
THEOplayer.requestVideoWidth
API. - Removed deprecated
THEOplayer.requestCurrentProgramDateTime
API. - Removed deprecated
THEOplayer.requestBuffered
API. - Removed deprecated
THEOplayer.requestPlayed
API. - Removed deprecated
THEOplayer.requestMetrics
API. - Removed deprecated
THEOplayer.requestSeekable
API. - Removed deprecated
Ads.requestPlaying
API. - Removed deprecated
Ads.requestCurrentAds
API. - Removed deprecated
Ads.requestCurrentAdBreak
API. - Removed deprecated
Ads.requestScheduledAdBreaks
API. - Removed deprecated
Ads.requestScheduledAds
API. - Removed deprecated
GoogleDAI.requestSnapBack
API. - Removed deprecated
GoogleDAI.setSnapBack
API. - Removed deprecated Yospace related APIs.
- Removed deprecated
FullscreenEventTypes.ASPECT_RATIO_CHANGE
API. - Removed deprecated
Fullscreen.aspectRatio
&Fullscreen.setAspectRatio
APIs. - Removed deprecated Moat related APIs.
- Removed deprecated Agama related APIs.
- Removed deprecated Verizon Media related types.
- Removed deprecated
EventDispatcher
class. - Removed deprecated Conviva related types.
- Removed deprecated
AudioQuality
type. - Removed deprecated
chromeless
,cssPaths
,jsPaths
,jsPathsPre
,defaultCSS
,pictureInPicture
andanalytics
properties fromTHEOplayerConfiguration
. - Removed deprecated SpotX related types.
- Removed deprecated
analytics
property fromSourceDescription
andSourceDescription.init
. - Removed deprecated
AnalyticsDescription
andAnalyticsIntegration
types. - Removed deprecated
YouboraOptions
type. - Removed deprecated
THEOAdDescription
type. - Remove deprecated
addJavascriptMessageListener
,removeJavascriptMessageListener
andevaluateJavaScript
methods fromTHEOplayer
. - Removed deprecated
THEOplayer.related
property,RelatedContent
type, and all related RelatedContent types. - Removed deprecated VR related APIs.
tvOSβ
π₯ Breaking Changesβ
- Removed deprecated tvOS specific
THEOplayer
initializers. - Removed deprecated
MenuItem
andMenuLayoutConfigurator
types.
π 6.13.0 (2024/03/28)β
Webβ
β¨ Featuresβ
- For Google IMA, added the option to pass
uiElements
to the Google IMA SDK usingPlayerConfiguration.ads.googleIma.uiElements
.
π Issuesβ
- Fixed an issue on smart TVs where switching to or from an opus audio track could cause playback issues.
- Fixed an issue on Android devices where sometimes the gyroscope would not work immediately after playing a VR source inside an iframe.
π Deprecationsβ
- Deprecated
PlayerConfiguration.ads.showCountdown
in favor ofPlayerConfiguration.ads.googleIma.uiElements
.
Androidβ
π Issuesβ
- Fixed an issue where mediaTracks were not consistent between cast sender and receiver.
- Fixed an issue where
MediaTailorSource.Builder#src(String)
did not have all setters asTypedSource.Builder
has. - Fixed an issue where video playback was failing if network connection was too slow.
- Fixed an issue where the player would not cancel request if they took too long, for example after a big network drop.
π Deprecationsβ
- Deprecated setter in
MediaTailorSource.Builder#src(String)
for source URL in favor of Builder with a parameterMediaTailorSource.Builder#Builder(String)
- Deprecated
MediatailorSource.Builder()
default constructor in favor of constructor with a parameterMediaTailorSource.Builder#Builder(String)
- Deprecated unused
RequestCallback
interface. - Deprecated asynchronous
Player
APIs in favor of the respective synchronous ones. - Deprecated
CastIntegrationFactory.createCastIntegration(THEOplayerView)
API in favor ofCastIntegrationFactory.createCastIntegration(THEOplayerView, CastConfiguration)
. - Deprecated
THEOplayerSettings#setFullScreenOrientationCoupled(boolean)
in favor ofFullScreenManager#setFullScreenOrientationCoupled(boolean)
. - Deprecated
THEOplayerSettings#isFullScreenOrientationCoupled()
in favor ofFullScreenManager#isFullScreenOrientationCoupled()
. - Deprecated
THEOplayerSettings#setFullscreenOrientation(@ScreenOrientation int)
in favor ofFullScreenManager#setFullscreenOrientation(@ScreenOrientation int)
. - Deprecated
THEOplayerSettings#getFullscreenOrientation()
in favor ofFullScreenManager#getFullscreenOrientation()
. - Deprecated
AdsConfiguration
in favor of integration specific configuration.
iOSβ
β¨ Featuresβ
- Added conformance to Apple's new privacy policy for API usage.
π Deprecationsβ
- Deprecated
AnalyticsDescription
andAnalyticsIntegration
types. - Deprecated
setPreload
method in favor ofpreload
property setter. - Deprecated
setPlaybackRate
method in favor ofplaybackRate
property setter. - Deprecated Verizon Media related types.
- Deprecated
GoogleIMAAdsConfiguration
&GoogleIMAConfigurationBuilder
. Configuration for Google IMA is moved toTHEOplayerGoogleIMAIntegration
. - Deprecated
PiPConfiguration.init
methods in favor ofPiPConfigurationBuilder
. ThenativePictureInPicture
property inPiPConfigurationBuilder
defaults totrue
. - Deprecated obsolete
EventDispatcher
class. - Deprecated Conviva related types. Conviva feature has moved to
THEOplayer-Connector-Conviva
. - Deprecated
AudioQuality
type. - Deprecated
UIConfiguration
type. - Deprecated
AdsConfiguration
type. - Deprecated
THEOplayerConfiguration.init
methods in favor ofTHEOplayerConfigurationBuilder
. - Deprecated
chromeless
,ads
,ui
,cssPaths
,jsPaths
,jsPathsPre
,defaultCSS
,pictureInPicture
,analytics
andcast
properties fromTHEOplayerConfiguration
. - Deprecated SpotX related types.
- Deprecated
THEOplayerCastHelper
in favor ofTHEOplayerGoogleCastIntegration.CastIntegrationHelper
. - Deprecated
GoogleDAIAdsConfiguration
&GoogleDAIAdsConfigurationBuilder
. Configuration for Google DAI is moved toTHEOplayerGoogleIMAIntegration
. - Deprecated
analytics
property fromSourceDescription
andSourceDescription.init
. - Deprecated
vr
property fromSourceDescription
andSourceDescription.init
, andVRConfiguration
type. - Deprecated
THEOplayer.related
property,RelatedContent
type, and all related RelatedContent types. - Deprecated
addJavascriptMessageListener
,removeJavascriptMessageListener
andevaluateJavaScript
methods fromTHEOplayer
. - Deprecated
THEOAdDescription
type. - Deprecated
YouboraOptions
type. - Deprecated
AdPreloadType
type.
tvOSβ
π Deprecationsβ
- Deprecated tvOS specific
THEOplayer
initializers. Moving forward, iOS and tvOSTHEOplayer
initializers are unified. - Deprecated
MenuItem
andMenuLayoutConfigurator
types.
π 6.12.1 (2024/03/18)β
Androidβ
π Issuesβ
- Fixed an issue where AdError object was not dispatched in case of AdErrorEvent in DAI.
iOSβ
π Issuesβ
- Fixed an issue where THEOplayerGoogleIMAIntegration reported compatibility issues during build time.
π 6.12.0 (2024/03/12)β
Generalβ
β‘ Improvementsβ
- Improved the behaviour of the player when segments in a DASH stream are unavailable by marking the missing data as a gap.
π Issuesβ
- Fixed an issue where the player sometimes would download the wrong segment after a hard discontinuity switch.
Webβ
β¨ Featuresβ
- Added the option to localize the Google-IMA integration when using a
ChromelessPlayer
usingPlayerConfiguration.ads.googleIma.language
. Previously this was only possible usingPlayerConfiguration.ui.language
.
π Issuesβ
- Fixed non-linear ads not showing.
- Fixed an issue where the player could error with an out-of-bounds exception during the parsing of TextTrack cues.
- Fixed an issue where the player would download HLS renditions and segments twice on certain streams containing combined audio/video segments.
- Fixed an issue where Fairplay protected streams would not play on iOS 17.1+ devices when useManagedMediaSource was enabled.
Androidβ
π Issuesβ
- Fixed an issue where on audio-only HLS streams, the play() function needed to be called twice to initiate playback.
- Fixed an issue where a crash occurred sometimes while accessing
player.metrics.getCurrentBandwidthEstimate()
. - Fixed an issue where MP3 streaming playback was broken.
- Fixed a bug where sometimes last video frame was not cleared after calling
stop()
or source set tonull
. - Fixed an issue where the content of an EMSG metadata cue was not correctly formatted.
iOSβ
β¨ Featuresβ
- Make
THEOplayer.videoRect
property observable. - Introduce
AVPictureInPictureControllerDelegateExtended
protocol to help monitor changes toisPictureInPicturePossible
. - Introduced
GoogleImaAdErrorEvent
inTHEOplayerGoogleIMAIntegration
. It can be cast fromAdErrorEvent
returned by the event listener of typeAdsEventTypes.AD_ERROR
.
π Issuesβ
- Fixed an issue caused by IMASettings, where IMA ads would be incorrectly unmuted.
- Added support for MP3 playback.
π 6.11.0 (2024/02/27)β
Webβ
π Issuesβ
- Fixed an issue where VMAPs would not be scheduled in the Google IMA intergration if
player.currentTime
was set before initial playback. - Fixed an issue where the browser tab could hang when removing the player from the DOM without calling
player.destroy()
, while the player is rendering WebVTT subtitles. - Fixed a CSS issue where the control bar could sometimes have a very small vertical overflow, which could lead to unwanted scrollbars when the player is embedded in an
<iframe>
. - Fixed an issue where very old browsers could not play using MSE.
Androidβ
β¨ Featuresβ
- Added side-loaded WEBVTT text track support for progressive MP4 assets.
iOSβ
β¨ Featuresβ
- Added side-loaded WEBVTT text track support for progressive MP4 assets.
- Added
NetworkConfiguration
toTHEOplayerConfiguration
. This allows to configure the user agent header for network requests executed by THEOplayer. - Added
NetworkConfiguration
toCachingParameters
. This allows to configure the user agent header for network requests executed by the caching task.
π Issuesβ
- Fixed an issue where streaming through a chromecast receiver would not dispatch a durationChange event after loading a source.
- Fixed an issue where setting a new source on iOS during a chromecast session, would start playout for that source on the startTime of the previously casted source.
π 6.10.1 (2024/02/20)β
Webβ
β‘ Improvementsβ
- Improved the downloading behavior for DASH segments on bad network.
π 6.10.0 (2024/02/13)β
Webβ
β¨ Featuresβ
- Added
BaseSource.seamlessSwitchStrategy
to configure the player's decision to switch seamlessly on a discontinuity for HLS or a period on DASH. This replaces theDashPlaybackConfiguration.useSeamlessPeriodSwitch
for DASH.
π Issuesβ
- Fixed an issue for HLS streams where the fallback logic didn't start if there was a backup rendition with the same bandwidth.
- Fixed an issue where the player with the combination of preloading metadata and autoplay would create the audio tracks twice.
- Fixed an issue where WebVTT cues with the same
line
attribute but different start times would be rendered in the wrong order. - Fixed an issue where WebVTT cues would sometimes be rendered with an extra empty line in between.
- Fixed an issue where some webOS devices could run out of memory when rapidly resetting an HLS source containing MPEG-TS.
- Fixed an issue where our TypeScript types were using a newer DOM type (
VideoFrameCallbackMetadata
) that is missing in older versions of TypeScript, causing compatibility issues.
π Deprecationsβ
- Deprecated
DashPlaybackConfiguration.useSeamlessPeriodSwitch
in favor ofBaseSource.seamlessSwitchStrategy
.
Androidβ
β¨ Featuresβ
- Exposed ImaSdkSettings in GoogleImaIntegration
π Issuesβ
- Fixed an issue where sometimes Google IMA VMAP midrolls wouldn't play.
π Deprecationsβ
- Deprecated the usage of UIConfiguration for setting IMA and DAI language settings. Use the ImaSdkSettings object for language configuration instead.
iOSβ
β¨ Featuresβ
- Dispatch
AdTappedEvent
fromTHEOplayerGoogleIMAIntegration
. - Add
IMASettings
as a parameter to theGoogleIMAIntegrationFactory.createIntegration
API. This allows IMA SDK wide settings to be configured. - Introduced a
videoRect
property toTHEOplayer
API which returns the size and position of the video image as displayed within the player's bounds. - Introduced an
aspectRatio
property toTHEOplayer
API which gets and sets the player'sAspectRatio
. - Introduced a new player event type
PlayerEventTypes.ASPECT_RATIO_CHANGE
which dispatches anAspectRatioChangeEvent
when the player's aspect ratio changes.
π Issuesβ
- Fixed issues where redundant durationchange events were fired when IMA and DAI ads began/ended.
π Deprecationsβ
- Deprecated the getter property
Fullscreen.aspectRatio
in favor of the getter propertyTHEOplayer.aspectRatio
. - Deprecated the setter method
Fullscreen.setAspectRatio
in favor of the setter propertyTHEOplayer.aspectRatio
. - Deprecated the event type
FullscreenEventTypes.ASPECT_RATIO_CHANGE
in favor of the event typePlayerEventTypes.ASPECT_RATIO_CHANGE
.
π 6.9.0 (2024/01/30)β
Generalβ
π Issuesβ
- Fixed an issue where an alternative rendition in an HLS manifest with the same URI but a different groupID as another rendition is omitted.
Webβ
β¨ Featuresβ
- Added
SourceDescription.streamType
to hint the player in advance whether the source is a VOD, live or DVR stream. This is required for live and DVR streams when casting to Chromecast, in order for the receiver to show the correct UI. - Added support for casting Google IMA ads to Chromecast.
- Added support for
player.ads.currentAds
,.currentAdBreak
,.scheduledAds
and.scheduledAdBreaks
when using the Google IMA integration.
π Issuesβ
- Fixed an issue where pausing and then playing within a Google IMA ad would sometimes prematurely end the entire ad break.
- Fixed an issue for VR where requesting device motion permissions on iOS devices would not immediately allow the gyroscope to work.
- Fixed an issue with Google IMA where changing a source containing a VMAP with at least a postroll ad could incorrectly schedule the ads of the new source.
Androidβ
β¨ Featuresβ
- Added support for clickthrough ad functionality in the MediaTailorTrackingEvent, allowing to fetch clickthrough and clicktracking URLs from MediaTailor ads
π Issuesβ
- Fixed an issue where changing the device orientation from landscape to reverse landscape before the player loads would result in a black screen
- Fixed an issue where the player would return an empty seekable for an mp4 source while seeking.
iOSβ
β¨ Featuresβ
- Add subspecs to IMA and GoogleCast THEOplayer integrations distributed on Cocoapods.
Base
subspec (e.g.pod THEOplayer-Integration-GoogleIMA/Base
) fetches the integration without the SDK dependency, meanwhile theDependencies
(e.g.pod THEOplayer-Integration-GoogleIMA/Dependencies
) subspec defines the SDK dependencies. No changes are required for Podfiles where the dependency needs to be fetched.
π Issuesβ
- Fixed an issue where enabling an audio track would result in no audible output.
- Fixed an issue where setting the abr configurations before setting the player source would fail
π 6.8.1 (2024/01/25)β
Generalβ
π Issuesβ
- Fixed an issue where the player could stall indefinitely at an HLS discontinuity when the discontinuity was improperly aligned across audio and video renditions.
π 6.8.0 (2024/01/15)β
Generalβ
π Issuesβ
- Fixed an issue where the paused state would be incorrect for a brief amount of time when calling play in quick succession after setSource on autoplaying HESP streams resulting in a non-dissapearing big play button on the UI.
Webβ
β¨ Featuresβ
- Added support for client-side advertisements when casting to Chromecast.
- This first release supports linear VAST ads using the THEO Ads integration. (Server-side ads, non-linear ads, VMAP ads, or ads using the Google IMA integration are not yet supported.)
- Scheduling additional ads while casting using
player.ads.schedule()
is not supported. - The Chromecast receiver must be based on the Chromecast CAF v3 SDK, such as Styled Media Receivers, the Default Media Receiver, or any Custom Receiver built with the THEOplayer Chromecast CAF SDK. (Receivers based on the Cast Receiver v2 SDK are not supported.)
- Exposed the HLS SCORE attribute through the Quality API.
- Added the option for HLS streams to clear existing buffer when setting
MediaTrack.targetQuality
. This can be turned on withplayer.abr.clearBufferWhenSettingTargetQuality
.
β‘ Improvementsβ
- Improved the behavior of
player.videoWidth
andplayer.videoHeight
at startup. When the player has not yet buffered the first segment of the stream, it will now fall back to the resolution information from the HLS multivariant playlist or the DASH MPD, rather than always returning0
.
π Issuesβ
- Added a workaround for a Safari issue where using the previous/next page buttons could cause the player to error.
- Fixed an issue where
videoWidth
andvideoHeight
were always0
while playing a linear ad. - Fixed an issue with HLS streams where the Quality API would always report a value for
averageBandwidth
, even when it was not provided by the HLS variant stream. - Fixed an issue where sometimes the player would continuously redownload the same segments after switching to a different quality.
- Fixed an issue where the player failed to parse WebM media.
- Fixed an issue where the poster image briefly flashes on the sender when switching sources while casting to Chromecast.
- Fixed an issue for DASH live streams where seeking to live could ignore the presentation delay.
Androidβ
β¨ Featuresβ
- Added
DecoderSelectionHelper#isRepresentationSupported
API to enable filtering qualities from tracks. - Added support for setting
startTime
and/orendTime
on aTextTrackCue
.
π Issuesβ
- Fixed an issue where targeting Android 14 devices would cause a crash when using the cache API.
- Fixed an issue where the audio/video was stuttering on low end devices.
π 6.7.0 (2023/12/21)β
Webβ
β‘ Improvementsβ
- Improved the
player.ads
API when using the THEO Ads system. Previously, properties such asplayer.ads.currentAdBreak
orplayer.ads.scheduledAds
would return new objects for eachAd
andAdBreak
on every access. Now, they always return the same object.
π Issuesβ
- Fixed an issue where the remaining time of the Google DAI ads would not be updated sequentially.
- Fixed an issue where the player would play some ad content twice when seeking into a Google DAI ad.
- Fixed an issue where extra properties in
SourceDescription.metadata
were not correctly sent to the Chromecast receiver when casting. - Fixed an issue where the player keeps downloading the initial rendition besides the active rendition after a quality switch.
- Fixed an issue where the player sometimes would download the same segments after a quality switch.
- Fixed an issue where setting
preload
tometadata
when the player already has loaded metadata would result in creating the same media tracks twice. - Fixed an issue where sometimes a
playing
event would not be dispatched when play-out resumes after awaiting
event. - Fixed an issue on EOS boxes where the player would loop the first few seconds of a stream multiple times.
Androidβ
β‘ Improvementsβ
- Updated the Google IMA dependency from 3.25.1 to 3.31.0.
π Deprecationsβ
- Deprecated wrongly named
KeySystemConfiguration.Builder#licenseType(byte[] certificate)
method in favor ofKeySystemConfiguration.Builder#certificate(byte[] certificate)
.
π 6.6.1 (2023/12/15)β
Webβ
π Issuesβ
- Fixed a regression where Google IMA ads were not showing correctly when playing on iOS with
allowNativeFullscreen = true
.
π 6.6.0 (2023/12/05)β
Generalβ
β‘ Improvementsβ
- Improved the latency estimation for HESP streams.
Webβ
β‘ Improvementsβ
- Simplified the experimental
player.hesp.latencies
api. - Added conversion of standard base64 encoded Clearkey license responses to base64url encoded Clearkey license responses.
π Issuesβ
- Fixed an issue where the DASH track with a main role would not be selected as initial active track.
- Fixed a player crash when the WebAssembly-based transmux worker is blocked by the page's Content Security Policy. In that case, the player will now attempt to fall back to a (slower) asm.js-based worker.
- Fixed chapter markers not working for HLS streams.
- Fixed an issue where device motion controls would be disabled when setting stereo to false for VR content.
- Fixed
player.seekable
not being set while casting to a default (non-THEOplayer) Chromecast CAF receiver.
Androidβ
β‘ Improvementsβ
- Updated the Google Chromecast dependency from 21.0.1 to 21.3.0.
π Issuesβ
- Fixed an issue where ABR settings were lost after setting a source.
- Fixed an issue where targeting Android 14 devices would cause a crash because of attempting to load writable dex.
- Fixed an issue where the player would trigger "The license for this player is invalid" error on some devices.
iOSβ
β¨ Featuresβ
- Extended the VolumeChangeEvent to include the device volume.
π Issuesβ
- Fixed an issue where providing the offset value for an AdDescription as a Timecode string (HH:mm:ss.SSS) was not supported.
- Fixed an issue where the volume value in a VolumeChangeEvent would be incorrect.
Chromecastβ
β¨ Featuresβ
- Added support for
MediaStatus.liveSeekableRange
when playing a live stream.
π 6.5.0 (2023/11/27)β
Generalβ
π Issuesβ
- Fixed an issue where the player crashed when parsing a non-compliant MPEG-TS segment that has an ID3 tag at the start of the file.
- Fixed a playback issue in HLS if the last segment of a combined audio/video playlist would suddenly contain only audio or video.
Webβ
β¨ Featuresβ
- Added support for cross-codec ABR in HLS.
- Add support for setting
startTime
and/orendTime
on aTextTrackCue
. - Added
requestVideoFrameCallback
andcancelVideoFrameCallback
toplayer.canvas
. - Added MultiView to the @theoplayer/extended npm package.
- Added the option to override the detected
DATA_CONNECTION_TYPE
for the Agama integration.
β‘ Improvementsβ
- Improved the localization of some aria-labels and menu items for the player UI.
π Issuesβ
- Fixed an issue where no
volumechange
event was fired when the player needed to be muted to allow autoplay. - Fixed a regression where the
dimensionchange
event was no longer dispatched on the player. - Fixed an issue where the player might schedule only one ad when multiple Google IMA ads with the same timeOffset were scheduled after each other via
player.ads.schedule
. - Fixed an issue in the HLS pipeline where the player could stall indefinitely after a quality switch if the given codecs were incorrect.
- Fixed an issue where the current time of the MultiViewPlayer could remain zero.
- Fixed an issue where the player would not recover from a temporary network disconnection on Tizen.
- Fixed an issue where HLS date range cues would not have an updated endDate if
endOnNext
istrue
.
Androidβ
β¨ Featuresβ
- Added support for HLS date range metadata text track cues.
- Added
getTrack
methods toTextTrackEventTypes.ENTERCUE
andTextTrackEventTypes.EXITCUE
.
π Issuesβ
- Fixed an issue where the player would sometimes crash when being destroyed during play-out.
- Fixed an issue where the player would sometimes crash when stopping casting a progressive mp4 asset.
- Fixed an issue where switching audiotracks from canplay events broke playback.
iOSβ
π Issuesβ
- Fixed an issue where license check would fail when multiple sources are present.
- Fixed an issue where DateRangCues were never activated.
π 6.4.0 (2023/11/08)β
Generalβ
π Issuesβ
- Align the custom data across SDKs while sending a loading request to Chromecast.
Webβ
β¨ Featuresβ
- Added the option to override the detected
DEVICE_TYPE
for the Agama integration.
β‘ Improvementsβ
- Added MultiViewPlayer constructor to the docs.
π Issuesβ
- Fixed an issue where the player's play/pause state would be incorrect after pausing playback when between two ads.
- Fixed an issue where the activeView measurements for Google DAI were wrong.
Androidβ
π Issuesβ
- Fixed an issue where the player would sometimes crash when stopping to cast an mp4 asset.
π 6.3.0 (2023/10/26)β
Generalβ
π Issuesβ
- Fixed an issue where a HLS stream with a combined audio & video rendition would stop buffering after switching to an alternative audio rendition and back.
- Fixed an issue where the player would stall indefinitely when encountering an MPEG-TS segment containing an AAC audio frame that overlaps with the previous frame.
Webβ
β‘ Improvementsβ
- Allow
source.abr.restrictToPlayerSize
to override whether the ABR algorithm on smart TVs should only select qualities whose resolution fits within the device's display resolution.
π Issuesβ
- Fixed an uncaught
AbortError
promise rejection when switching from an HESP source to a non-HESP source. - Fixed an issue were companion ads in the THEO ad integration were no longer available.
- Added a workaround for an issue in Edge Chromium where
SourceBuffer.changeType
is not working correctly for PlayReady streams.
Androidβ
π Issuesβ
- Fixed an issue where the player would not dispatch a
playing
event when initiating IMA ad play-out.
π 6.2.1 (2023/10/17)β
Generalβ
π Issuesβ
- Fixed an issue where a HLS stream with a combined audio & video rendition would stop buffering after switching to an alternative audio rendition and back.
π 6.2.0 (2023/10/16)β
Webβ
β¨ Featuresβ
- Added experimental support for using
ManagedMediaSource
in Safari. This requiresBaseSource.useManagedMediaSource
to be set totrue
, and requires iOS 17.1 beta 2 or higher with the "Managed Media Source API" feature flag turned on in the Advanced settings of Safari.
π Issuesβ
- Fixed an issue where the player would endlessly download the first segment of an HLS subtitle rendition if that rendition's playlist starts after the audio or video playlist during a live stream.
- HLS with Clear Key DRM will now work on desktop Safari when the
SourceConfiguration.contentProtection
contains an emptyClearkeyKeySystemConfiguration
. - Fixed an issue in MPEG-DASH streams where a big unexpected drop in network bandwidth would not be detected when the browser does not support streaming fetch.
- Fixed an issue with HLS where the reported Program Date Time would be incorrect if the playlist contains a discontinuity where the Program Date Time jumps in time.
Androidβ
π Issuesβ
- Fixed an issue where accessing
MediaTrack.getQualities().getItem()
would always throw aNullPointerException
while playing a static MP4 video. - Fixed
CachingTaskList.getItem()
incorrectly throwingNoSuchElementException
(instead ofIndexOutOfBoundsException
) when the index is out of bounds. - Fixed an issue where HLS streams with AES-128 encryption would not play.
iOSβ
π Issuesβ
- Fixed an issue where CPU performance would decline when using Picture-in-Picture or AirPlay.
π 6.1.1 (2023/10/11)β
iOSβ
π Issuesβ
- Fixed an issue where the player would crash when calling the destroy method after an ad break.
π 6.1.0 (2023/10/02)β
Webβ
β‘ Improvementsβ
- Optimized the Canvas API when called on every frame.
π Issuesβ
- Fixed an issue for HLS where webvtt files starting with a byte order mark would cause a parsing error.
- Fixed an issue where a DASH stream could error with an unspecified error when playback falls outside the seekable range.
- Fixed an issue in MPEG-DASH streams where downloading a segment would not timeout if it takes much longer than the segment duration to download.
- Fixed an issue in MPEG-DASH streams where a big unexpected drop in network bandwidth would not be detected.
- Fixed a compatibility issue with Webpack where THEOplayer fails to load when building in production mode.
- Fixed an issue where no
adbreakbegin
and noadbegin
event would fire for anAdBreak
following a non-linearAdBreak
.
Androidβ
π Issuesβ
- Fixed an issue where line breaks on a cue were not handled correctly on sideloaded SRTs
iOSβ
β‘ Improvementsβ
- Improved text track active cues processing when endTime is infinite.
π Issuesβ
- Fixed an issue where the Chromecast integration would not play when connecting through the default Cast button.
π 6.0.0 (2023/09/13)β
Officially announcing THEOplayer 6.0β
Introducing a major version bump to THEOplayer 6.0. This version officially releases all the improvements and developments THEOplayer has achieved since version 5.0.
THEOplayer 6.0 is backwards compatible for most features but includes some breaking changes per SDK. Please review them carefully in the respective changelog for your SDK.
-
Further improvements to accelerate monetization of your FAST/AVOD service, including new ad connectors and advertisement capabilities in our Open Video UI.
-
A smaller and more efficient web player thanks to ESM modules.
-
Updated analytics connectors to ensure you are seeing whatβs happening.
-
Increased performance through new features, optimizations of our analytics connectors and further reductions in startup time.
The Legacy (WebView-based) Android and iOS SDKs are officially reaching end of life. No further fixes will be provided for those SDKs (previously included in THEOplayer 4.12.x hotfixes). Please contact our support if you have further questions or follow our migrations guides on the THEOportal pages.
Webβ
π₯ Breaking Changesβ
import { Player } from 'theoplayer'
now results in a JavaScript module using ES2017 syntax, which won't work when loaded inside older browsers (such as old smart TVs). If you still need to support such older browsers, you can import the old JavaScript file directly withimport { Player } from 'theoplayer/THEOplayer.js'
.- The player will now start playback at a medium bitrate quality (up to 2.5 Mbps) instead of the lowest bitrate quality, if it doesn't yet have a network speed estimate from a prior playback session. This can be overridden by setting
player.abr.strategy
(documentation). - Removed
source.hls.useLegacy
. The legacy HLS pipeline has been removed, all HLS streams will now use the new HLS pipeline.
β¨ Featuresβ
- Added support for importing THEOplayer as a JavaScript module ("ESM").
- Added
THEOplayer.esm.js
andTHEOplayer.chromeless.esm.js
.- These provide the THEOplayer API using
export
statements instead of using a globalTHEOplayer
variable. This makes them appropriate to use with modern bundlers that consume ESM, such as webpack, Rollup or esbuild. They can also be used directly in modern browsers using<script type="module">
. - These versions use ES2017 syntax (rather than ES5 syntax), targeting more modern browsers. This results in smaller and faster code, by using more of the native JavaScript features provided by the browser itself.
- These provide the THEOplayer API using
- Added an
exports
field topackage.json
on npm. These define subpath exports for the chromeless player and the UI player, supporting both CommonJS and ESM.import { Player } from 'theoplayer'
: imports the UI player.import { ChromelessPlayer } from 'theoplayer/chromeless'
: imports the chromeless player only. This is intended to replace explicit imports fortheoplayer/THEOplayer.chromeless
.
- If you use TypeScript in your project, we recommend setting
moduleResolution
tobundler
,node16
ornodenext
in yourtsconfig.json
to correctly resolve these subpath exports.
- Added
π Issuesβ
- Fixed an issue where characters from CEA-608 closed captions could be shown too early.
- Fixes an issue with CEA-608 closed captions where seeking could cause overlapping cues.
π Deprecationsβ
- Deprecated
THEOplayer.playerSuiteVersion
. UseTHEOplayer.version
instead.
Androidβ
π₯ Breaking Changesβ
- Removed deprecated
THEOplayerConfig#isChromeless()
. - Removed deprecated
THEOplayerConfig#defaultCss()
. - Removed deprecated
THEOplayerConfig#getCssPaths()
. - Removed deprecated
THEOplayerConfig#getJsPaths()
. - Removed deprecated
THEOplayerConfig#getJsPathsPre()
. - Removed deprecated
THEOplayerConfig.Builder#defaultCss(boolean)
. - Removed deprecated
THEOplayerConfig.Builder#cssPaths(String...)
. - Removed deprecated
THEOplayerConfig.Builder#jsPaths(String...)
. - Removed deprecated
THEOplayerConfig.Builder#jsPathsPre(String...)
. - Removed deprecated
THEOplayerConfig.Builder#chromeless(boolean)
. - Removed deprecated
THEOplayerConfig#isGoogleIma()
. - Removed deprecated
GoogleImaConfiguration
class. - Removed deprecated
AdsConfiguration#googleIma()
in favor ofGoogleImaIntegration
. - Removed deprecated
AdsConfiguration.Builder#googleIma(GoogleImaConfiguration)
. - Removed deprecated
TypedSource.Builder#setNativeRenderingEnabled(boolean)
. - Removed deprecated
TypedSource.Builder#setNativeUiRenderingEnabled(boolean)
. - Removed deprecated
TypedSource.Builder#isNativeRenderingEnabled()
. - Removed deprecated
TypedSource.Builder#isNativeUiRenderingEnabled()
. - Removed deprecated
VerizonMediaSource#getParameters()
in favor ofVerizonMediaSource#getPreplayParameters()
. - Removed deprecated
VerizonMediaSource.Builder#parameters(Map<String, String>)
in favor ofVerizonMediaSource.Builder#preplayParameters(Map<String, String>)
. - Removed deprecated
THEOplayerGlobal#getWebViewSettings()
. - Removed deprecated
THEOplayerView#addJavaScriptMessageListener(String, MessageListener)
. - Removed deprecated
THEOplayerView#evaluateJavaScript(String, ValueCallback)
. - Removed deprecated
THEOplayerView#removeJavaScriptMessageListener(String, MessageListener)
. - Removed deprecated
MessageListener
interface. - Removed deprecated
MediaTrack#setTargetQualities(QualityList)
in favor ofMediaTrack#setTargetQualities(List)
. - Removed deprecated
Player#getVR()
API. - Removed deprecated
Player#getYospace()
API. - Removed deprecated
Player#getVerizonMedia()
API. - Removed unsupported Verizon Media classes.
- Removed unsupported Agama classes.
- Removed unsupported SpotX classes.
- Removed unsupported Conviva classes.
- Removed unsupported Moat classes.
- Removed unsupported Youbora classes.
- Removed unsupported Yospace classes.
- Removed unsupported THEO ads classes.
- Removed unsupported VR classes.
π Deprecationsβ
- Deprecated
THEOplayerGlobal.getPlayerSuiteVersion()
andTHEOplayerView.getPlayerSuiteVersion()
. UsegetVersion()
instead. - Deprecated
THEOplayerConfig.Builder()#ads(AdsConfiguration)
in favor of using advertisement integrations to configure advertisements. - Deprecated
THEOplayerConfig.Builder()#castStrategy(CastStrategy)
in favor of using integrations to configure casting. - Deprecated
SourceDescription.Builder#ads(String...)
in favor ofSourceDescription.Builder#ads(AdDescription...)
.
iOSβ
π₯ Breaking Changesβ
- Removed deprecated
ContentProtectionIntegration.extractFairplayContentId
in favor ofContentProtectionIntegration.onExtractFairplayContentId
. - Removed deprecated
GoogleIMAConfigurationBuilder.useNativeIMA
andGoogleIMAAdsConfiguration.useNativeIma
properties.
β¨ Featuresβ
- Added synchronous player APIs:
currentTime
,currentProgramDateTime
,buffered
,played
,seekable
,metrics
,videoHeight
andvideoWidth
. - Added synchronous ads APIs:
playing
,currentAds
,currentAdBreak
,scheduledAdBreaks
andscheduledAds
. - Added synchronous DAI API:
snapback
.
π Deprecationsβ
- Deprecated
THEOplayer.playerSuiteVersion
. UseTHEOplayer.version
instead. - Deprecated
Ads.requestPlaying
in favor ofAds.playing
. - Deprecated
Ads.requestCurrentAds
in favor ofAds.currentAds
. - Deprecated
Ads.requestCurrentAdBreak
in favor ofAds.currentAdBreak
. - Deprecated
Ads.requestScheduledAdBreaks
in favor ofAds.scheduledAdBreaks
. - Deprecated
Ads.requestScheduledAds
in favor ofAds.scheduledAds
. - Deprecated
GoogleDAI.requestSnapBack
in favor ofGoogleDAI.snapback
. - Deprecated
GoogleDAI.setSnapBack
in favor ofGoogleDAI.snapback
. - Deprecated
THEOplayer.requestCurrentTime
in favor ofTHEOplayer.currentTime
. - Deprecated
THEOplayer.requestVideoHeight
in favor ofTHEOplayer.videoHeight
. - Deprecated
THEOplayer.requestVideoWidth
in favor ofTHEOplayer.videoWidth
. - Deprecated
THEOplayer.requestCurrentProgramDateTime
in favor ofTHEOplayer.currentProgramDateTime
. - Deprecated
THEOplayer.requestBuffered
in favor ofTHEOplayer.buffered
. - Deprecated
THEOplayer.requestPlayed
in favor ofTHEOplayer.played
. - Deprecated
THEOplayer.requestMetrics
in favor ofTHEOplayer.metrics
. - Deprecated
THEOplayer.requestSeekable
in favor ofTHEOplayer.seekable
.
π 5.11.0 (2023/09/11)β
Generalβ
π Issuesβ
- Fixed an issue where the player wouldn't recover from a reset of the HLS stream that contains program date time.
- Fixed an issue where older players were no longer compatible with our Chromcast SDK.
- Fixed a crash when encountering an MPEG-TS segment containing an incomplete PES packet during HLS playback.
Webβ
β¨ Featuresβ
- Added the possibility of selecting audio from a different view than the main view when using the Multiview player.
- Added support for Apollo set-top boxes.
π Issuesβ
- Fixed an issue in the Multiview player where offsets weren't properly taken into account when the main view already had an offset.
- Fixed an issue where the Google IMA integration was not dispatching
ReadyStateChangeEvent
s.
Androidβ
β¨ Featuresβ
- Added the ability to intercept network requests.
π Issuesβ
- Fixed an issue where OMID API was not available for IMA integrations
- Fixed an issue where EC-3 and AC-3 audio tracks for DRM video were parsed using wrong decoder
π 5.10.0 (2023/09/01)β
Generalβ
π Issuesβ
- Fixed an issue where older players were no longer compatible with our Chromecast SDK.
Webβ
π Issuesβ
- Fixed an issue that could cause the player to redownload the same segment multiple times during HLS playback.
Androidβ
β¨ Featuresβ
- Added
totalVideoFrames
property to the metrics API. - Added
PlaybackSettings#getDecoderName()
API to retrieve the decoder name for a specified media.
π Issuesβ
- Fixed an issue where creating a
CachingTask
instance through the Media Cache API would crash the player.
iOSβ
π Issuesβ
- Fixed an issue where failing IMA ads would stall the player.
- Fixed an issue where MP4 source playback was failing.
- Fixed an issue where scheduled IMA ad breaks timeoffset would be 0.
- Fixed an issue where playback duration and currentTime values would be incorrect post ad.
- Fixed an issue where content protected streams with keys specified outside of master playlist would fail.
- Fixed an issue where playback was broken when restoring a
CachingTask
. - Fixed a memory issue caused by the IMA integration.
π 5.9.1 (2023/08/24)β
Webβ
π Issuesβ
- Fixed an issue for HLS streams where the codec strings could cause buffering issues when switching renditions.
Androidβ
π Issuesβ
- Fixed an issue where closing the Picture-in-Picture window did not pause playback when an application was in the background and background playback was not allowed.
π 5.9.0 (2023/08/22)β
Generalβ
β‘ Improvementsβ
- Improved support for HLS with clear key SAMPLE-AES.
- Improved the initial load time of HLS streams.
π Issuesβ
- Fixed an issue where ID3 tags containing padding bytes were not correctly handled.
Webβ
β¨ Featuresβ
- Added
BaseSource.ignoreEmbeddedTextTrackTypes
to ignore embedded text tracks that would otherwise always be parsed by the player. - Added
AgamaPlayerConfiguration.deviceOs
andAgamaPlayerConfiguration.deviceOsVersion
.
β‘ Improvementsβ
- Improved the recovery mechanism for HLS streams when the currentTime falls outside the seekable range (e.g. due to a bad network).
- The player will no longer dispatch a
waiting
event during the initial load (until the firstcanplay
orplaying
event). This should make it easier to distinguish between an "expected" buffering time at the start, and an "unexpected" re-buffering event during playback. To detect when the player starts its initial load, we recommend using either the firstplay
orloadstart
event. - The player will no longer dispatch unnecessary
play
,pause
,seeking
and/orratechange
events when switching between content and advertisements.
π Issuesβ
- Fixed an issue with THEO ads where changing the
muted
andvolume
properties during an Ad would not persist across other Ads in the same AdBreak. - Fixed an issue in THEO ads where a VAST ad with an error could cause the player to be stuck.
- Fixed an issue where the Google DAI click through link doesn't open when pressing enter using the Chromeless player.
- Fixed an issue where AirPlay didn't work on iOS devices.
Androidβ
β¨ Featuresβ
- Customizable notifications for downloading media. Check the documentation on how to customise notifications
π Issuesβ
- Fixed an issue on Android where querying the
timeOffset
property of a Google IMA adbreak would return an incorrect value. - Fixed a typing issue of
CachingTaskErrorEvent
that would prevent the ability to listen for CachingTask errors. - Fixed an issue where a
CachingTaskStateChangeEvent
event with statusevicted
would be dispatched after removing a CachingTask. - Fixed an issue with package obfuscation that resulted in build failures when both THEOPlayer and a library with the same package retention problem were present in the project.
- Fixed an issue where video segments were not downloading in parallel during caching.
- Fixed an issue where the player would sometimes crash while creating and destroying multiple player instances.
iOSβ
β¨ Featuresβ
- Added support for SRT formatted text tracks through sideloaded subtitles connector.
π Issuesβ
- Fixed an issue where player would stall indefinitely on startup when autoplay is set.
- Fixed an issue where native picture-in-picture mode would not be retained after a source change.
- Fixed an issue where failing IMA ads would stall the player.
π 5.8.0 (2023/08/02)β
Generalβ
β‘ Improvementsβ
- Improved the handling of small gaps in the player's buffer. The player will now jump over such gaps without firing
seeking
orwaiting
events, which avoids showing a loading spinner for a short time during playback. - Improved the handling of short seeks. The player will no longer fire a
waiting
event if the seek finishes quickly.
π Issuesβ
- Fixed an issue where
<SegmentList>
elements defined at the<Period>
level where incorrectly ignored in a DASH MPD. - Fixed an issue where the player sometimes failed to jump a known gap between two buffered segments.
Webβ
π Issuesβ
- Fixed an issue where some CEA-608 cues weren't properly extracted.
- Fixed an issue where CEA-608 cues could be falsely removed after appending a segment.
- Fixed an issue where CEA-608 cues could be in the wrong order at segment boundaries.
- Fixed an issue where in rare circumstances a very short HLS VOD stream would fail to start playback.
Androidβ
π Issuesβ
- Fixed an issue on Android where an HLS stream would not replay after playback had ended.
- Fixed an issue where an error was thrown on some devices while trying to play Dolby AC-3 stream.
- Fixed an issue where LOADING tasks were not set to IDLE when cache is initialized.
π 5.7.0 (2023/07/26)β
Generalβ
β‘ Improvementsβ
- Optimized the DASH buffering loop for the common case where the player's buffer is still sufficiently filled.
π Issuesβ
- Fixed an issue where an MPEG-DASH
<SegmentList>
element inside a<Representation>
did not correctly inherit<SegmentURL>
elements defined at the<Period>
or<AdaptationSet>
level.
Webβ
β¨ Featuresβ
- Added
source.abr.restrictToPlayerSize
, to control whether the ABR algorithm should only select qualities whose resolution fits within the player's size. - Added support for the
PRECISE
attribute in an HLS#EXT-X-START
tag. This removes the limitation from THEOplayer 4.7.0, so a missingPRECISE
attribute is now treated asPRECISE=NO
to conform with the HLS specification. - Filtered out ac-3 audio on Tizen and WebOS by default as most devices fail playout and the codec support check is not useable.
- Added support for setting a live offset on streams for multiview.
β‘ Improvementsβ
- The player will now only create Google DAI UI elements when the Google DAI library is loaded.
- Improved startup of livestreams. This should be especially noticeable for HLS livestreams with short playlists, where previously the player would sometimes wait for a second playlist update before initiating playback.
π Issuesβ
- Fixed an issue where the player could stall indefinitely when the segment durations mentioned in the HLS playlist were not accurate enough.
- Fixed an issue where TTML styles applied to the
<body>
element were not always respected. - Fixed an issue where
volume
andmuted
were not correctly retained when transitioning between content and ad (or vice versa) on iOS using Google IMA. - Fixed an issue where fetching the first HLS playlist would time out prematurely.
- Fixed an issue where the player would sometimes throw an error if a HLS CMAF stream has a gap at the start of a segment that comes after an
#EXT-X-DISCONTINUITY
tag. - Fixed an issue with Google DAI where the latest version of their SDK could sometimes trigger an internal error with THEOplayer.
Androidβ
β¨ Featuresβ
- Added a
allowBackgroundPlayback
property to theTHEOplayerSettings
API.
π Issuesβ
- Fixed an issue where SourceChangeEvent did not contain the new SourceDescription.
iOSβ
π Issuesβ
- Fixed an issue where paused state would be inaccurate while integrating with IMA.
tvOSβ
π Issuesβ
- Fixed an issue where IMA playlist ads would block the main content.
π 5.6.0 (2023/07/10)β
Generalβ
β¨ Featuresβ
- Added support for
VideoQuality.frameRate
andVideoQuality.firstFrame
in the new HLS pipeline.
β‘ Improvementsβ
- Add support for the ABR strategy API for HESP streams.
- Improved the retry behaviour for DASH streams when using a retry configuration.
Webβ
β¨ Featuresβ
- Added support for DASH streams with WebM segment indexes described by a
Cues
Matroska element. - Exposed the accessibility descriptors for DASH tracks and the characteristics for HLS tracks.
π Issuesβ
- Fixed an issue where the ABR would not switch qualities when the codecs of the variant streams are not known beforehand.
- Fixed an issue where the player stalled indefinitely after playing a mid-roll ad on VIZIO SmartCast TVs.
- Fixed an issue where the player could stall indefinitely after changing qualities when the HLS multivariant playlist incorrectly lists both audio and video codecs for a video-only variant stream.
- Fixed an issue on EOS2 stbs where seeking in a DASH stream would sometimes cause the player to crash.
Androidβ
β¨ Featuresβ
- Added support of using a service so the caching can be done in the background.
- Added
VideoQuality.getFirstFrame()
. - Added
QualityUpdateEvent
toQuality
. - Added metrics API.
- Added a
allowBackgroundPlayback
property to theTHEOplayerSettings
API.
π Issuesβ
- Fixed an issue when the network connection is lost the CachingTasks can not be paused and restarted.
- Fixed an issue that caused playback failure in some cases on TCL 32S5201 Smart TV.
iOSβ
β¨ Featuresβ
- Added server side ad support with Google DAI through the IMA integration.
π Issuesβ
- Fixed an issue where seeking and seeked events were not fired when casting to AirPlay and when in picture in picture mode.
- Fixed an issue where waiting event would trigger multiple times while seeking.
- Fixed an issue that could cause a crash when destroying the player while the DRM flow was in progress.
tvOSβ
β¨ Featuresβ
- Added server side ad support with Google DAI through the IMA integration.
π 5.5.1 (2023/06/27)β
iOSβ
π Issuesβ
- Fixed an issue where no ratechange event was dispatched when the value was reset to the default during a source change.
- Fixed an issue where playback with IMA integration would not start.
π 5.5.0 (2023/06/22)β
Webβ
β¨ Featuresβ
- Added support for native fullscreen playback of Google IMA ads for HESP streams on iOS Safari.
β‘ Improvementsβ
- Improved ABR algorithm for HESP streams on iOS Safari to take the correct screen size into account.
π Issuesβ
- Fixed an issue where the player could not switch back to content after playing a Google IMA ad on iOS Safari.
- Fixed an issue on iOS Safari where switching to native fullscreen could disable active text tracks.
- Fixed an issue where embedded webVTT cues could remain visible.
- Fixed an issue where a DASH stream with representations containing slightly misaligned segments could stall indefinitely on a quality switch.
π Deprecationsβ
- Deprecated
source.hls.useLegacy
. The legacy HLS pipeline is no longer supported and will be removed in a future semver-major release. Please migrate to the new HLS pipeline. - Added
hideDeprecationWarnings
flag to player configuration, to hide all deprecation warnings in the browser's developer console.
Androidβ
β¨ Featuresβ
- Added support for play-out of progressive media assets embedded as raw app resource.
π Issuesβ
- Fixed an issue where setting multiple Google DAI sources after each other would cause a crash.
- Fixed presence of DRM exception in debug logs
- Fixed an issue where querying the
integration
property of a Google DAI ad or adbreak instance would always givegoogle-ima
instead ofgoogle-dai
. - Fixed an issue where playing a source with in-stream DRM would not play from cache.
iOSβ
β‘ Improvementsβ
- Enabled AirPlay support for cached content while connected to a network.
π Issuesβ
- Fixed an issue where after playing a preroll ad playlist on tvOS the main content would not resume playing.
- Fixed an issue where incorrect
TimeUpdateEvent
s were dispatched after skipping an IMA ad.
π 5.4.2 (2023/06/20)β
iOSβ
β‘ Improvementsβ
- Improved handling of network connection change during caching.
π 5.4.1 (2023/06/15)β
iOSβ
β‘ Improvementsβ
- Added support for asynchronous contentID extraction via
ContentProtectionIntegration.onExtractFairplayContentId(skdUrl:callback:)
π 5.4.0 (2023/06/08)β
Webβ
π Issuesβ
- Fixed an issue where sometimes the player would not autoplay.
- Fixed an issue with HESP streams on iOS Safari where the player would not switch to a higher quality in landscape mode.
- Fixed an issue where the player sometimes stalled indefinitely when the sliding window of a DASH livestream moves past its current time. Instead, it will now seek to live when this happens.
iOSβ
β‘ Improvementsβ
- Improved handling of network connection change during caching.
π 5.3.0 (2023/06/01)β
Generalβ
π Issuesβ
- Fixed an issue where CEA-608 captions with a valid but unrecognized language code would have an empty
TextTrack.language
property. - Fixed a regression issue where dash.needsTimescaleShifting would be false by default.
Webβ
β¨ Featuresβ
- Added
MediaTailorSource.adParams
to improve client-side ad reporting. - Exposed the companion ads for Google IMA.
β‘ Improvementsβ
- Improved the Agama integration by upgrading support to EMP Client version 3.9.0.3.
π Issuesβ
- Fixed an issue where the Agama integration reported the BUFFER_LENGTH in seconds instead of milliseconds.
- Fixed an issue where the Agama integration reported ABR switches when an audio segment was downloaded with different bandwidth requirements than the active video quality's bandwidth requirements.
- Fixed an issue where Google IMA ads would be skipped on iOS Safari when changing to a source containing IMA ads while unmuted autoplay is supported.
- Fixed an issue where the next ads in an adbreak would not be played when the current ad errored using the THEO Ads integration.
- Fixed an issue where the companion ads for the THEO ads integration were not exposed.
Androidβ
β¨ Featuresβ
- Implemented DRM HESP streams playback.
- Added TextTrack styling support via 'THEOplayer.getPlayer().getTextTrackStyle()' API
- Added
MediaTailorSource.adParams
to improve client-side ad reporting.
π Issuesβ
- Fixed playback stalling after seeking past a midroll adbreak on AndroidTV.
- Fixed an issue where a text track cue that contains a string was sometimes converted to an object.
- Fixed an issue where using a MediaTailor source would cause a crash.
iOSβ
π₯ Breaking Changesβ
- Bumped Xcode minimum support version to 13.2.1 and Swift version to 5.5.
π Issuesβ
- Fixed an issue where eventListeners would not be removed when there is no ads integration added.
- Fixed an issue where
CachingTask.status
was not updated to.evicted
after the expiration date
tvOSβ
π₯ Breaking Changesβ
- Bumped Xcode minimum support version to 13.2.1 and Swift version to 5.5.
π 5.2.0 (2023/05/15)β
Generalβ
β¨ Featuresβ
- Added the option to ignore the availability window of individual segments in an MPEG-DASH livestream with
DashPlaybackConfiguration.ignoreAvailabilityWindow
.
β‘ Improvementsβ
- The HLS pipeline will now abandon segment requests that are taking too long (e.g. because of a sudden drop in the network bandwidth) and will more quickly switch to a lower bitrate variant stream.
Webβ
β¨ Featuresβ
- Added support for FairPlay HESP streams on iOS Safari.
π Issuesβ
- Fixed an issue where the player would not switch to a higher quality for HLS streams that contain preload hints when playing too close to live.
- Fixed an issue on iOS Safari where subtitles were not rendered in native fullscreen when using the default THEOplayer UI.
- Fixed an issue on iOS Safari where the animation of the
<video>
element going into native fullscreen was not smooth when using the default THEOplayer UI. - Fixed an issue where retrying for too long could cause the player to freeze and stop retrying on HLS.
- Fixed an issue where an MPEG-TS HLS stream could have playback issues if its first segment contains multiple PMTs.
- Fixed an issue where new Google IMA ads scheduled through
player.ads.schedule()
would never play if all previously scheduled ads have already finished playing. - Fixed an issue where the player would incorrectly estimate the network conditions when using a response interceptor.
Androidβ
π Issuesβ
- Fixed an issue where streams transcoded with frame-accurate option would stutter on certain devices.
- Fixed an issue on Android where the
currentProgramDateTime
property would always benull
when dispatching aTimeUpdateEvent
. - Fixed an issue that caused stretched videos during MP4 playback.
- Fixed and issue where DRM playback on Xiaomi Projector had visual glitches.
- Fixed playback stalling after seeking past a midroll adbreak on AndroidTV.
iOSβ
π₯ Breaking Changesβ
- Bumped Xcode minimum support version to 13.2.1 and Swift version to 5.5.
tvOSβ
π₯ Breaking Changesβ
- Bumped Xcode minimum support version to 13.2.1 and Swift version to 5.5.
π 5.1.0 (2023/05/04)β
Generalβ
β¨ Featuresβ
- Added support for VP9 and AV1 in CMAF containers for (LL-)HLS.
β‘ Improvementsβ
- Avoid range requests for the next HESP continuation segments once the first HESP continuation segment has been downloaded.
- When an MPEG-DASH stream transitions from dynamic to static MPD, the player will now detect and handle any time shifts applied to the static MPD. For example, this handles the case where the server uses Unix timestamps for livestreams but zero-based timestamps for VODs.
Webβ
β¨ Featuresβ
- Added a retry configuration to the player configuration to customize a part of the player's retry mechanism.
- Added support to pass SourceDescription.metadata properties other than those in ChromecastMetadataDescription to chromecast MediaInfo.metadata.
- The player now dispatches
manifestupdate
events during HLS playback whenever it fetches a new playlist.
β‘ Improvementsβ
- Added TypeScript type definitions for
THEOplayer.chromeless.js
. player.seekable
now returns an emptyTimeRanges
while playing a linear ad through Google IMA, to indicate that seeking is not allowed during such an ad.- Improved ABR in the LL-HLS pipeline.
π Issuesβ
- Fixed an issue with the Google IMA integration where no ads could be scheduled after an ad errors during playback.
- Fixed an issue where for HLS streams the frame rate was always reported as zero.
- Fixed an issue where the HLS pipeline would error after calling
player.stop()
and thenplayer.play()
without a new source. - Fixed an issue where HLS CMAF playout would fail in certain cases when the default sample duration of segments was set in the
trex
box. - Fixed an issue where switching qualities on an HLS stream that allows delta playlist updates could result in playback artifacts.
Androidβ
β¨ Featuresβ
- Added support for caching streams offline.
- Handling HTTP 307 response redirection request.
π Issuesβ
- Fixed playback stalling after seeking past a midroll adbreak on AndroidTV.
iOSβ
π₯ Breaking Changesβ
- Removed deprecated
GoogleIMAConfiguration
class in favor ofGoogleIMAAdsConfiguration
. SeeGoogleIMAConfigurationBuilder
for more details on how to init aGoogleIMAAdsConfiguration
object.
π Issuesβ
- Fixed an issue where setting a
nil
source would cause invalid license error - Fixed an issue where
CachingTask.percentageCached
was returning values on a different scale. - Fixed an issue where using special characters in
SourceDescription.metadata
could cause crash during caching.
π Deprecationsβ
- Deprecated
useNativeIMA
property inGoogleIMAConfigurationBuilder
&GoogleIMAAdsConfiguration
.
tvOSβ
π₯ Breaking Changesβ
- Removed deprecated
GoogleIMAConfiguration
class in favor ofGoogleIMAAdsConfiguration
. SeeGoogleIMAConfigurationBuilder
for more details on how to init aGoogleIMAAdsConfiguration
object.
π Issuesβ
- Fixed an issue with Google IMA where the main content wasn't resumed after a preroll ended.
π Deprecationsβ
- Deprecated
useNativeIMA
property inGoogleIMAConfigurationBuilder
&GoogleIMAAdsConfiguration
.
π 5.0.3 (2023/04/25)β
iOSβ
π Issuesβ
- Fixed an issue where the player on iOS would throw an exception when destroying the player during the setup of the DRM keySystem
π 5.0.2 (2023/04/13)β
Androidβ
π Issuesβ
- Fixed an issue on Android where play-out of HLS streams would fail.
π 5.0.1 (2023/04/12)β
Webβ
β¨ Featuresβ
- Added a retry configuration to the player configuration to customize a part of the player's retry mechanism.
π Issuesβ
- Fixed an issue where for HLS streams the frame rate was always reported as zero.
Androidβ
β¨ Featuresβ
- Added retry logic for failing playlist and manifest fetches.
iOSβ
β¨ Featuresβ
- Bump support for GoogleCast framework to 4.7.1. This adds compatibility for building on simulators with the arm64 architecture.
- Added
configure
method to PictureInPicture API for dynamic configuration. - Added
requiresLinearPlayback
parameter to PiPConfiguration API. This helps control seekability during Picture in Picture.
tvOSβ
β¨ Featuresβ
- Added
requiresLinearPlayback
parameter to PiPConfiguration API. This helps control seekability during Picture in Picture. - Added
configure
method to PictureInPicture API for dynamic configuration.
π 5.0.0 (2023/04/05)β
Officially announcing THEOplayer 5.0β
Introducing a major version bump to THEOplayer 5.0. This version officially releases all the improvements and developments THEOplayer has achieved since version 4.0.
The new modularized native mobile SDKs are rearchitected and built from the ground up keeping performance, usability, and future compatibility in mind. Read more
THEOplayer 5.0 is backwards compatible for most features but includes some breaking changes per SDK. Please review them carefully in the respective changelog for your SDK.
-
Android SDK 5.0: The new modularized Android SDK is much faster than the legacy 4.x SDK, uses low-level, platform-native APIs. Get started now!
-
iOS/tvOS SDK 5.0: The new iOS/tvOS SDK is built on our new module-based principles and brings fully native performance for both platforms with great extensibility. Get started now!
-
Customizable UI modules: No need to build a UI yourself - save time and money by starting from the open source THEOplayer UI for Web, Android and React Native, and tailor it for your use case. Keep an eye open for the new iOS UI next quarter!
-
WebXR support: Weβve added WebXR support for browser to enchance the AR and VR experiences on Web. Get started now!
-
React Native SDK 2.0: Weβve further expanded our React Native support for Web, Android and iOS-based platforms, through bridging items such as casting, Picture-in-Picture, background audio, DRM connectors and analytics connectors. Check our GitHub and the react-native-theoplayer v2 migration guide for more information.
Webβ
π₯ Breaking Changesβ
- Device motion controls outside stereo mode on VR now have to be enabled by setting
THEOplayer.vr.useDeviceMotionControls
totrue
.
π Issuesβ
- Fixed an issue where VR/XR content would be displayed sideways in portrait mode on Safari & aligned device motion control behavior on major platforms for WebXR.
- Fixed an issue where certain HLS streams containing MP3 audio could throw an error
Failed to set the 'timestampOffset' property on 'SourceBuffer'
. - Fixed an issue where the IMA DAI SDK was not able to correctly calculate the player's position relative to the viewport
Androidβ
π₯ Breaking Changesβ
- Starting from Android SDK v5.0.0 the minimum Java version required is 8.
- Removed deprecated
PipManager#enterPip()
in favor ofPipManager#enterPiP(PiPType)
- Removed deprecated
AdsConfiguration#googleImaConfiguration()
in favor ofAdsConfiguration#googleIma()
- Removed deprecated
AdsConfiguration#googleImaConfiguration(GoogleImaConfiguration)
in favor ofAdsConfiguration#googleIma(GoogleImaConfiguration)
- Removed deprecated
AbrStrategyConfiguration#abrStrategyConfiguration()
in favor ofAbrStrategyConfiguration.Builder()
- Removed deprecated
AbrStrategyMetadata#abrStrategyMetadata()
in favor ofAbrStrategyMetadata.Builder()
- Removed deprecated
DRMConfiguration()
constructor in favor ofDRMConfiguration.Builder()
- Removed deprecated
DRMConfiguration#fairplayDrm(FairPlayKeySystemConfiguration)
in favor ofDRMConfiguration.Builder()
- Removed deprecated
DRMConfiguration#playreadyDrm(KeySystemConfiguration)
in favor ofDRMConfiguration.Builder()
- Removed deprecated
DRMConfiguration#widevineDrm(KeySystemConfiguration)
in favor ofDRMConfiguration.Builder()
- Removed deprecated
DRMConfiguration#clearkeyDrm(KeySystemConfiguration)
in favor ofDRMConfiguration.Builder()
- Removed deprecated
KeyOSKeySystemConfiguration#keyOsKeySystemConfiguration(String)
in favor ofKeyOSKeySystemConfiguration.Builder(String)
- Removed deprecated
KeySystemConfiguration
constructors in favor ofKeySystemConfiguration.Builder(String)
- Removed deprecated
FairPlayKeySystemConfiguration
constructors in favor ofFairPlayKeySystemConfiguration#Builder
- Removed deprecated
FairPlayKeySystemConfiguration#fairPlayKeySystemConfiguration(String, String)
in favor ofFairPlayKeySystemConfiguration#Builder(String, String)
- Removed deprecated
TextTrackDescription#textTrackDescription(String)
in favor ofTextTrackDescription#Builder(String)
- Removed deprecated
TextTrackDescription.src(String)
in favor ofTextTrackDescription#Builder(String)
- Removed deprecated
KeySystemConfiguration.keySystemConfiguration(String)
in favor ofKeySystemConfiguration#Builder(String)
- Removed deprecated
YoSpaceDescription.yoSpaceDescription()
in favor ofYoSpaceDescription#Builder()
- Removed deprecated
KeyOSDRMConfiguration.keyOsDrm()
in favor ofKeyOSDRMConfiguration#Builder()
- Removed deprecated
VudrmDRMConfiguration.vudrmDrm(String)
in favor ofVudrmDRMConfiguration#Builder(String)
- Removed deprecated
YoSpaceLogLevelConfiguration.yoSpaceLogLevelConfiguration()
in favor ofYoSpaceLogLevelConfiguration#Builder()
- Removed deprecated
THEOplayerAdDescription
constructors in favor ofTHEOplayerAdDescription#Builder
- Removed deprecated
THEOplayerAdDescription.adDescription()
in favor ofTHEOplayerAdDescription#Builder(String)
- Removed deprecated
THEOplayerAdDescription.source(String)
in favor ofTHEOplayerAdDescription#Builder(String)
- Removed deprecated
ClearkeyKeySystemConfiguration.clearkeyKeySystemConfiguration(String)
in favor ofClearkeyKeySystemConfiguration#Builder(String)
- Removed deprecated
DRMTodayConfiguration.drmToday(KeySystemConfiguration)
in favor ofDRMTodayConfiguration#Builder(KeySystemConfiguration)
- Removed deprecated
DRMTodayConfiguration.drmToday(String)
in favor ofDRMTodayConfiguration#Builder(String)
- Removed deprecated
TitaniumDRMConfiguration.titaniumDrm(String, String, String)
in favor ofTitaniumDRMConfiguration#Builder(String, String, String)
- Removed deprecated
IrdetoConfiguration.irdeto(String)
in favor ofIrdetoConfiguration#Builder(String)
- Removed deprecated
IrdetoConfiguration.irdeto(KeySystemConfiguration)
in favor ofIrdetoConfiguration#Builder(KeySystemConfiguration)
- Removed deprecated
TypedSource#Builder()
in favor ofTypedSource#Builder(String)
- Removed deprecated
TypedSource.typedSource(String)
in favor ofTypedSource#Builder(String)
- Removed deprecated
TypedSource.src(String)
in favor ofTypedSource#Builder(String)
- Removed deprecated
SourceDescription#Builder()
in favor ofSourceDescription#Builder(String)
orSourceDescription#Builder(TypedSource...)
- Removed deprecated
SourceDescription.sourceDescription()
in favor ofSourceDescription#Builder(String...)
orSourceDescription#Builder(TypedSource...)
- Removed deprecated
SourceDescription.sourceDescription(String...)
in favor ofSourceDescription#Builder(String...)
- Removed deprecated
SourceDescription.sourceDescription(TypedSource...)
in favor ofSourceDescription#Builder(TypedSource...)
- Removed deprecated
SourceDescription.sourceDescription(VerizonMediaSource...)
in favor ofSourceDescription#Builder(VerizonMediaSource...)
- Removed deprecated
SourceDescription.sources(String...)
in favor ofSourceDescription#Builder(String...)
- Removed deprecated
SourceDescription.sources(TypedSource...)
in favor ofSourceDescription#Builder(TypedSource...)
- Removed deprecated
SpotXData.spotxData()
in favor ofSpotXData#Builder()
- Removed deprecated
SpotXData.spotxData(SpotXData)
in favor ofSpotXData#Builder(SpotXData)
- Removed deprecated
SpotXDataQueryParameter.spotxDataQueryParameters()
in favor ofSpotXDataQueryParameter#Builder()
- Removed deprecated
AgamaPlayerConfiguration.agamaPlayerConfiguration(String)
in favor ofAgamaPlayerConfiguration#Builder(String)
- Removed deprecated
GoogleDaiTypedSource#Builder()
in favor ofGoogleDaiTypedSource#Builder(GoogleDaiConfiguration)
- Removed deprecated
GoogleDaiTypedSource.daiTypedSource(GoogleDaiConfiguration)
in favor ofGoogleDaiTypedSource#Builder(GoogleDaiConfiguration)
- Removed deprecated
AgamaSourceConfiguration.agamaSourceConfiguration(String, StreamType)
in favor ofAgamaSourceConfiguration#Builder(String, StreamType)
- Removed deprecated
IntegrationType#ADS
in favor ofIntegrationType#GOOGLE_IMA
orIntegrationType#GOOGLE_DAI
- Removed deprecated
GoogleImaAdDescription
constructors in favor ofGoogleImaAdDescription#Builder()
- Removed deprecated
GoogleImaAdDescription#googleImaAdDescription()
constructor in favor ofGoogleImaAdDescription#Builder()
- Removed deprecated
GoogleImaAdDescription#googleImaAdDescription(String)
in favor ofGoogleImaAdDescription#Builder(String)
- Removed deprecated
GoogleImaAdDescription#Builder()#source(String)
in favor ofGoogleImaAdDescription#Builder(String)
- Removed deprecated
ChromecastMetadataDescription.chromecastMetadata(String)
in favor ofGoogleImaAdDescription#Builder(String)
- Removed deprecated
YouboraOptions
constructor in favor ofYouboraOptions#Builder(String)
- Removed deprecated
YouboraOptions#youboraOptions()
constructor in favor ofYouboraOptions#Builder(String)
- Removed deprecated
YouboraOptions#youboraOptions(String)
in favor ofYouboraOptions#Builder(String)
- Removed deprecated
SpotXDataQueryParameter.spotxDataQueryParameters(SpotXDataQueryParameter)
in favor ofSpotXDataQueryParameter#Builder(SpotXDataQueryParameter)
- Removed deprecated
Geo.spotxAdDescription()
in favor ofSpotXDataQueryParameter#Builder(String)
- Removed deprecated
SpotXAdDescription.spotxAdDescription(String)
in favor ofSpotXAdDescription#Builder(String)
- Removed deprecated
SpotXAdDescription.spotxAdDescription(SpotXAdDescription)
in favor ofSpotXAdDescription#Builder(SpotXAdDescription)
- Removed deprecated
SpotXAdDescription.Builder()
in favor ofSpotXAdDescription#Builder(SpotXAdDescription)
- Removed deprecated
SpotXAdDescription.id(String)
in favor ofSpotXAdDescription#Builder(SpotXAdDescription)
- Removed deprecated
YouboraOptions.Builder()
in favor ofYouboraOptions#Builder(String)
- Removed deprecated
Ads#requestPlaying()
in favor ofAds#isPlaying()
- Removed deprecated
Ads#requestCurrentAds()
in favor ofAds#getCurrentAds()
- Removed deprecated
Ads#requestCurrentAdBreak()
in favor ofAds#getCurrentAdBreak()
- Removed deprecated
Ads#requestScheduledAds()
in favor ofAds#getScheduledAds()
- Removed deprecated
Player#requestBuffered()
in favor ofPlayer#getBuffered()
- Removed deprecated
Player#requestCurrentTime()
in favor ofPlayer#getCurrentTime()
- Removed deprecated
Player#requestPlayed()
in favor ofPlayer#getPlayed()
- Removed deprecated
Player#requestSeekable()
in favor ofPlayer#getSeekable()
- Removed deprecated
Player#requestCurrentProgramDateTime()
in favor ofPlayer#getCurrentProgramDateTime()
- Removed deprecated
Player#requestVideoHeight()
in favor ofPlayer#getVideoHeight()
- Removed deprecated
Player#requestVideoWidth()
in favor ofPlayer#getVideoWidth()
- Changed the behavior that using the
THEOplayerSettings#setFullScreenOrientationCoupled(boolean)
will also have an influence on the orientation when entering fullscreen. Please make use of theTHEOplayerSettings#setFullscreenOrientation(ActivityInfo.SCREEN_ORIENTATION_*)
instead to specify this behavior.
iOSβ
β¨ Featuresβ
- Added background audio playback support via
THEOplayer.backgroundPlaybackDelegate
API - Added integration support via
THEOplayer.addIntegration()
API - Added TextTrack styling support via
THEOplayer.textTrackStyle
API - Added support for track selection when caching via
CachingParameters.preferredTrackSelection
API - Added
THEOplayer.developerSettings
API to host developer-friendly settings and experimental features
tvOSβ
β¨ Featuresβ
- Added background audio playback support via
THEOplayer.backgroundPlaybackDelegate
API - Added integration support via
THEOplayer.addIntegration()
API - Added TextTrack styling support via
THEOplayer.textTrackStyle
API - Added
THEOplayer.developerSettings
API to host developer-friendly settings and experimental features
π 4.12.9 (2024/05/13)β
iOSβ
π Issuesβ
- Fixed an issue with building the iOS SDK from THEOportal.
π 4.12.8 (2024/04/18)β
iOSβ
β¨ Featuresβ
- Added conformance to Apple's new privacy policy for API usage.
- Added support for arm64 simulator architecture with GoogleCast.
π 4.12.7 (2023/12/19)β
iOSβ
π Issuesβ
- Fixed an issue where TextTracks are not displayed when entering native picture-in-picture mode.
π 4.12.6 (2023/08/22)β
iOSβ
π Issuesβ
- Fixed an issue where native picture-in-picture mode would not be retained after a source change.
π 4.12.5 (2023/06/14)β
Androidβ
π Issuesβ
- Fixed an issue where the paused state was not always reset.
- Fixed an issue where missing DRM key was not handled correctly.
π 4.12.4 (2023/05/24)β
Androidβ
β¨ Featuresβ
- Added support for
playbackUrlParameters
forVerizonMediaSource
.
π Issuesβ
- Fixed an issue where the scheduling multiple Google IMA ads would crash the SDK.
- Fixed an issue where recovering from failed source caching was not possible.
π Deprecationsβ
- Deprecate
VerizonMediaSource#getParameters()
in favor ofVerizonMediaSource#getPreplayParameters()
.
iOSβ
β¨ Featuresβ
- Added support for
playbackUrlParameters
onVerizonMediaSource
.
π₯ Breaking Changesβ
- Bumped Xcode minimum support version to 13.2.1 and Swift version to 5.5.
tvOSβ
π₯ Breaking Changesβ
- Bumped Xcode minimum support version to 13.2.1 and Swift version to 5.5.
π 4.12.3 (2023/05/03)β
Androidβ
π Issuesβ
- Fixed an issue where the cached
SourceDescription
would lose DRM parameters. - Fixed an issue where the existing caching tasks would return incorrect state after app restart.
π 4.12.2 (2023/04/25)β
Androidβ
π Issuesβ
- Fixed an issue where the cached
SourceDescription
would lose some metadata. - Fixed an issue where the existing caching tasks would return incorrect state.
- Fixed an issue where caching would fail when the app is obfuscated.
π 4.12.1 (2023/04/20)β
iOSβ
π Issuesβ
- Fixed an issue where the initial cast state was wrong while using
CastStrategy.auto
.
π 4.12.0 (2023/04/03)β
Generalβ
β‘ Improvementsβ
- Cancel all previous downloads on a source change for HESP streams.
π Issuesβ
- Fixed an issue where setting preload to
metadata
would not start preloading the metadata for HLS streams. - Fixed an issue where the
loadstart
event would not be dispatched for HLS streams. - Fixed an issue where the player could stall on slightly malformed HLS streams that have a different
NAME
attribute for default renditions across different rendition groups. - Fixed an issue with HLS streams where incorrect/incomplete codec information in the master playlist could cause the player to stall.
- Fixed an issue where the player would sometimes stall indefinitely on HESP streams during startup.
Webβ
β¨ Featuresβ
- Store bandwidth estimations to improve quality selection on startup for HESP streams.
π Issuesβ
- Fixed an issue where the player would hang some time on bandwidth drop for HESP streams on iOS Safari.
- Eliminated flickering on mobile Chrome when using VR through WebXR.
- Fixed an issue when changing text tracks in native fullscreen, the changes weren't applied when going back to the inline player.
Androidβ
β¨ Featuresβ
- Added an overload to
MediaTrack.setTargetQualities()
that accepts aList<Quality>
instead of aQualityList
.
β‘ Improvementsβ
- Improved
TARGETQUALITYCHANGEDEVENT
event type inAudioTrackEventTypes
andVideoTrackEventTypes
.
Unified Androidβ
π Issuesβ
- Fixed an issue where binary data contained in a cue of a metadata track would not be part of the
TextTrackCue
content property.
iOSβ
β¨ Featuresβ
- Exposed
ownerIdentifier
anddata
fields from ID3 private frames on the TextTrackCue'scontent
property.
β‘ Improvementsβ
- Added
CachingParameters().init()
constructor
π Issuesβ
- Fixed an issue where caching flow was not started if a rendition has Content Protection parameter specified.
- Fixed an issue where initializing THEOplayerConfiguration without parameters would cause a crash.
tvOSβ
π Issuesβ
- Fixed an issue where initializing THEOplayerConfiguration without parameters would cause a crash.
π 4.11.0 (2023/03/17)β
Generalβ
π Issuesβ
- Fixed an issue where the player would not store the bandwidth estimations in cache when playing HLS streams.
Webβ
π₯ Breaking Changesβ
- Updated the default VR direction so that looking forward corresponds to a
yaw
value of0
instead of-180
.
β¨ Featuresβ
- Add the possibility to configure the desired timescale to which it might need to shift to for DASH streams.
β‘ Improvementsβ
- Improve battery and network consumption of playback of HESP streams by pausing the player when it is hidden.
- Improved VR rendering performance on Firefox.
π Issuesβ
- Fixed an issue where sometimes the audio would freeze after switching qualities when playing HESP on iOS Safari.
- Fixed an issue where audio and video would sometimes lose synchronization when playing an HESP stream on iOS Safari.
Unified Androidβ
π Issuesβ
- Fixed an issue where repetitive source setting would cause memory buildup.
- Fixed an issue where the playback of the content would not start in case of an empty VAST.
π 4.10.0 (2023/03/06)β
Generalβ
π Issuesβ
- Fixed an issue where the player would often overestimate the available download bandwidth when playing an HLS stream.
- Fixed an issue where the
useCredentials
andcrossOrigin
configuration flags were not respected for HLS streams.
Webβ
π Issuesβ
- Fixed an issue where the latency on HESP streams increases when switching between qualities on iOS Safari.
- Fixed an issue where default text tracks were not automatically enabled on iOS Safari.
- Fixed an issue where a player with muted autoplay would unintentionally pause any background music in iOS Safari.
- Fixed an issue where the player could become unresponsive after a source change when the license is invalid.
- Fixed an issue where the player would rarely error when loading an MP4 segment of a HLS stream.
Androidβ
π Issuesβ
- Fixed an issue where the player did not reflect the correct chromecast state.
Unified Androidβ
β¨ Featuresβ
- Introduced
THEOplayerGlobal.getPlaybackSettings()
to control and optimize playback behaviour (experimental)
π Issuesβ
- Fixed an issue where mid-roll ads were not visible on low-end devices.
- Fixed an issue where the startup time would be too long when switching sources.
iOSβ
π Issuesβ
- Fixed an issue where closing the native picture-in-picture window would instead restore the previous presentation mode.
- Fixed compatibility issues of fullscreen orientation coupling on iOS 16.
- Fixed an issue where showing a subtitle/caption textTrack would disable an active metadata track.
- Fixed an issue where the player was stuck in a muted state after muting during an IMA ad playout.
tvOSβ
π₯ Breaking Changesβ
- Stop support for tvOS 11. The minimum supported version is now 12.0.
β¨ Featuresβ
- Bump GoogleInteractiveMediaAds tvOS framework version to 4.8.2.
π 4.9.1 (2023/02/21)β
iOSβ
π Issuesβ
- Fixed an issue where THEOplayer did not load on iOS 16.4
π 4.9.0 (2023/02/17)β
Generalβ
π Issuesβ
- Fixed an issue where playback would sometimes stall after a non-seamless period transition on Tizen 2.
Webβ
π₯ Breaking Changesβ
- Removed HESP feature flag from all published npm builds except
@theoplayer/basic-hesp
. - Playback of HESP streams now requires a player license with the
hesp
feature enabled. Contact THEOplayer support if you require thehesp
feature on your license.
π Issuesβ
- Fixed a potential memory leak due to repeated DRM license creation on WebOS 2016/2017 models.
- Fixed an issue where setting
player.currentTime
on iOS before playback has started wouldn't execute the seek. - Fixed an issue where a
<Tracking event="progress">
inside a VAST advertisement could be triggered too soon. - Fixed an issue where the
playing
event would be dispatched twice during native playback. - Fixed an issue where a quality switch would cause a desync between audio and video for HESP streams on iOS Safari.
- Fixed an issue where CEA608 cues would be kept in memory indefinite, causing issues when playing very long VODs on memory constrained devices.
Androidβ
π Issuesβ
- Fixed an issue where an unhandled NullPointerException could cause application crash while loading ads.
Unified Androidβ
β¨ Featuresβ
- Added support for background audio playback of progressive media (mp4, mp3. avi...)
π Issuesβ
- Fixed an issue where audio on some DRM protected streams would not play correctly.
- Fixed an issue where process termination during Fullscreen was crashing the app.
- Fixed an issue where some HEVC streams were failing to play.
iOSβ
π₯ Breaking Changesβ
- Stop support for iOS 11. The minimum supported version is now 12.0.
- The 3.18.4 version of the IMA SDK framework does not support bitcode. As a result, the THEOplayer iOS SDK also drops support for bitcode when compiled with the IMA or DAI feature flags. Additionally, bitcode support is now deprecated for THEOplayer and will be fully dropped with the next released version. To understand more about this decision, please check the Xcode 14 release notes about bitcode deprecation.
β¨ Featuresβ
- Added support for wifi-only caching via
CachingParameters.allowsCellularAccess
- Bump GoogleInteractiveMediaAds iOS framework version to 3.18.4.
- Added
enableBackgroundPlayback
property toGoogleIMAAdsConfiguration
API.
π Issuesβ
- Added compatibility support of custom in-app picture-in-picture for iOS 16
tvOSβ
β¨ Featuresβ
- Added
enableBackgroundPlayback
property toGoogleIMAAdsConfiguration
API.
π 4.8.0 (2023/02/03)β
Generalβ
π Issuesβ
- Fixed an issue where badly provisioned SSAI streams potentially cause stalls on old webOS devices.
- Fixed an issue where the player would error when switching between two different codecs.
- Fixed an issue where the player would not consider the screen resolution of the smartTV when selecting the optimal quality for HLS streams.
Webβ
β‘ Improvementsβ
- Improved timing of the MediaTailor tracking events.
π Issuesβ
- Fixed an issue where we didn't dispatch ad events for MediaTailor ads.
- Fixed an issue so that playing a stream with only 1 video quality will only show 'Automatic' in the quality selection menu.
- Fixed the position of the linear ad clickthrough and countdown when using the chromeless player.
Unified Androidβ
β¨ Featuresβ
- Added support for MPEG audio.
π Issuesβ
- Avoid dispatching
SourceChangeEvent
when casting starts. - Fixed an issue where some HLS streams did not start playback.
- Fixed an issue where when going in or out of FullScreen would not dispatch events.
- Fixed an issue where when a Track change event is received, the track wouldn't contain the changes.
- Fixed an issue where PlayerEvents were not triggered during Google IMA ad playback.
- Fixed stalling on start of HESP streams
- Fixed an issue where playback of DRM protected streams would reveal visual artefacts on some Samsung phones.
iOSβ
β¨ Featuresβ
- Added viewController & viewControllerClass APIs to the Fullscreen API. The FullscreenViewController is now public and open to subclass.
- Added a builder type to create GoogleIMAAdsConfiguration instances.
π Issuesβ
- Fixed an issue where the puased state of the player would sometimes be incorrect when calling play() immediately after setting a source.
π Deprecationsβ
- Deprecated GoogleIMAAdsConfiguration.init in favor of GoogleIMAConfigurationBuilder
- Deprecated setters on GoogleIMAConfiguration
tvOSβ
β¨ Featuresβ
- Added Fullscreen API.
- Added a builder type to create GoogleIMAAdsConfiguration instances.
π Issuesβ
- Fixed an issue that would prevent DRM playback on a player after another player was destroyed.
π Deprecationsβ
- Deprecated GoogleIMAAdsConfiguration.init in favor of GoogleIMAConfigurationBuilder
- Deprecated setters on GoogleIMAConfiguration
π 4.7.0 (2023/01/20)β
Generalβ
π Issuesβ
- Fixed an issue where the ABR would not take the player's size into account to decide the optimal quality for HLS streams.
Webβ
β¨ Featuresβ
- Added support for the HLS
#EXT-X-START
tag. Note that thePRECISE
attribute is currently ignored: the player always treats the tag as ifPRECISE=YES
was set.
π Issuesβ
- Fixed an issue where the screen becomes black when destroying the player when in full window mode on iOS Safari.
- Fixed an issue where the player would sometimes hang when setting the target latency for HESP streams on iOS Safari.
Unified Androidβ
β¨ Featuresβ
- Added support for background playback of DASH/HLS audio/video streams.
π Issuesβ
- Fixed an issue where on play-out of DASH streams the player would sometimes continue to download media data after the player was destroyed.
- Fixed an issue where text track cues containing bitmaps would appear stretched or squashed in fullscreen mode.
- Fixed an issue where the positioning of TTML text track cues would sometimes be wrong.
iOSβ
π Issuesβ
- Fixed an issue where the player's initial paused state was toggled to unpaused, when adding the GoogleIMAIntegration during player setup
π 4.6.0 (2023/01/09)β
Generalβ
π Issuesβ
- Fixed an issue where only audio or video HESP streams would not play.
Webβ
β¨ Featuresβ
- Added the possibility to set the label for HLS qualities.
β‘ Improvementsβ
- Added improvements for latency on iOS Safari.
- Improved HLS ABR to not switch to the lowest bandwidth if playback hasn't started yet.
- Reduced amount of memory consumed by the player for HESP streams on iOS Safari.
π Issuesβ
- Fixed an issue with the Google IMA integration where
player.ads.currentAdBreak.ads.length
would sometimes not be updated fast enough during playback of the first ad. - Fixed an issue where FairPlay could use an incorrect assetId.
- Fixed an issue where some HLS variant streams were falsely filtered out on their codecs.
- Fixed an issue where seeking backwards on Tizen 2.4 devices could result in an indefinite stall.
- Fixed an issue where DASH playback would stall on Tizen 2 at period transitions due to overlapping segments.
- Fixed an issue where the
totalBytesLoaded
andcurrentBandwidthEstimate
metrics did not update for HLS streams. - Fixed an issue where a Google DAI DASH live streams did not dispatch ad events.
- Fixed an issue where multi-period DASH streams could wrongfully filter out eventstream cues of the next period.
- Fixed an issue where sometimes the player would do an incorrect seek on Tizen or WebOS 4.X or lower.
- Fixed an issue where a view that is re-enabled would always be paused.
Unified Androidβ
π Issuesβ
- Fixed an issue where the source description of an asset was not correctly passed to a Chromecast receiver.
- Fixed an issue where video artifacts would appear on initial playback of a CMAF stream.
- Fixed an issue where
isPaused
would disregard the state of different Integrations. - Fixed an issue where a TTML text track with cues that contain images would not be rendered correctly.
iOSβ
π Issuesβ
- Fixed an issue where DRM protected streams, using a custom DRM connector, would not play after switching sources
π 4.5.1 (2022/12/16)β
iOSβ
β¨ Featuresβ
- Provide DAI configuration APIs to enable background mode.
tvOSβ
π Issuesβ
- Fixed an issue where IMA ads would not play on tvOS.
π 4.5.0 (2022/12/09)β
Generalβ
β¨ Featuresβ
- Added a new use-case 'same-drm-only' for 'useSeamlessPeriodSwitch' configuration on DASH to allow seamless period switches only between 2 drm or 2 non-drm periods.
β‘ Improvementsβ
- Made the ability to set the maximum bitrate for Google IMA ads visible in the documentation.
π Issuesβ
- Fixed an issue where the player could sometimes crash with an "attempted to download an incomplete segment" error while playing an LL-HLS livestream.
- Fixed an issue on Tizen 2 for use-cases where stalls or video looping could occur.
- Fixed an issue where HESP streams with mediaTimeOffset would not work.
- Fixed an issue with unwanted seeks due to the stall checker starting too soon.
Webβ
β¨ Featuresβ
- Added the ability to configure omidAccessModeRules for Google DAI.
π Issuesβ
- Fixed an issue where WebVTT subtitle renditions were not always correctly synchronized when playing an HLS livestream.
- Fixed an issue with the Google IMA integration where no ads could be scheduled after displaying a non-linear ad.
- Fixed a regression on Internet Explorer 11 where the control bar appeared at the top (instead of at the bottom) of the player.
- Fixed a regression on Internet Explorer 11 where HLS streams could not be loaded.
- Fixed an issue where IMA preroll ads were skipped on iOS web when unmuted autoplay was used.
- Fixed an issue that caused the following warning in the developer console in Chrome on Android: "Ignored attempt to cancel a touchend event with cancelable=false".
- Fixed an issue that caused a deprecation warning about
Event.path
in the developer console in Chrome. - Fixed an issue where setting the currentTime before the player has loaded didn't result in a seek once playback started for an HLS source.
- Fixed an issue where some LL-HLS variant streams were falsely filtered out on their codecs.
Androidβ
π Deprecationsβ
- Deprecated
AdsConfiguration#googleImaConfiguration()
in favor ofAdsConfiguration#googleIma()
. - Deprecated
Builder#googleImaConfiguration()
in favor ofBuilder#googleIma()
.
Unified Androidβ
π Issuesβ
- Fixed an issue where the optional callback method would not be executed on
play
,pause
andsetCurrentTime
methods.
iOSβ
π Issuesβ
- Fixed an issue where playing any source after a DRM source could fail
π Deprecationsβ
- Deprecated
AdsConfiguration.googleImaConfiguration
in favor ofAdsConfiguration.googleIma
.
π 4.4.0 (2022/11/25)β
Generalβ
π₯ Breaking Changesβ
- Removed analytics, nogolive and bufferedchange event from the HESP api.
Webβ
β¨ Featuresβ
- Added ability to configure the maximum bitrate for Google IMA ads.
- Added the ability to replace the ad tag parameters for ad requests for Google DAI.
β‘ Improvementsβ
- Improved the LCEVC integration so enhancements are applied frame accurate.
π Issuesβ
- Fixed an issue where the player inadvertently used non-seamless period switches between two clear periods inside a DRM protected MPEG-DASH stream on Tizen 2.4.
- Added a new use-case 'clear-only' for 'useSeamlessPeriodSwitch' configuration on DASH to allow seamless period switches only between non-drm periods.
- Fixed a memory leak in the MPEG-TS transmux worker.
- Fixed an issue on Tizen 5.0 devices where the player was not able to play MPEG-TS HLS streams.
Unified Androidβ
π Issuesβ
- Fixed an issue where the player sometimes took a long time to start playback on certain HLS live streams with low-precision
#EXTINF
durations. - Fixed an issue with Google DAI sources where the snapback position was not cleared between source changes.
iOSβ
π Issuesβ
- Fixed an issue where the content player paused state after a source change would be incorrect.
tvOSβ
π Issuesβ
- Fixed an issue where the content player paused state after a source change would be incorrect.
π 4.3.1 (2022/11/18)β
Webβ
π Issuesβ
- Fixed an issue that causes a fatal crash during long playback sessions on certain Tizen and WebOS models.
π 4.3.0 (2022/11/15)β
Generalβ
β‘ Improvementsβ
- Improved HESP ABR resulting in less undesired downswitches.
- Improve the latency calculation for HESP streams.
- Improve ABR downswitching for HESP streams on Mac OS.
- Improve ABR quality selection for HESP streams on iOS Safari.
- Improved cache-friendliness of HESP playback by avoiding
now
initialization requests during startup if possible.
π Issuesβ
- Fixed compatibility with HLS streams from AWS IVS.
Webβ
β¨ Featuresβ
- Added an experimental implementation for
THEOplayer.MultiViewPlayer
which supports in sync playback with multiple streams. It can be accessed through themultiview
feature flag and using the multiview license. - Added automatic recovery when the player's buffer becomes too full to the new HLS pipeline. See
player.abr.maxBufferLength
for more information.
β‘ Improvementsβ
- Playing an HLS stream with AES-128 full-segment encryption no longer requires the web page to be served over HTTPS. (This removes the limitation that was introduced in version 4.0.0.)
- Removed the 60 seconds limitation on
player.abr.targetBuffer
.
π Issuesβ
- Fixed an issue where the player could stall indefinitely before a discontinuity when playing certain HLS streams on older smart TVs.
- Fixed an issue where the player didn't fall back to an alternative source when the first HLS source contains DRM that is not supported by the platform.
- Fixed an issue where the
useNativePlayback
option was not respected by the new HLS pipeline. - Fixed an issue where the player could freeze when changing sources after playing a FairPlay-protected HLS stream.
- Fixed an issue where the player would refuse to play an fMP4 segment that contains a
uuid
box with aNULL
character in its extended type. - Fixed an issue with the Google IMA integration where certain ads with percentage based timeOffset would not be scheduled if paired with a pre-roll.
- Fixed an issue with the Google IMA integration where the player would be stuck on a black screen after the viewer skips an ad.
Androidβ
β¨ Featuresβ
- Added
fullscreenOrientation
flag to THEOplayerSettings to specify which orientation the player will take when in fullscreen.
π Deprecationsβ
- Deprecated
PiPManager#enterPiP()
in favor ofPiPManager#enterPiP(PiPType)
. - Deprecated the behavior that using the
fullscreenOrientationCoupling
will also have an influence on the orientation, when entering fullscreen. Please make use of thefullscreenOrientation
instead to specify this behavior.
Unified Androidβ
β¨ Featuresβ
- Add support for Google DAI integration.
- Add support for Picture in Picture mode.
- Introduced the handling of the violations (gaps) of media streams continuity for Android native media buffers
π Issuesβ
- Fixed an issue where ad-related events would not be dispatched for MediaTailor sources.
- Fixed an issue where play-back of a DASH stream would sometimes fail on parsing MP4 boxes.
- Fixed an issue where removing tracks after switching sources would crash the player.
- Fixed an issue where play-out of DRM protected streams would fail on Huawei devices.
- Fixed an issue where the player would sometimes crash when casting a source using join strategy
auto
. - Fixed MEDIA-LOAD-ERROR on some HLS streams.
- Fixed an issue where subtitle cues would not be updated during play-out.
- Fixed no playing event for only audio streams.
- Fixed an issue where a player configured without a THEOplayer license would not be able to play sources from the white-listed
theoplayer.com
domain.
π Deprecationsβ
- Deprecated
IntegrationType#ADS
in favor of specific integration types.
iOSβ
β¨ Featuresβ
- The Ads API now exposes a method that returns the scheduled Adbreaks when playing a Google DAI stream
- Added methods to the public player.ads.dai API to control whether the snapBack feature is enabled on Google DAI streams
- Added a public disableUI property to the GoogleIMAConfiguration to toggle the ad UI on non TrueView DAI ads
β‘ Improvementsβ
- Added documentation on how to use a MediaTailorSource
π Issuesβ
- Fixed an issue where casting was not started when using the default Google Cast button
- Fixed an issue where the player got into an infinite loading loop after disconnecting from Chromecast
tvOSβ
β‘ Improvementsβ
- Added documentation on how to use a MediaTailorSource
π 4.2.0 (2022/10/21)β
Generalβ
π Issuesβ
- Fixed various issues where the new HLS pipeline could lose synchronization when switching between variant streams, which would lead to wrong segments being downloaded or the player stalling indefinitely.
- Fixed an issue where the "Playing on Chromecast" overlay did not always show the Chromecast receiver's name.
- Fixed an issue where the HLS player could crash on certain MPEG-TS segments containing MP3 audio.
- Fixed an issue where the player could sometimes crash when seeking to live on an HLS live stream with a very short sliding window.
Webβ
β¨ Featuresβ
- Added a new optional experimental property needsTimescaleShifting to the SourceDescription API to allow an override for the timescale shifting feature that is by default only enabled for Tizen 2.x.
- Added the ability to set subtitle rendering margins using the
player.textTrackStyle
API. This is useful when using a custom UI so there is no overlap between the UI and the rendered subtitles. - Added support for
license-renewal
messages from the CDM when playing a DRM protected stream.
β‘ Improvementsβ
- Updated documentation to indicate that ABRConfiguration is readonly.
- Removed top and bottom margins so that subtitles can be rendered anywhere on top of the player.
- The default player UI will now push subtitles out of the way when it is visible, instead of having a fixed 10% top and bottom margin.
- Made several improvements to MPEG-DASH playback on platforms with limited performance (such as Smart TVs).
π Issuesβ
- Fixed an issue where sometimes the ad is shown below the player after switching tabs on iOS and iPad devices.
- Fixed an issue where playback for HESP streams on iOS Safari 16 would not start.
- Fixed an issue where during play-out of a DASH stream on an EOS stb the first frames would sometimes loop a few times.
- Fixed an issue during Google DAI playback that could result in mismatched click-through URLs when given multiple Google DAI sources.
- Fixed an issue where sometimes the webworker would not load when using the LL-HLS pipeline.
Androidβ
π₯ Breaking Changesβ
- Align Google IMA SDK version used on all Android SDK platforms to 3.25.1.
π Issuesβ
- Fix an issue where the audio of an IMA advertisement could be heard after the player was destroyed.
- Fixed an issue where the state of the player would not be retained when switching to background/foreground whilst playing an Google IMA ad.
Unified Androidβ
β¨ Featuresβ
- Added
Player#setRenderingTarget(RenderingTarget)
API to switch between SurfaceView and TextureView.
π Issuesβ
- Fixed an issue where playback of a DASH stream would sometimes fail on parsing MP4 boxes.
iOSβ
π Issuesβ
- Fixed an issue where setting the nativePictureInPicture configuration would introduce unwanted behavior.
- Fixed an issue where the timeOffset and maxDuration values were -1 in the ad data returned by an adEvent.
- Fixed an issues where Ad properties on AdEvents were not properly populated while playing a Google DAI stream.
π 4.1.1 (2022/10/14)β
Webβ
π Issuesβ
- Fixed an issue where sometimes the webworker would not load when using the LL-HLS pipeline.
iOSβ
β‘ Improvementsβ
- Added an identifier to distinguish VerizonMediaAdBreaks.
π 4.1.0 (2022/09/26)β
Generalβ
β¨ Featuresβ
- Added support for Playlist Delta Updates in low-latency HLS.
π Issuesβ
- Fixed an issue where CEA-608 closed captions were not correctly detected after loading a second HLS stream into the player.
- Fixed an issue where the player would fail to play audio when setting the player's source directly to an HLS media playlist (without an HLS master playlist).
- Fixed an issue where the player could fail to start playback when the variant streams in the HLS master playlist do not have a
CODECS
attribute.
Webβ
β¨ Featuresβ
- Added the ability to modify the source URL returned by the Google DAI library before starting playback.
- Added an optional 'deviceID' property to AgamaPlayerConfiguration which if present will be used instead of the internally generated one.
π Issuesβ
- Fixed an issue where the player would error when parsing an MPEG-TS file that contained no data in the new HLS pipeline.
- Fixed an issue where the THEO ad integration would play all previously skipped ads in the post-roll ad break.
- Fixed an issue where attempting to play an HLS stream with MPEG-TS segments on WebOS 4.0 would crash the web page.
- Fixed an issue where WebVTT cues with a line position as a percentage could appear cut off.
- Fixed an issue on webOS 4.0 where sometimes a subtitle cue would remain on screen indefinitely.
Androidβ
π₯ Breaking Changesβ
- Removed deprecated
Player#requestMetrics(RequestCallback)
.
β¨ Featuresβ
- Added a flag in
THEOplayerGlobal#getSDKType()
API that returns the SDKType in use.
π Issuesβ
- Fixed an issue where play-out of a DRM protected stream would sometimes crash the player after switching sources multiple times.
Unified Androidβ
π₯ Breaking Changesβ
HespApi.EventListener#onAnalytic()
now passes a jsonValue parameter of typeString
instead of typeJSONObject
. The parameter contains a stringified json object.- Removed deprecated
Player#requestMetrics(RequestCallback)
.
β¨ Featuresβ
- Decreased the memory footprint for MPEG TS content playback.
- Added a flag in
THEOplayerGlobal#getSDKType()
API that returns the SDKType in use.
π Issuesβ
- Fixed an issue where enabling an audio or video track when playing a non-streamable media asset would sometimes crash the player.
- Fixed an issue where the player reset the non-streaming sources while switching in/out of fullscreen.
- Fixed an issue where
play
andplaying
events were not consistently dispatched during play-out of non-streaming media files. - Fixed an issue where playback would sometimes not start for HLS streams containing MPEG-TS segments that do not have an I-frame at start.
- Fixed an issue that would crash the player when attaching a listener to the Hesp API.
- Fixed an issue where ad details would not be passed when dispatching IMA ad events.
- Fixed an issue where a source with multiple IMA ads, which are scheduled on the same timeOffset, would only retain the last ad.
iOSβ
β¨ Featuresβ
- Expose Google DAI functions on THEOplayer/ads/dai to convert points in time between timelines including and excluding ads:
func contentTime(from streamTime: Double) -> Double
andfunc streamTime(from contentTime: Double) -> Double
.
π Issuesβ
- Fixed a bug that causes high CPU usages when playing videos with subtitles for more than 30 minutes.
π 4.0.0 (2022/08/31)β
Officially announcing THEOplayer 4.0β
Introducing a major version bump to THEOplayer 4.0. This version officially releases all the improvements and developments THEOplayer has achieved since version 3.0. THEOplayer 4.0 is backwards compatible for most features but includes some breaking changes per SDK. Please review them carefully in the respective changelog for your SDK.
-
Android SDK 4.0: Weβve added support for MPEG-TS, progressive MP4, casting and CSAI to our new high-performing Android pipeline.
-
LCEVC support: You can now play back LCEVC-enabled streams to deliver a richer viewer experience or to achieve bandwidth savings.
-
AWS MediaTailor: Leverage the AWS MediaTailor integration and easily track your client-side events cross-platform to discover how viewers interact with your ads.
-
New HLS pipeline: Weβve combined both HLS and LL-HLS features in our new HLS pipeline and additionally increased performance and stability on smart TVs and older devices.
-
React Native SDK: MP4 playback is available, thumbnail support has been added to the React Native sample app on Github and weβve updated our documentation to make sure you can easily get started!
Generalβ
π₯ Breaking Changesβ
- The new HLS pipeline is now enabled by default. Formerly known as "the LL-HLS pipeline", this pipeline adds support for low-latency HLS streaming, with full support for Widevine, PlayReady and FairPlay DRM. (If you prefer to stay on the old pipeline for now and migrate later, you can enable the
hls-legacy
feature flag on your SDK and setsource.hls.useLegacy
totrue
when configuring your source.) - ID3 cues now have their
startTime
set to the dispatch time, and theirendTime
set to the dispatch time of the next ID3 tag. Previously, theirendTime
was equal to the dispatch time and theirstartTime
was always 0, which renderedTextTrack.activeCues
useless. Users who want to observe ID3 cue activations should now use theenter
event (instead of theexit
event), or alternatively use thecuechange
event on the containing text track.
π Issuesβ
- Fixed an issue where the player would stall during live DASH playback that contained DRM when the entire availability window suddenly contained no DRM.
- Fixed an issue with AES-128 decryption using the new LL-HLS pipeline where the player would incorrectly parse the initialization vector.
Webβ
π₯ Breaking Changes and known limitationsβ
- Removed the deprecated DRM processor APIs, i.e.:
KeySystemConfiguration.certificateRequestProcessor
,.certificateResponseProcessor
,.licenseRequestProcessor
and.licenseResponseProcessor
. Use the Content Protection Integration API instead: https://docs.theoplayer.com/api-reference/web/theoplayer.registercontentprotectionintegration.md - The new HLS pipeline requires the HLS master playlist to correctly list all used audio and video codecs in the CODECS attribute of the #EXT-X-STREAM-INF tags. Otherwise, the player may fail to start playback or fail to play the audio or video track. Notably, when setting the source directly to an HLS media playlist (without a master playlist), the player may fail to play the audio track.
- Playing an HLS stream with AES-128 full-segment encryption requires the web page to be served over HTTPS.
- The new HLS pipeline performs soft quality switches, meaning that it plays the current buffer out before showing the quality switch (as opposed to rebuilding the buffer in the new quality).
β¨ Featuresβ
- Added automatic recovery when the player's buffer becomes too full. When the player fails to buffer the next segment because there's no more room in its buffer, it will now wait until the playhead has advanced further before retrying this segment. See
player.abr.maxBufferLength
for more information. This is currently only supported for MPEG-DASH streams. - Added support for loading cached streams in the LL-HLS pipeline using the Cache API.
- Allow changing the UI language dynamically with
player.ui.language(languageCode)
. - Added support for clickthroughs in Verizon Media Ads.
- Added support for default classes in WebVTT. Tags such as
<c.yellow>
now receive a default color according to https://www.w3.org/TR/webvtt1/#default-classes. - Added basic support for MP3 audio in the new HLS pipeline.
π Issuesβ
- Fixed an issue where certain nested
<div>
elements inside a TTML subtitle were not rendered. - Fixed an issue which caused the player to be stuck in an infinite loop on the end of a discontinuity with our legacy HLS pipeline.
- Fixed an issue where
<p>
tags in TTML subtitles did not correctly inherit thetts:textAlign
property from their parent region's style. - Fixed an issue where FairPlay streams would still use the new HLS pipeline instead of native playback on Safari.
- Fixed an issue where the browser could run out of memory over time while playing an HLS stream with high-resolution MPEG-TS segments in the new HLS pipeline.
Androidβ
π₯ Breaking Changesβ
- Removed deprecated THEOplayerConfig constructor in favor of
THEOplayerConfig.Builder
. - Removed deprecated
THEOplayerConfig#allowMixedContent(boolean)
. - Removed deprecated
THEOplayerConfig.Builder#googleIma(boolean)
in favor ofAdsConfiguration#googleImaConfiguration()
. - Removed deprecated
MediaTrack#setTargetQualities(List<Q> qualities)
in favor ofMediaTrack#setTargetQualities(QualityList)
. - Removed deprecated TextTrackDescription constructor in favor of
TextTrackDescription#Builder()
. - Removed deprecated SourceDescription constructors in favor of
SourceDescription#Builder()
. - Removed deprecated TypedSource constructors in favor of
TypedSource#Builder()
. - Removed deprecated TypedSource.Builder#setExperimentalRenderingEnabled(boolean) in favor of
TypedSource.Builder#setNativeRenderingEnabled(boolean)
. - Removed deprecated TypedSource#isExperimentalRenderingEnabled(boolean) in favor of
TypedSource#isNativeRenderingEnabled(boolean)
. - Removed deprecated
GoogleDaiConfiguration.Builder#sourceType(SourceType)
andGoogleDaiConfiguration#getSourceType()
in favor ofTypedSource.Builder#type(SourceType)
andTypedSource#getType()
respectively. - Removed deprecated DRM Configuration constructors in favor of respective Builder.
- Removed deprecated
ErrorEvent#getError()
in favor ofErrorEvent#getErrorObject()
. - Removed deprecated
ContentProtectionErrorEvent
methods. - Removed deprecated CachingParameters constructor in favor of
CachingParameters.Builder
. - Removed deprecated
Chromecast#setSource(SourceDescription)
in favor ofChromecast#setConnectionCallback(ChromecastConnectionCallback)
. - Removed deprecated
FullScreenManager#setAspectRatio(AspectRatio)
in favor ofPlayer#setAspectRatio(AspectRatio)
. - Removed deprecated
com.theoplayer.android.api.fullscreen.AspectRatio
enum in favor ofcom.theoplayer.android.api.player.AspectRatio
. - Removed deprecated SpotXAdDescription fields in favor of SpotXDataQueryParameter.
- Stopped providing THEOplayer Android MinApi16 SDK.
- Bumped minimum supported version to Android 5.0 (API level 21).
β¨ Featuresβ
- Exposed
traffickingParameters
in GoogleImaAd. - Expose
streamTimeForContentTime
andcontentTimeForStreamTime
for Google DAI.
π Deprecationsβ
- Deprecated static
AgamaPlayerConfiguration.Builder#agamaPlayerConfiguration(String)
constructors in favor ofAgamaPlayerConfiguration.Builder(String)
. - Deprecated static
AgamaSourceConfiguration.Builder#agamaSourceConfiguration(String, StreamType)
constructors in favor ofAgamaSourceConfiguration.Builder(String, StreamType)
. - Deprecated public YouboraOptions(String) constructor in favor of
YouboraOptions.Builder(String)
. - Deprecated static
YouboraOptions.Builder#youboraOptions()
constructors in favor ofYouboraOptions.Builder(String)
. - Deprecated public
YouboraOptions.Builder()
constructor in favor ofYouboraOptions.Builder(String)
. - Deprecated static
YouboraOptions.Builder#youboraOptions(String)
constructors in favor ofYouboraOptions.Builder(String)
. - Deprecated static
ChromecastMetadataDescription.Builder#chromecastMetadata()
constructor in favor ofChromecastMetadataDescription.Builder()
. - Deprecated static
GoogleDaiTypedSource.Builder#daiTypedSource(GoogleDaiConfiguration)
constructor in favor ofGoogleDaiTypedSource.Builder(GoogleDaiConfiguration)
. - Deprecated static
AbrStrategyConfiguration.Builder#abrStrategyConfiguration()
constructor in favor ofAbrStrategyConfiguration.Builder()
. - Deprecated static
AbrStrategyMetadata.Builder#abrStrategyMetadata()
constructor in favor ofAbrStrategyMetadata.Builder()
. - Deprecated static
DRMTodayConfiguration.Builder#drmToday(String)
constructor in favor ofDRMTodayConfiguration.Builder(String)
. - Deprecated static
DRMTodayConfiguration.Builder#drmToday(KeySystemConfiguration)
constructor in favor ofDRMTodayConfiguration.Builder(KeySystemConfiguration)
. - Deprecated static
IrdetoConfiguration.Builder#irdeto(String)
constructor in favor ofIrdetoConfiguration.irdeto(String)
. - Deprecated static
IrdetoConfiguration.Builder#irdeto(KeySystemConfiguration)
constructor in favor ofIrdetoConfiguration.Builder(KeySystemConfiguration)
. - Deprecated static
KeyOSDRMConfiguration.Builder#keyOsDrm()
constructor in favor ofKeyOSDRMConfiguration.Builder()
. - Deprecated static
KeyOSKeySystemConfiguration.Builder#keyOsKeySystemConfiguration(String)
constructor in favor ofKeyOSKeySystemConfiguration.Builder(String)
. - Deprecated static
TitaniumDRMConfiguration.Builder#titaniumDrm(String, String, String)
constructor in favor ofTitaniumDRMConfiguration.Builder(String, String, String)
. - Deprecated static
VudrmDRMConfiguration.Builder#vudrmDrm(String)
constructor in favor ofVudrmDRMConfiguration.Builder(String)
. - Deprecated static
ClearkeyKeySystemConfiguration.Builder#clearkeyKeySystemConfiguration(String)
constructor in favor ofClearkeyKeySystemConfiguration.Builder(String)
. - Deprecated static
DRMConfiguration.Builder#fairplayDrm(FairPlayKeySystemConfiguration)
constructor in favor ofnew DRMConfiguration.Builder().fairplay(FairPlayKeySystemConfiguration)
. - Deprecated static
DRMConfiguration.Builder#playreadyDrm(KeySystemConfiguration)
constructor in favor ofnew DRMConfiguration.Builder().playready(KeySystemConfiguration)
. - Deprecated static
DRMConfiguration.Builder#widevineDrm(KeySystemConfiguration)
constructor in favor ofnew DRMConfiguration.Builder().widevine(KeySystemConfiguration)
. - Deprecated static
DRMConfiguration.Builder#clearkeyDrm(ClearkeyKeySystemConfiguration)
constructor in favor ofnew DRMConfiguration.Builder().clearkey(ClearkeyKeySystemConfiguration)
. - Deprecated static
FairPlayKeySystemConfiguration.Builder#fairPlayKeySystemConfiguration(String, String)
constructor in favor ofFairPlayKeySystemConfiguration.Builder(String, String)
. - Deprecated static
KeySystemConfiguration.Builder#keySystemConfiguration(String)
constructor in favor ofKeySystemConfiguration.Builder(String)
. - Deprecated public KeySystemConfiguration constructors in favor of
KeySystemConfiguration.Builder(String)
. - Deprecated static
YoSpaceDescription.Builder#yoSpaceDescription()
constructor in favor ofYoSpaceDescription.Builder()
. - Deprecated static
YoSpaceLogLevelConfiguration.Builder#yoSpaceLogLevelConfiguration()
constructor in favor ofYoSpaceLogLevelConfiguration.Builder()
. - Deprecated static
TextTrackDescription.Builder#textTrackDescription()
constructor in favor ofTextTrackDescription.Builder(String)
. - Deprecated static
TextTrackDescription.Builder#textTrackDescription(String)
constructor in favor ofTextTrackDescription.Builder(String)
. - Deprecated static
TextTrackDescription.Builder#src(String)
constructor in favor ofTextTrackDescription.Builder(String)
. - Deprecated static
TypedSource.Builder#typedSource()
constructor in favor ofTypedSource.Builder(String)
. - Deprecated static
TypedSource.Builder#typedSource(String)
constructor in favor ofTypedSource.Builder(String)
. - Deprecated
TypedSource.Builder#src(String)
method in favor ofTypedSource.Builder(String)
. - Deprecated static
SourceDescription.Builder#sourceDescription()
constructor in favor ofSourceDescription.Builder(String...)
orSourceDescription.Builder(TypedSource...)
. - Deprecated static
SourceDescription.Builder#sourceDescription(String...)
constructor in favor ofSourceDescription.Builder(String...)
. - Deprecated static
SourceDescription.Builder#sourceDescription(TypedSource...)
constructor in favor ofSourceDescription.Builder(TypedSource...)
. - Deprecated static
SourceDescription.Builder#sourceDescription(VerizonMediaSource...)
constructor in favor ofSourceDescription.Builder(VerizonMediaSource...)
. - Deprecated
SourceDescription.Builder#sources(String...)
method in favor ofSourceDescription.Builder(String...)
. - Deprecated
SourceDescription.Builder#sources(TypedSource...)
method in favor ofSourceDescription.Builder(TypedSource...)
. - Deprecated public THEOplayerAdDescription constructors in favor of
THEOplayerAdDescription.Builder(String)
. - Deprecated static
THEOplayerAdDescription.Builder#adDescription()
constructor in favor ofTHEOplayerAdDescription.Builder(String)
. - Deprecated static
THEOplayerAdDescription.Builder#adDescription(String)
constructor in favor ofTHEOplayerAdDescription.Builder(String)
. - Deprecated
THEOplayerAdDescription.Builder#source(String)
method in favor ofTHEOplayerAdDescription.Builder(String)
. - Deprecated public GoogleImaAdDescription constructors in favor of
GoogleImaAdDescription.Builder(String)
. - Deprecated static
GoogleImaAdDescription.Builder#googleImaAdDescription()
constructor in favor ofGoogleImaAdDescription.Builder(String)
. - Deprecated static
GoogleImaAdDescription.Builder#googleImaAdDescription(String)
constructor in favor ofGoogleImaAdDescription.Builder(String)
. - Deprecated
GoogleImaAdDescription.Builder#source(String)
method in favor ofGoogleImaAdDescription.Builder(String)
. - Deprecated static
SpotXAdDescription.Builder#spotxAdDescription()
constructor in favor ofSpotXAdDescription.Builder(String)
. - Deprecated static
SpotXAdDescription.Builder#spotxAdDescription(String)
constructor in favor ofSpotXAdDescription.Builder(String)
. - Deprecated static
SpotXAdDescription.Builder#spotxAdDescription(SpotXAdDescription)
constructor in favor ofSpotXAdDescription.Builder(SpotXAdDescription)
. - Deprecated
SpotXAdDescription.Builder#id(String)
method in favor ofSpotXAdDescription.Builder(String)
. - Deprecated public
SpotXAdDescription.Builder()
constructor in favor ofSpotXAdDescription.Builder(String)
. - Deprecated static
SpotXAdDescription.SpotXDataQueryParameter#spotxDataQueryParameters()
constructor in favor ofSpotXAdDescription.SpotXDataQueryParameter.Builder()
. - Deprecated static
SpotXAdDescription.SpotXDataQueryParameter#spotxDataQueryParameters(SpotXDataQueryParameter)
constructor in favor ofSpotXAdDescription.SpotXDataQueryParameter.Builder(SpotXDataQueryParameter)
. - Deprecated static
SpotXAdDescription.SpotXData#spotxData()
constructor in favor ofSpotXAdDescription.SpotXData.Builder()
. - Deprecated static
SpotXAdDescription.SpotXData#spotxData(SpotXData)
constructor in favor ofSpotXAdDescription.SpotXData.Builder(SpotXData)
.
Unified Androidβ
π₯ Breaking Changesβ
- Bumped minimum supported version to Android 5.0 (API level 21).
β¨ Featuresβ
- Added support for MediaTailor sources.
- Added MediaTailor integration with progression tracking functionality.
π Issuesβ
- Fixed the HTTP callback crash on slow phones
- Fixed an issue where the ABR controller would not take into account the player size for HESP streams.
iOSβ
π₯ Breaking Changesβ
- Removed deprecated
THEOplayerConfiguration
constructors - Removed
Chromecast.source
API in favor ofChromecast.setChromecastConnectionDelegate
- Removed
THEOplayer.unload()
method in favor ofTHEOplayer.destroy()
- Removed deprecated
VRConfiguration
constructors
π Deprecations β
- Swift 5.3 (XCode 12.4) is deprecated.
- Please start migrating your projects to be compatible with the Swift 5.5 compiler (Xcode 13) or later. Starting from THEOplayerSDK 5.0.0 we will only support Swift 5.5 or higher.
tvOSβ
π Issuesβ
- Various UI and presentation mode fixes including: better focus when in fullscreen, fixed issues when exiting fullscreen, improved PictureInPicture button animation, and player controls now auto fade out when inactive.
π Deprecationsβ
- Swift 5.3 (XCode 12.4) is deprecated.
- Please start migrating your projects to be compatible with the Swift 5.5 compiler (Xcode 13) or later. Starting from THEOplayerSDK 5.0.0 we will only support Swift 5.5 or higher.
π 3.7.0 (2022/08/01)β
Generalβ
β¨ Featuresβ
- Improved LL-HLS playlist synchronization on live streams when discontinuities are present.
- Support seeking to a program date time in LL-HLS using
player.currentProgramDateTime
.
π Issuesβ
- Fixed an issue where seeking back would result downloading the same segments for a while using the LL-HLS pipeline.
- Fixed a crash in the LL-HLS pipeline when a partial segment does not contain an SPS or PPS NAL.
- Fixed an issue where
#EXT-X-PRELOAD-HINT
tags withBYTERANGE-START
and withoutBYTERANGE-LENGTH
were parsed incorrectly in the LL-HLS pipeline. - Increased timeout on LL-HLS playlist blocking requests to 3*targetDuration.
- Fixed an issue where LL-HLS playlists would not be synced correctly.
Webβ
β¨ Featuresβ
- Enabled LCEVC enhancements when playing LCEVC content using the LL-HLS and DASH pipelines. This can be activated by adding
lcevc: true
to the source description and including the LCEVC SDK on your web page. - Exposed
streamTimeForContentTime
andcontentTimeForStreamTime
for Google DAI. - Added a flag in the Google DAI API to enable and disable snapback behaviour.
β‘ Improvementsβ
- Improved handling of the tracking events for the MediaTailor integration.
π Issuesβ
- Fixed an issue where the player would stall indefinitely for a live stream using the LL-HLS pipeline once it got outside of the DVR window.
- Fixed an issue where embedded vtt subtitles were not rendered during native playback.
- Fixed an issue where changing between two text tracks would result in not removing the cue of the disabled text track.
- Fixed an issue where the player using the LL-HLS pipeline could fetch more data from a stream than needed which caused an error.
- Fixed an issue where FairPlay streams would inadvertently use the LL-HLS pipeline instead of native playback on Safari.
- Fixed an issue where pre-rolls would be skipped when setting a new source and using the default THEO ads integration.
Androidβ
π Issuesβ
- Fixed an issue where audio of a Google IMA ad would still play in a secondary activity after it was destroyed.
Unified Androidβ
π Issuesβ
- Fixed an issue where DASH streams would sometimes stall when starting playback.
iOSβ
β¨ Featuresβ
- Added the possibility for DRM configurations to hold both a Widevine and a FairPlay KeySystemConfiguration using the new MultiplatformDRMConfiguration and KeySystemConfigurationCollection.
- Added support for changing VerizonMedia skipOffsets while playing a video.
- Exposed
traffickingParameters
for Google IMA. - Added MediaTailor integration support by introducing a new
TypedSource
:MediaTailorSource
.
π Deprecationsβ
- The classes
FairPlayDRMConfiguration
,WidevineDRMConfiguration
and their corresponding ObjC equivalents are deprecated in favor of the newMultiplatformDRMConfiguration
. - Deprecated the initializers for pre-integartion DRM configurations with the FairPlay specific
licenseAcquisitionURL:
in favor of the new initializer with thekeySystemConfigurations:
parameter.
tvOSβ
β¨ Featuresβ
- Added MediaTailor integration support by introducing a new
TypedSource
:MediaTailorSource
.
π 3.6.1 (2022/07/12)β
Webβ
π Issuesβ
- Fixed an issue where the player would stall indefinitely for a live stream using the LL-HLS pipeline once it got outside of the DVR window.
- Fixed an issue where embedded vtt subtitles were not rendered during native playback.
- Fixed an issue where changing between two text tracks would result in not removing the cue of the disabled text track.
Androidβ
π Deprecationsβ
- Deprecated
fullscreen.AspectRatio
in favor ofplayer.AspectRatio
.
Unified Androidβ
β¨ Featuresβ
- Introduced the MPEG TS content playback for native Android pipeline
- Added support for
setAspectRatio(AspectRatio)
. - Added support for progressive MP4/MP3 playback.
π Issuesβ
- Adjust subtitles size when going in/out of fullscreen.
π 3.6.0 (2022/07/05)β
Generalβ
β¨ Featuresβ
- Added support for
player.preload
in the LL-HLS pipeline. - Added support for
player.abr.targetBuffer
and.bufferLookbackWindow
in the LL-HLS pipeline. - Added support for
player.abr.strategy
in the LL-HLS pipeline. - Added support for setting preferredKeySystems for DRM HESP streams.
β‘ Improvementsβ
- Improved ABR algorithm to take screen size into account for HESP streams.
AudioTrack.label
now uses theNAME
attribute of the associated#EXT-X-MEDIA
tag for alternative audio renditions in the LL-HLS pipeline.- Improved parsing of the license downloaded from
licenseUrl
.
π Issuesβ
- Fixed an issue where HESP playback doesn't start when a response interceptor is added to the Network API.
- Fixed an issue where the player could sometimes stall indefinitely when seeking backwards over a discontinuity in the LL-HLS pipeline.
- Fixed an issue where the player would crash with an "Invalid media buffer" error when switching qualities on certain streams in the LL-HLS pipeline.
- Fixed an issue where MPEG-TS segments containing H.264 NALs with certain NAL types where not accepted by the LL-HLS pipeline.
- Fixed an issue where seekable doesn't update when the stream has combined audio and video.
- Fixed an issue where sometimes switching a WEBVTT text track without cues would cause an error.
- Fixed an issue where the player could stall on a discontinuity switch when using the LL-HLS pipeline.
Webβ
β¨ Featuresβ
- Added ability to configure Google IMA OmidAccessModeRules.
π Issuesβ
- Fixed an issue where abr selection didn't happen on smart TV's when using the LL-HLS pipeline.
- Fixed an issue where VerizonMedia contentNotification set to true was broken.
- Fixed an issue where player.currentProgramDateTime sometimes didn't update correctly if the stream has combined audio and video.
- Fixed an issue with Google-IMA where the player would become unresponsive when pausing during a mid-roll ad.
- Fixed an issue where setting playAdsAfterTime on the player source would cause VMAP ads using the Google IMA integration to be completely ignored.
- Fixed an issue where MOAT pixels were only sent for the first ad in an adbreak.
Androidβ
β¨ Featuresβ
- Added support for MediaTailor sources.
- Added
setSkipOffset(offset)
for Verizon Media adbreaks, to set the time after which an adbreak can be skipped.
Unified Androidβ
β¨ Featuresβ
- Added support to register custom DRM integrations.
π Issuesβ
- Fixed an issue where a play() would have no effect if called in quick succession of setSource().
- Fixed an issue where the player would not pause when the app goes to the background.
iOSβ
β¨ Featuresβ
- Added
VerizonMediaSource.prefix
to change the prefix for Verizon Media (Edgecast) Preplay and Asset Info API requests.
π Issuesβ
- Fixed an issue where
CastStrategy.auto
was not taken into account while using Chromecast. - Fixed an issue where text track AddCueEvents were sometimes missing.
π 3.5.0 (2022/06/02)β
Generalβ
β¨ Featuresβ
- Added support for ID3 metadata in the LL-HLS pipeline.
- Added support for ID3 carriage in CMAF for DASH streams. (https://aomediacodec.github.io/id3-emsg/)
- Added support for CEA-608 closed captions in the LL-HLS pipeline.
- Added support for Fairplay DRM HESP streams.
β‘ Improvementsβ
- Improve ABR algorithm for HESP streams.
- Changed goLive to take the latency configuration into account to determine the time to seek to.
- Improve the types of the text track API events.
π Issuesβ
- Fixed an issue where WebVTT cue settings were not respected for HLS subtitle renditions.
- Fixed an issue where the X-TIMESTAMP-MAP metadata header was not respected when parsing WebVTT subtitles in the LL-HLS pipeline.
- Fixed an issue where
#EXT-X-BYTERANGE
tags without an offset were not recognized in the LL-HLS pipeline. - Fixed an issue where a DASH manifest containing a subsegmentStartsWithSAP attribute set to a non-numeric would crash the player.
Webβ
β¨ Featuresβ
- Added
player.latency
API for managing low-latency live playback.
π Issuesβ
- Fixed an issue where the player would get stuck fetching the same segment of DASH live streams.
- Fixed an issue where the player could sometimes get into an infinite loop when trying to jump a gap on certain HLS streams in the LL-HLS pipeline.
- Fixed an issue where for an MPEG-TS stream using the LL-HLS pipeline it could stall on a discontinuity.
- Fixed an issue where sometimes the AirPlay button was shown when AirPlay is not supported.
- Fixed an issue where an incorrect timescale rescaling would break playback on Tizen 2 devices.
Androidβ
β¨ Featuresβ
- Added
FullScreenManager.setAspectRatio(AspectRatio aspectRatio)
, to configure what the aspect ratio of the content is. - Added
VerizonMediaSource.Builder#prefix(String)
to change the prefix for Verizon Media (Edgecast) Preplay and Asset Info API requests. - Added support for static access to player version APIs via
THEOplayerGlobal.getVersion()
andTHEOplayerGlobal.getPlayerSuiteVersion()
π Issuesβ
- Fixed an issue where play-out of a DRM protected stream would fail after switching sources multiple times.
Unified Androidβ
β¨ Featuresβ
- Allow querying the source of a side-loaded text track and whether it is a forced text track or not.
π Issuesβ
- Fixed an issue where the player sometimes crashes if multiple players are configured in parallel.
- Fixed an issue where the player would sometimes crash on play-out of an HLS stream with text tracks.
- Fixed an issue where the Cast module crashed when GooglePlayServices was missing from the device.
- Fixed an issue where DRM playback would fail when using multiple players on Huawei devices.
iOSβ
β¨ Featuresβ
- Added support for
canStartPictureInPictureAutomaticallyFromInline
in Native Picture-in-Picture. - Exposed the src property on the iOS TextTrack API
π Issuesβ
- Fixed an issue where start-up time was too long for certain LL-HLS streams
- Fixed a bug that would crash the containing app when playing a video with a sideloaded text track in combination with an ad.
- Fixed an API documentation error for the AspectRatio property where the descriptions for fill and aspectFill were mixed up.
π 3.4.0 (2022/05/05)β
Generalβ
β¨ Featuresβ
- Added support for missing keyframes at the start of a segment for LL-HLS.
- Added support for sideloaded text tracks in the LL-HLS pipeline.
π Issuesβ
- Fixed an issue where the LL-HLS pipeline would show a duplicate audio track for variant streams without a
CODECS
attribute. - Fixed an issue where a forced TextTrack would not be correctly enabled/disabled after a track switch.
Webβ
β¨ Featuresβ
- Added MediaTailor integration with progression tracking functionality.
- Added support for packed audio segments (.aac files) in the LL-HLS pipeline.
- Added
VerizonMediaSource.prefix
to change the prefix for Verizon Media (Edgecast) Preplay and Asset Info API requests. - Added support for
<font color>
tags in SubRip (SRT) subtitles. - Added the ability to skip scheduled ads by setting
SourceDescription.playAdsAfterTime
. - Added support for
line
setting in WebVTT subtitles. - Added support for the following MediaTailor tracking events: 'pause', 'resume', 'mute', 'unmute', 'fullscreen', 'exitFullscreen' and 'engagedView'.
- Enabled MPEG-TS support by default for the LL-HLS pipeline.
π Issuesβ
- Fixed an issue that caused the player to ignore the sub second part of IMA ad time offsets.
- Fixed an issue where the player would not give a clear error when setting an invalid Yospace source.
- Fixed an issue on Tizen 2.4 where the player would occassionally throw an
InvalidStateError
for certain HTTP requests. - Fixed an issue on Tizen 2.4 where the LL-HLS pipeline would crash on certain MPEG-TS segments containing large media timestamps.
- Fixed a bug where Google IMA ads would stop being scheduled after receiving an empty ad break.
- Fixed a bug where player.ads.scheduledAdBreaks would contain ads that have already played.
- Fixed an issue where Google IMA ads would sometimes not be scheduled correctly when using a percentage string as the timestampOffset.
- Fixed an issue where the LL-HLS pipeline failed to parse certain MPEG-TS segments containing ID3 tags spanning multiple MPEG-TS packets.
- Fixed an issue where the player would falsely think it has ended after playing an IMA mid-roll ad.
- Fixed an issue where the DAI adTagParameters configuration would not be passed to the DAI StreamRequest.
- Fixed an issue where the player sometimes crashes on the first segment of a livestream if audio starts slightly before video when using the LL-HLS pipeline on Samsung Tizen 2.4.
Unified Androidβ
β¨ Featuresβ
- Added support for Google Cast integration.
- Added synchronous APIs on the Player class.
π Issuesβ
- Fixed an issue where on some AndroidTV devices play-out of Widevine protected streams would fail.
π Deprecationsβ
- The
Player#requestBuffered(RequestCallback<TimeRanges> callback)
is deprecated in favor ofPlayer#getBuffered()
. - The
Player#requestCurrentTime(RequestCallback<Double> callback)
is deprecated in favor ofPlayer#getCurrentTime()
. - The
Player#requestPlayed(RequestCallback<TimeRanges> callback)
is deprecated in favor ofPlayer#getPlayed()
. - The
Player#requestSeekable(RequestCallback<TimeRanges> callback)
is deprecated in favor ofPlayer#getSeekable()
. - The
Player#requestCurrentProgramDateTime(RequestCallback<Date> callback)
is deprecated in favor ofPlayer#getCurrentProgramDateTime()
. - The
Player#requestVideoHeight(RequestCallback<Integer> callback)
is deprecated in favor ofPlayer#getVideoHeight()
. - The
Player#requestVideoWidth(RequestCallback<Integer> callback)
is deprecated in favor ofPlayer#getVideoWidth()
. - The
Ads#requestPlaying(RequestCallback<Boolean> callback)
is deprecated in favor ofAds#isPlaying()
. - The
Ads#requestCurrentAds(RequestCallback<List<Ad>> callback)
is deprecated in favor ofAds#getCurrentAds()
. - The
Ads#requestCurrentAdBreak(RequestCallback<AdBreak> callback)
is deprecated in favor ofAds#getCurrentAdBreak()
. - The
Ads#requestScheduledAds(RequestCallback<List<Ad>> callback)
is deprecated in favor ofAds#getScheduledAds()
.
iOSβ
β¨ Featuresβ
- Added new formats to specify time offsets for ads. You can now also specify them in a number of seconds and using a timecode.
π Issuesβ
- Fixed an issue that caused time offsets in IMA ads to be calculated not accurately.
- Fixed an issue where ContentProtection headers were not handled correctly.
π 3.3.0 (2022/04/12)β
Generalβ
β¨ Featuresβ
- Add support for
forced-subtitle
DASH role scheme value.
π Issuesβ
- Fixed a bug where switching tracks using the player API when chromecasting would not disable the previously active track.
- Fixed an issue where we would keep fetching the playlists of a previous LL-HLS live stream after we switched to a new source.
Webβ
π₯ Breaking Changesβ
- Changed the
averageBandwidth
property on qualities to the average bandwidth instead of the bandwidth for HLS and HESP streams.
β¨ Featuresβ
- Added basic support for MPEG-TS segments in the LL-HLS pipeline.
- Added support for converting a v1 PSSH box into a v0 PSSH box on EOS stbs.
β‘ Improvementsβ
- Improved overall performance by internally using native JavaScript
Promise
s when supported.
π Issuesβ
- Fixed an issue where no ads would be returned by THEOAds if a single ad in an adpod returns a VAST error.
- Fixed an issue where ABR could not reach qualities higher than 1080p on a Tizen device.
- Fixed an issue where sometimes seeking back while the player is paused will cause an indefinite stall for HLS streams.
- Fixed an issue where thumbnails would not be displayed correctly for a stream that contains a track with tiled thumbnails.
Androidβ
π Issuesβ
- Fixed an issue where the player would crash in apps targeting Android 12 (API level 31) when entering PiP mode using the PipManager.
- Fixed and issue where play-out in PiP mode would not work.
π 3.2.3 (2022/04/05)β
Androidβ
π Issuesβ
- Fixed an issue where some events related to advertisements would not be triggered for Verizon Media sources.
π 3.2.2 (2022/04/05)β
iOSβ
π Issuesβ
- Fixed an issue where removeEventListener would not work as intended.
π 3.2.1 (2022/03/25)β
iOSβ
π Issuesβ
- Fixed an issue when setting a source while Airplaying caused an infinite play/pause loop.
π 3.2.0 (2022/03/11)β
Generalβ
β¨ Featuresβ
- Support switching between variant streams containing both audio and video and alternative audio renditions when using LL-HLS.
- Added support for switching between DASH representations with incompatible codecs.
β‘ Improvementsβ
- Improve latency calculation for HESP streams.
- Added several stability improvements for LL-HLS.
π Issuesβ
- Fixed an issue where the player would incorrectly choose an AC-3 variant stream when using LL-HLS, even when the platform does not support this codec.
- Fixed an issue where the
currentLatency
value would be wrong during start of playback of an HESP stream. - Fixed an issue where audio and video were out of sync for some LL-HLS streams.
- Fixed an issue where the player sometimes tried to download a parent segment which does not yet have all of its partial segments in LL-HLS.
- Fixed an issue where the player would throw an error when trying to parse an incorrect language in the
mdhd
box.
Webβ
β‘ Improvementsβ
- Improve startup time when autoplay is enabled.
π Issuesβ
- Fixed an issue where play-out of an HLS stream would sometimes stall indefinitely before starting a short discontinuity.
Androidβ
π Issuesβ
- Fix an issue where theoplayer sources could not be used for testing purposes without providing a license key.
- Fixed an issue where the IMA advertisements would still play after
stop()
was called on the player. - Fixed an issue where the player would crash on starting play-out of an HLS stream.
Unified Androidβ
β¨ Featuresβ
- Added documentation for GoogleImaAdEventType.
π Issuesβ
- Fixed an issue where the player would crash when creating multiple instances.
iOSβ
π Issuesβ
- Fix an issue where the player would not fill the available space when using native VR.
- Fixed an issue that caused unwanted volume changes after playing an ad using the Google IMA iOS SDK.
tvOSβ
π Issuesβ
- Fixed an issue where the license check would throw an error after instantiating a new THEOplayer from a tvOS application
π 3.1.1 (2022/02/21)β
Androidβ
π Issuesβ
- Fix an issue where
CastStrategy.MANUAL
was ignored and the player automatically connected to Cast.
π 3.1.0 (2022/02/14)β
Generalβ
π Issuesβ
- Fixed an issue where old avc1 codecs would error for the LL-HLS pipeline.
- Fixed an issue where both captions and subtitles could be enabled at the same time.
- Fixed selected values not being translated in the subtitle options menu.
Webβ
β¨ Featuresβ
- Added logic to set a prioritised list of preferred audio/video codecs for initial quality selection. Works for DASH and LL-HLS streams.
- Added the ability to override ec-3 audio codec filtering for Tizen and WebOS by setting ec-3 as a preferred codec in SourceDescription.abr or PlayerConfiguration.abr.
- Added support for forced narrative subtitles on DASH.
π Issuesβ
- Fixed an issue with decoding HESP streams on Edge 92 on some Windows 10 devices.
Androidβ
π Issuesβ
- Fix an issue where adding Chromecast dependencies was required even if it was not in use.
Unified Androidβ
π₯ Breaking Changesβ
- Starting from Unified Android SDK v3.0.0 the minimum Java version required is 8.
β¨ Featuresβ
- Add support for Google IMA integration.
π Issuesβ
- Fixed an issue where the player would show a black screen when changing orientation in paused state.
- Fixed an issue where the player would sometimes stall when switching periods in a multi-period DASH stream.
- Fix an issue where adding Chromecast dependencies was required even if it was not in use.
iOSβ
β¨ Featuresβ
- Add support for M1/arm64 simulator architecture where compatible. For more information, please visit: https://docs.theoplayer.com/faq/74-how-to-use-theoplayer-ios-sdk-on-m1.md
π Issuesβ
- Fixed an issue that caused the player to resume playing after pausing while casting to an AirPlay Device.
- Fixed an issue that made the chromecast state to be always
unavailable
. - Fixed a bug where loaded data and loaded metadata events would not dispatch.
- Improved memory management.
- Fixed an issue where in some cases requestPlayed would return inaccurate data.
tvOSβ
β¨ Featuresβ
- Add support for M1/arm64 simulator architecture where compatible. For more information, please visit: https://docs.theoplayer.com/faq/74-how-to-use-theoplayer-ios-sdk-on-m1.md
π Issuesβ
- Fixed a bug where loaded data and loaded metadata events would not dispatch.
- Improved memory management.
- Fixed an issue where in some cases requestPlayed would return inaccurate data.
π 3.0.0 (2022/01/17)β
Officially announcing THEOplayer 3.0β
Introducing a major version bump to THEOplayer 3.0. This version officially releases all the improvements and developments THEOplayer has achieved in the last months. This latest version is now stable, backward compatible, and recommended for general use.
Unified Androidβ
- A single SDK for all Android devices, including mobile, Smart TVs, and STBs.
- Supports clear and encrypted playback through (LL-)DASH, (LL-)HLS, and HESP.
- Support Widevine level 1 DRM encryption.
- Modular connectors allow the integration of preferred functionalities.
- Features:
- Closed captions/subtitle: TTML, WebVTT, CEA-608 and CEA-608 over CEA-708.
- Metadata formats: Out-of-band DASH eventstream, in-band EMSG metadata & ID3.
β Noteβ
Some features are not yet supported, therefore, only the above-mentioned features are available.
Package Managersβ
- Allow engineering teams to save time-to-live.
- Automated version management allows THEOplayer customers to bump to the latest version without reaching the portal.
- Much lower build/ download time across all platforms, especially on iOS and Android.
- Modular development approach.
Smart TVs & STBsβ
- Support for a wide range of Tizen and WebOS versions, including legacy versions (Tizen 2.4+ and WebOS 3.0+).
- Performant seamless multi-period DASH playback with and without DRM on Tizen and WebOS supporting advanced SSAI use-cases.
- Optimized performance on RDK and Android TV STBs.
- Supports stable playback with DRM and subtitles on STBs.
Low Latencyβ
- Support superior playback through LL-DASH and LL-HLS on all THEOplayer SDKs.
- Tested low latency capabilities end-to-end.
High Efficiency Streaming through HESPβ
- Sub-second latency at scale.
- Fast channel change, immediately at the live latency cross-platform.
- Improved ABR.
Webβ
π Issuesβ
- Fixed an issue where we would sometimes not error when an HESP stream goes offline.
- Fixed a compatibility issue when using the player UI with react-native-web.
- Fixed an issue where playback on EOS stb devices would not be smooth.
- Fix an issue where VR streams were not rendered properly on mobile Safari 15.2
π Deprecationsβ
- Support for Internet Explorer will be removed. Please, note that IE11 is the latest version and it will no longer be supported. For additional information, it is recommended to follow the guidance from Microsoft to use Edge as the default browser (Please refer to: https://docs.microsoft.com/en-us/lifecycle/faq/internet-explorer-microsoft-edge#what-is-the-lifecycle-policy-for-internet-explorer-)
Androidβ
π Issuesβ
- Fixed an issue where calling requestFullScreen before the player is done initializing caused the player to ignore it.
- Fixed an issue where Audiotrack switching on Chromecast was broken on the UI.
- Fixed an issue where updating app to targetSdkVersion 31 (Android 12) and using cast framework v20.1.0 triggered a crash whenever a casting session is started.
π Deprecationsβ
- Deprecate THEOplayer Android MinApi16 SDK.
- Last major version of the THEOplayer Android SDK to support Android 4.x (API level 16). The next minimum version is Android 5.0 (API level 21)
Unified Androidβ
π Issuesβ
- Fixed an issue where the player would potentially crash when the hosting application would go to the background.
- Fixed an issue where play-out of DRM-protected streams would sometimes fail on mobile Samsung devices.
iOSβ
π Issuesβ
- Fix an issue where fullscreen device orientation was broken when using fullscreenOrientationCoupling.
π 2.92.0 (2021/12/17)β
Generalβ
π Issuesβ
- Fixed an issue where the player would freeze after a quality switch when using the LL-HLS pipeline.
Webβ
β¨ Featuresβ
- Exposed
creativeId
,adSystem
,title
andwrapper
properties in the API for Google DAI ads.
π Issuesβ
- Fixed an issue where HESP ABR would drop to lowest quality due to an underestimated bandwidth estimate on certain streams.
- Fixed an issue where the player would not automatically prune based on the
bufferLookbackWindow
in theABRConfiguration
. - Fixed an issue with the Verizon ad integration sometimes not dispatching
adend
andadbreakend
events on post-roll ads. - Fixed an issue with filtering of unsupported DASH representations.
- Fixed an issue where MPEG-DASH live streams with very large media timestamps failed to play on Tizen 3.
Androidβ
π Issuesβ
- Fixed an issue where setting the target quality of an audio/video track would not work when playing HLS.
Android TVβ
π Issuesβ
- Fixed an issue where Verizon ad events would not be dispatched.
Unified Androidβ
β¨ Featuresβ
- Added support for rendering CEA608 subtitles.
π Issuesβ
- Fixed an issue where play-out of some DRM protected streams would fail.
tvOSβ
π Issuesβ
- Fixed an issue where requestCurrentProgramDateTime would return nil in tvOS
π 2.91.1 (2021/11/29)β
Webβ
π Issuesβ
- Fixed an issue where the player would not automatically prune based on the
bufferLookbackWindow
in theABRConfiguration
.
Androidβ
π Issuesβ
- Fixed an issue where setting the target quality of an audio/video track would not work when playing HLS.
π 2.91.0 (2021/11/18)β
Generalβ
β¨ Featuresβ
- Added fallback logic for failing rendition playlist fetches in the LL-HLS pipeline.
- Added fallback logic for failing segment/part/map/preload hint fetches in the LL-HLS pipeline.
π Issuesβ
- Fixed a UI issue when receiving empty ad breaks from the Verizon ad integration.
- Fixed an issue causing indefinite buffering on Firefox when playing HLS streams.
Webβ
β¨ Featuresβ
- Added support for the Label tag in AdaptationSets for DASH streams.
π Issuesβ
- Fixed an issue where replaying or seeking after a DASH stream has ended could result in glitches or stuttering on Tizen 4 or lower and webOS 4 or lower.
- Fixed an issue where ads could not be scheduled after the last ad had finished playing.
- Fixed an issue where the notification about an upcoming ad was not removed after the ad finished playing.
- Fixed an issue where the live UI would not show when playing a LL-HLS live stream.
- Fixed an issue where a black screen showed up on a quality change for HESP streams on iOS Safari.
- Fixed an issue where a stream with ISOBMFF segments that contain multiple tracks would only retain the first track.
- Fixed an issue where Verizon Ad events were being dispatched before playback started.
Unified Androidβ
π Issuesβ
- Fixed an issue where enabling or disabling audio and video tracks in the callback of an
addtrack
event would not work. - Fixed an issue where a multi-period DASH stream would stall during start of playback and when transitioning between periods.
- Fixed an issue where an expired DRM license would not be renewed during play-out.
- Fixed an issue where WebVTT subtitles containing markup tags would not be properly displayed.
iOSβ
π Issuesβ
- Fix an issue where the player would be in a paused state after seeking or during audio interruptions.
- Fix an issue where the muted state would not be reflected correctly in the API.
- Fix an issue where player would crash after trying to re-cache a previously cached source.
- Fix an issue where a caching task that hadn't started downloading yet would be removed when going to background.
π 2.90.1 (2021/10/29)β
iOSβ
π Issuesβ
- Fixed an issue where initializing a non-chromeless player failed
π 2.90.0 (2021/10/21)β
Generalβ
β‘ Improvementsβ
- Added
mediaType
andsubType
to segment requests from the Network API when playing a DASH or HLS stream.
π Issuesβ
- Fixed an issue where HESP playback would not start in recent Safari versions.
Webβ
β¨ Featuresβ
- Added
ChromecastConnectionCallback
to dynamically update the source while connecting/disconnecting from Chromecast. - Fixed a DASH multi-period playback issue on Tizen 2.4 where the periods have different timescales.
β‘ Improvementsβ
- Added support for switching between audio or video tracks with supported (but not cross-compatible) codecs in MPEG-DASH, e.g. from AAC-LC to Opus, or from AAC-LC to Dolby Digital (if supported).
- The player now tries to hide any native on-screen navigation UI buttons when in fullscreen on mobile devices. This can be overridden with
PlayerConfiguration.ui.fullscreenOptions
. - Improved HESP playback on Safari macOS and Safari iPadOS.
π Issuesβ
- Fixed an issue where chapter markers would not be shown in the UI.
- Fixed an issue where the font size of subtitles would be too large when entering fullscreen portrait mode.
- Fixed an issue where subtitles were not displayed when enabled programmatically. The subtitles only started to show after several minutes.
π Deprecationsβ
- The
Chromecast.source
is deprecated in favor ofChromecast.chromecastConnectionCallback
.
Androidβ
β¨ Featuresβ
- Added
ChromecastConnectionCallback
to dynamically update the source while connecting/disconnecting from Chromecast.
π Issuesβ
- Fixed an issues where using Native IMA with preloading could cause stalls.
- Fixed an issue where setting the target quality of an audio/video track would not work.
π Deprecationsβ
- The
Chromecast#setSource(SourceDescription source)
is deprecated in favor ofChromecast#setChromecastConnectionCallback(ChromecastConnectionCallback callback)
.
Unified Androidβ
π Issuesβ
- Fixed an issue where DRM protected segments of a DASH stream could sometimes not be decrypted.
iOSβ
β¨ Featuresβ
- Add support for native VR360.
- Added
ChromecastConnectionDelegate
to dynamically update the source while connecting/disconnecting from Chromecast.
π Issuesβ
- Fixed an issue where going native fullscreen on iOS during an adbreak would show the content instead of the ad.
π Deprecationsβ
- The
Chromecast.source
is deprecated in favor ofChromecast.setChromecastConnectionDelegate
.
tvOSβ
π Issuesβ
- Fixed an issue where switching content protected assets would not work.
π 2.89.1 (2021/09/28)β
Webβ
π Issuesβ
- Fixed playback of Fairplay HLS on MacOS when using Safari 15.
- Fixed an issue where sometimes not all text tracks are removed after a source change when using native playback.
π 2.89.1 (2021/09/23)β
Generalβ
β¨ Featuresβ
- Added support for both webvtt and ttml renditions in the same subtitle rendition group for the LL-HLS pipeline.
- Added support for DEFAULT and AUTOSELECT rendition tags for LLHLS.
- Add discontinuity support for LLHLS.
- Added support for mediaTimeOffset property in manifest for HESP streams.
β‘ Improvementsβ
- Added retry logic for failing master playlist fetches in the LL-HLS pipeline.
π Issuesβ
- Fixed an issue where the HESP ABR mechanism sometimes would switch to a lower quality immediately after switching to a higher quality.
- Fixed an issue where
player.network.estimator.bandwidth
would be null for a short period after loading a HLS source. - Fixed an issue where DASH streams containing WebM representations with an
@indexRange
attribute could crash the player.
Webβ
β¨ Featuresβ
- Added support for Vast Errors 303, 403, and 900 in case of wrapper ads.
- Exposed adSystem and creativeId for THEO ads.
β‘ Improvementsβ
- Added support for triggering all error URIs of wrapper VAST ads.
π Issuesβ
- Fixed an issue where the player would stall after replaying certain multi-period DASH streams with non-seamless period transitions.
- Fixed an issue where the player would incorrectly try to seamlessly switch between different audio codecs when not supported by the browser.
- Fixed an issue where captions were not available in the API or UI with a HLS stream using native playback on Safari.
- Fixed an issue where no captions were available when changing from native playback to non native and back to native playback.
iOSβ
π₯ Breaking Changesβ
- To add Objective-C support some minor compromises were made, for more details head over to https://docs.theoplayer.com/how-to-guides/13-objective-C/00-introduction.md#changes-to-theoplayer-swift-api
β¨ Featuresβ
- Added Objective-C compatibility to the iOS SDK APIs. For more details, head over to https://docs.theoplayer.com/how-to-guides/13-objective-C/00-introduction.md
π Issuesβ
- Fixed an issue where the phone disconnected from Chromecast when the app went to background.
tvOSβ
π₯ Breaking Changesβ
- To add Objective-C support some minor compromises were made, for more details head over to https://docs.theoplayer.com/how-to-guides/13-objective-C/00-introduction.md#changes-to-theoplayer-swift-api
β¨ Featuresβ
- Added Objective-C compatibility to the tvOS SDK APIs. For more details, head over to https://docs.theoplayer.com/how-to-guides/13-objective-C/00-introduction.md
Chromecastβ
π Issuesβ
- Fixed an issue where the player would periodically stall on older chromecast devices.
π 2.88.0 (2021/08/31)β
Generalβ
β¨ Featuresβ
- Expose a unique identifier for texttrack related cues.
- Added a CEA608 subtitle fallback to DASH streams containing the CEA708 accessibility tag.
- Added support for multiple CEA608 channels/tracks in DASH streams.
- Added preservation of text track selection across periods.
π Issuesβ
- Fixed an issue where the start and end times of CEA608 cues would sometimes be wrong for multi-period DASH streams.
Webβ
π₯ Breaking Changesβ
- Experimental method HespApi.goLive() no longer returns a Promise. Successful completion of the live seek is still signalled by the
golive
event.
β¨ Featuresβ
- Added seamless period switching support for MPEG-DASH streams containing clear periods, as well as DRM protected periods in the past.
β‘ Improvementsβ
- Support seamless period switching for MPEG-DASH streams containing periods with different DRM systems on desktop browsers.
- Improved HESP ABR algorithm and network estimation.
π Issuesβ
- Fixed an issue where calculated HESP latency could become smaller than the remaining buffer.
- Fixed a fatal buffering error on WebOS 5.1.
- Fixed an issue where multiple audio tracks could be enabled at the same time.
- Fix an issue where quality menu in the UI shows the lowest quality from the array of qualities set by targetQuality
- Fixed an issue where Tizen and webOS devices versions 4.x and below would repeat frames during start of playback.
- Fixed an issue where on Tizen 2.4 and Tizen 3 the player would sometimes stall at the end of a period in a multi-period DASH stream.
- Fixed an issue where the ABR mechanism would never go to a higher bitrate on HESP streams.
- Fix an issue where cue with start time 0 was displayed before playback began.
β Known Limitationsβ
- Filtered out ec-3 audio on Tizen and WebOS by default as most devices failed playout and the codec support check was not useable.
Androidβ
π Issuesβ
- Fixed an issue where the player tried to initialize Chromecast even if the device does not support it.
β Known Limitationsβ
- Native Google-IMA Ads preloading does not work as expected in some cases. Please explicitly specify
AdPreloadType.NONE
on theAdsConfiguration.Builder
when configuring THEOplayer.
iOSβ
π Issuesβ
- Fixed an issue where setting a DRM protected VerizonMedia source on
player.cast.chromecast.source
did not play while casting.
π 2.87.0 (2021/07/30)β
Generalβ
π₯ Breaking Changesβ
- Changed type of Quality.id, MediaTrack.id and TextTrack.id from number to string. It now is the id found in the DASH manifest instead of an auto-generated id.
β¨ Featuresβ
- Enabled Thumbnail text tracks by default.
- Thumbnail text tracks now contain cues for multiple periods.
- Exposed EXT-X-DATERANGE metadata through the API for LL-HLS.
- Added support for WebVTT subtitle renditions to the LL-HLS pipeline.
- Added support for all emsg text tracks being accessible during each period.
β‘ Improvementsβ
- Made the parsing of MPEG TS segments more robust by ignoring unusable data instead of terminating playback.
π Issuesβ
- Fixed an issue where setting sources with autoplay enabled on some Tizen devices could cause the player to freeze.
- Fixed an issue where the seekable for a VOD would not include the last few segments for the LL-HLS pipeline.
- Fix LLHLS pipeline making HTTP range request to infinity.
- Fixed an issue where duplicate text track cues would be displayed twice.
- Fix an issue where sideloaded SRT subtitles did not have cues.
- Resolved an issue for DASH where the essential property to indicate tiled thumbnails was not picked up correctly.
- Fixed an issue where the player would not end when seeking to the duration or beyond for some DASH streams.
- Fixed an issue where enabling date ranges in the player configuration did not work.
Webβ
β‘ Improvementsβ
- Disable Airplay button for HESP streams.
π Issuesβ
- Fix an issue where the player was unable to change the styling of the texttracks.
- Fixed autoplay detection for WebOS.
- Fix an issue where ttml texttracks would be rendered incorrectly when using the tts:origin attribute.
- Fixed an issue where response headers were missing in the Network API and Content Protection Integration API on Tizen 3.0.
- Fixed an issue where HESP playback doesn't recover after a network drop on iOS Safari.
- Fix an issue where the VAST tracking URL for completion would be triggered when skipping a THEO-advertisement.
- Fixed an issue for HESP live playback where latency control would break after some time.
- Fixed an issue where HESP ABR used to over-estimate available bandwidth by a very high margin on native android.
- Fixed an issue where CEA-608 text tracks would not be rendered for HLS streams.
- Fixed an issue where some VOD DASH streams would fail to start.
- Fix an issue where Yospace reporting would be delayed for DASH sources.
Androidβ
β¨ Featuresβ
- Add possibility to set language on Native IMA via the UIConfiguration object
π Issuesβ
- Seek problems with boxes and TVs due to handling decoder flush in other way + DRM starting issue
- Fix an issue where setting a new source while casting the video will play on the sender.
- Fixed an issue where DRM license requests were sometimes failing.
- Fix an issue where caching could not be resumed after being paused.
- Fixing uid brdging and Android 10 DRM playback
- Fixed an issue where the player would sometimes stall when switching periods in a multi-period DASH stream.
iOSβ
β¨ Featuresβ
- Add possibility to set language on Native IMA via the UIConfiguration object
β Known Limitationsβ
- In the lifetime of an application session you can set
UIConfiguration.language
only once for Native IMA. Setting this property after the first player is initialized will be ignored.
tvOSβ
β¨ Featuresβ
- Add possibility to set language on Native IMA via the UIConfiguration object
π 2.86.1 (2021/07/12)β
Webβ
π Issuesβ
- Fixed playback of Titanium DRM streams on WebOS.
- Fixed an issue where the VAST tracking URL for completion would be triggered when skipping a THEO-advertisement.
iOSβ
π Issuesβ
- Fixed an issue that caused THEOplayer to fail playing a cached stream that has redirection in its source on iOS 12.
- Fixed an issue where DRM protected streams did not play on Airplay in certain scenarios.
π 2.86.0 (2021/07/05)β
Generalβ
β¨ Featuresβ
- Add support for CBCS encryption in MPEG-DASH streams in supporting browsers.
- Construct HESP content request URLs by applying relative resolution.
- Add support for EMSG v1 boxes.
π Issuesβ
- Fix an issue where in rare cases a sideloaded text track stops updating after a DASH period switch.
- Improved LLHLS bandwidth estimation. Support parsing ENVC and ENCA sample entry MP4 boxes.
- Fixed incorrect LLHLS timeline when switching between renditions.
- Fixed an issue where CBCS encrypted streams would fail to play on Firefox.
- Improved the LLHLS download pipeline to download segments from the live edge if all the parts for that segment are already available.
- Fixed some issues when parsing LLHLS playlist.
- Improved LLHLS ABR behaviour.
- Fix seeking to time 0 in an HLS live stream before the playlist is loaded.
- Fixed an issue where seeking to live would not get into the buffer causing an indefinite stall.
- Fixed an issue where WebVTT subtitle renditions were not loaded correctly when the HLS stream contains discontinuities.
Webβ
π Issuesβ
- Fix an issue where HESP latency was too high for certain iOS and Android devices.
- Fix an issue where the big play button is still visible when autoplaying an HESP stream on iOS Safari.
- Fix an issue where a play event is dispatched after a playing event for HESP streams on iOS Safari.
- Fix an issue where sometimes the player is pulsing on iOS Safari when playing HESP streams.
- Fix an edge case where the player could fail to start playing after preloading an HLS stream while the tab was in the background.
- Fixed an issue where for some HLS streams audio would become out of sync with video.
- Fix unintentional warnings logged in the browser console when loading an HLS stream.
β Known Limitationsβ
- No HESP playback supported on iOS Chrome/Firefox for iOS versions lower than 14.
Androidβ
π Issuesβ
- Fix an issue where the current time would not be shown on the progress bar.
- Fixed an issue where a loadstart event was not dispatched for HESP streams.
- Fix an issue where the play/pause icon is not in sync with the playback state when in Picture in Picture.
- Fix an issue where Picture in Picture window could not be resized on Android 11.
- Fix an issue where destroying THEOplayerView while in fullscreen throw an Exception.
iOSβ
π₯ Breaking Changesβ
- Removed support for iOS 9 & 10. The minimum supported iOS version is now 11.0.
β¨ Featuresβ
- Optimize FairPlay system to improve offline playback.
π Issuesβ
- Fix an issue where the player was not able to select an initial audio track when no
DEFAULT=YES
orAUTOSELECT=YES
option was specified. - Fix an issue where the current time would not be shown on the progress bar.
- Fix issue where texttracks were not rendered correctly for picture in picture.
- Fix an issue where pip button was not disabled for native pip while Google IMA and THEO ads were playing.
- Fix a bug that prevents the advertisement from auto-starting when using NativeIma = false
β Known Limitationsβ
- In iOS 12 an offline asset only plays once: after closing the asset, you cannot play it again. To achieve that it needs to be re-cached.
tvOSβ
π₯ Breaking Changesβ
- Removed support for tvOS 10. The minimum supported tvOS version is now 11.0.
β¨ Featuresβ
- Optimize FairPlay system to improve offline playback.
π 2.85.3 (2021/06/18)β
iOSβ
π Issuesβ
- Fix an issue where THEOplayer would crash if native Picture in Picture is enabled.
π 2.85.1 (2021/06/10)β
Generalβ
π Issuesβ
- Improved LLHLS bandwidth estimation. Support parsing ENVC and ENCA sample entry MP4 boxes.
- Fix an issue where the player could stall and enter an infinite buffering loop due to rounding errors.
π 2.85.1 (2021/06/07)β
Generalβ
π₯ Breaking Changesβ
- The
estimator
property of theNetworkEstimator
API is no longer writable, it is superseded bysetEstimator
.
β¨ Featuresβ
- Implement LLHLS global timeline.
β‘ Improvementsβ
- When playing a multi-period DASH stream containing
EventStream
metadata, the player will now create a single text track (rather than a text track per period) to contain the event metadata cues. - Improved ABR behaviour for the HESP pipeline.
- Prune more aggressively on DASH streams with long segments.
- Added timeout to segment requests to deal with segment network requests that never complete.
π Issuesβ
- Fixed an issue where some TTML tracks did not render.
- Fix a rare crash when the player performs a seamless period switch at the same time that the currently playing period is removed from the MPD.
Webβ
π₯ Breaking Changesβ
- Remove Blob and Document request/response types from Network API.
- Remove HespAbrConfiguration and former HESP ABR mechanism.
β¨ Featuresβ
- Add initial version of the new HESP ABR mechanism.
- Implement
currentProgramDateTime
for HESP streams. - Add support UniversalAdId in the THEO ad system.
- Added support for Widevine DRM for HESP streams.
- Add
currentServerLiveTime
andcurrentLatency
to the HESP API.
β‘ Improvementsβ
- Support seamless period switching for MPEG-DASH streams containing both clear periods and DRM protected periods.
- Support seamless period switching for MPEG-DASH streams on Tizen version 2.4 and above, and webOS version 3 and above.
π Issuesβ
- Filter on supported codecs before initial variant stream selection.
- Fix an issue where the player would stall indefinitely instead of ending playback at the end of some DASH streams containing
sidx
sub-segments. - Fixed an issue where playing HESP content on iOS Safari was not possible if the player was starting muted.
- Fix an issue where the currentAds and currentAdbreak API would be empty for non-linear ads.
- Fix an issue where MPEG-DASH live streams with very large media timestamps failed to play on Tizen 2.4.
- Fix an issue where measurers from an externally configured estimator on the (experimental) Network Estimator API could not measure certain requests.
- Fixed an issue where playing an HESP stream on iOS Safari fails with a 'disable casting' error on screen.
- Fix an issue where ended event comes before the adbreakend event on a post roll ad in THEO ad system
- Fix an issue where the post-roll ad was not preloaded on the THEO ad system
Androidβ
β¨ Featuresβ
- Add support for Picture in Picture mode.
π Issuesβ
- Fix issue where player would resize after orientation changes when using Google IMA.
- Fix an issue where the player was unable to persist the license for offline playback.
iOSβ
π₯ Breaking Changesβ
- Starting from this version the iOS/tvOS SDKs are built with Xcode 12 (Swift 5.3 compatibility).
β¨ Featuresβ
- Add support for native Picture in Picture.
- Upgrades Google Cast SDK to 4.6.0 which contains iOS 14 specific changes from Google.
π Issuesβ
- Fixed an issue where the chromless player could not start casting on Airplay.
π 2.84.0 (2021/05/14)β
Generalβ
π Issuesβ
- Fixed a regression where some MPEG-DASH livestreams failed to play when the last segment's
S@d
attribute changes between two MPD updates.
π 2.84.0 (2021/05/07)β
Generalβ
β¨ Featuresβ
- Add support for hexadecimal and octal format suffixes in DASH
SegmentTemplate
URLs.
β‘ Improvementsβ
- Improved the ABR logic to also consider qualities with higher dimensions than the player's dimesions, if there is no exact match.
- Optimized handling of DASH MPDs with long
SegmentTimeline
s. - Improved the performance of the player on DASH streams.
π Issuesβ
- Fixed an issue where the player would sometimes stall indefinitely when calling play immediately after setting a DASH source.
- Fixed an issue where the player would sometimes error on some HLS streams with Fairplay protected audio and video.
- Fixed a rare edge case where the player would throw an "Invalid duration" error when changing between DASH sources.
- Fixed an issue where the player would sometimes stall indefinitely on some DASH streams when changing the source.
- Fixed an issue where an HLS stream on chrome on a slower network would only play audio while video freezes.
- Fixed an issue where the player tried to parse a WebM segment as an MP4.
- Fixed an issue where the order of the Verizon Media preplay parameters is not maintained.
Webβ
β¨ Featuresβ
- Change experimental
ChromelessPlayer.hesp
API to be available before setting a HESP source. - Add API and UI support for track and quality selection for HESP streams.
- Expose universalAdIds for Google IMA.
- Make the HESP
latency
property configurable before setting a source and preserved across source changes. - Change HESP source type to 'application/vnd.theo.hesp+json'.
- Add support for latest HESP manifest version v1.0.0 and drop support for v0 HESP streams.
- Add support for streaming advertisements and ads preloading in the THEO ad system.
π Issuesβ
- Fixed an issue where the player would stall indefinitely on some HLS streams with nonaligned discontinuities on Firefox.
- Fixed an issue where a faulty postroll would restart the content for THEO ads.
- Resolve sequence of incorrect currentProgramDateTime values observed while seeking on iPhone
- Fixed an issue where the player would error on HLS streams with CMAF segments that don't contain a MOOF box.
- Fixed an issue where the player would retry to fetch a segment with a constant delay instead of using exponential backoff.
- Fixed an issue where fullscreen mode was not working for HESP playback on iOS Safari.
- Fixed an issue where the service worker used for HESP playback on iOS Safari could require additional page refreshes to become functional.
β Known Limitationsβ
- Streaming advertisements downloads the highest quality instead of using the ABR-logic on Tizen.
- Seeking during an ad results in content becoming visible on Tizen.
Androidβ
β¨ Featuresβ
- Expose universalAdIds for Google IMA.
π Issuesβ
- Fixed an issue where
Chromecast.isCasting()
andChromecast.getState()
did not reflect the same state. - Fixed an issue where using native IMA pausing an advertising is not possible.
- Fixed an issue where for some HLS streams the ABR mechanism did not switch to a higher profile on Android.
Android TVβ
π Issuesβ
- Fixed an issue where on FireTV the player would sometimes fail to configure the video codec when switching to a new period.
iOSβ
β¨ Featuresβ
- Expose universalAdIds for Google IMA.
- Added Support for GoogleInteractiveMediaAds framework to 3.14.1.
π Issuesβ
- Fixed an issue where WebVTT subtitles are not rendering with together with thumbnails.
- Fixed an issue where AudioSession interruption did not trigger a
PauseEvent
- Fixed an issue where WebVTT subtitles would duplicate.
β Known Limitationsβ
- Text track captions are temporarily unavailable.
tvOSβ
β¨ Featuresβ
- Added Support for GoogleInteractiveMediaAds framework to 4.4.1
π Issuesβ
- Fixed an issue where bitmap ID3 subtitles would unintentionally scale up.
β Known Limitationsβ
- The tvOS SDK API presents some issues, which will be fixed on 2.84.1.
- Text track captions are temporarily unavailable.
π 2.83.0 (2021/04/19)β
Generalβ
π Issuesβ
- Resolved a problem where disabling/enabling text tracks could make them go unrendered.
π 2.83.0 (2021/04/13)β
Generalβ
π Issuesβ
- Fix an issue where sometimes the player would get stuck when setting a new source
- Fix an issue where the duration of the player is set to Infinity when the source of a VOD DASH stream is set.
- Fixed an issue where the player would sometimes throw on DRM protected LL-HLS streams.
- Fixed an issue where the player src property would be equal to the Chromecast source while not casting.
- Fix an issue where playing Google DAI stream the source parameter was not passed completely
- Fix an issue where the player fails to jump over an unplayable segment at the start of a DASH VOD stream.
Webβ
β¨ Featuresβ
- Added TypeScript type definitions.
- Add initial support for playback of HESP streams. For more information visit https://www.theoplayer.com/high-efficiency-streaming-protocol.
- Add experimental
ChromelessPlayer.hesp
API for functionality specific to the playback of HESP streams. - Add
HespTypedSource
for configuration of HESP streams.
β‘ Improvementsβ
- The SIDX boxes are now also cached when caching an MPEG-DASH stream using the caching API.
π Issuesβ
- Fix an issue where the player would discard the streamType property when passing a source configured with Yospace SSAI.
- Fix an issue where the player will be unmuted after a reload or source change when the google ima integration is used.
- Fixes a bug that prevented AirPlay sessions from being re-established.
- Fixed seekable end for LLHLS live streams without parts.
- Fixed seeking the LLHLS player when there is no seekable yet.
- Fix a bug that caused THEOPlayer to show the same sideloaded texttrack twice in the texttracks menu.
- Fixed DRM for Tizen 2.x
- Fixed an issue where the
contentprotectionsuccess
event would not always fire for PlayReady streams on Edge. - Fixed an issue where the initial bandwidth of an ABR strategy was not retained until a properly measured bandwidth was available.
- Fix an issue where sometimes the player state is not ended when it reaches the end of the stream on Tizen 5.
- Prevent handling of empty webkitkeymessage events
- Fixed an issue where requesting firstFrame and frameRate could return NaN for HLS streams.
Androidβ
π Issuesβ
- Fix an issue where disconnecting from Chromecast using native Google Cast button didn't stop the receiver.
- Fix an issue where
MediaRouteDialog
does not show if THEOplayerView is not initialized on Activity'sonCreate
method.
iOSβ
π Issuesβ
- Fix an issue where a faulty error message would be printed when passing a license through the configuration.
- Fix an issue where playing a cached source multiple times in a row would not work.
- Fix an issue where resetting the source with text tracks would sometimes crash the player.
π 2.82.0 (2021/03/16)β
Generalβ
β¨ Featuresβ
- Added support for AES-128 encrypted segments for LLHLS streams.
β‘ Improvementsβ
- Improve period switching between periods with different key systems.
π Issuesβ
- Fix an issue where the player would report paused as false when ended.
- Fix a crash when playing a VOD DASH stream that does not contain the expected number of SegmentURL elements.
- Resolved issue where large chunks cause problems with LL-HLS byteranges in preload hints
- Fix an issue where some ad-related events were still dispatched after the player is destroyed.
- Added support for nested regions in ttml cues.
- Fix an issue that caused THEOplayer to stall after doing a short seek between two periods if the buffer started getting segments of the next period.
- Fixed an issue where Preplay parameters in the configuration would be overwritten by generated values.
- Fix seeking in a HLS VOD or event stream with discontinuities sometimes not being frame-accurate.
- Reduced the memory usage for long running viewing sessions where some memory would be kept until the stream ends.
- Fixed an issue where seeking near period edges in a DASH stream would sometimes result in an error.
Webβ
β¨ Featuresβ
- Add media data gap detection and jumping in the LL HLS pipeline.
- Improve the ABR behaviour of the LL HLS pipeline.
- Support the EXT-X-STREAM-INF SCORE attribute in LL HLS pipeline.
π Issuesβ
- Fix a Google IMA issue that caused THEOplayer to only play the last ad if multiple midrolls are scheduled with a timeOffset.
- Disable the Airplay button during an ad.
- Fixed an issue where some FairPlay protected streams failed to start on Safari.
- Fix an issue where thumbnail previews were shown incorrectly on mobile
Androidβ
π Issuesβ
- Fix an issue where an empty ad XML would result in an endless spinner for Google IMA.
- Fix an issue where connecting to Chromecast using native Google Cast button after player creation was not handled.
iOSβ
β¨ Featuresβ
- Starting from this release, THEOplayer will be available on Cocoapods! For more information on how to get started, go to: https://github.com/THEOplayer/theoplayer-sdk-ios
- The THEOplayer iOS SDK will now be also shipped in the
xcframework
format alongside theframework
format. For more info on XCframework, refer to the Apple documentation on: https://help.apple.com/xcode/mac/11.4/#/dev6f6ac218b
π Issuesβ
- Fix an issue where setting a metadata title including apostrophe would fail.
- Fix an issue where changing audio tracks freezes THEOplayer.
tvOSβ
β¨ Featuresβ
- Starting from this release, THEOplayer will be available on Cocoapods! For more information on how to get started, go to: https://github.com/THEOplayer/theoplayer-sdk-ios
- The THEOplayer tvOS SDK will now be also shipped in the
xcframework
format alongside theframework
format. For more info on XCframework, refer to the Apple documentation on: https://help.apple.com/xcode/mac/11.4/#/dev6f6ac218b
π Issuesβ
- Fixes a bug that caused THEOplayerSDK on tvOS to have wrong entries for
UIDeviceFamily
.
π 2.81.0 (2021/02/24)β
Generalβ
π Issuesβ
- Reduced the memory usage for long running viewing sessions where some memory would be kept until the stream ends.
π 2.81.0 (2021/02/12)β
Generalβ
β¨ Featuresβ
- Implement basic ABR for new LL HLS pipeline.
β‘ Improvementsβ
- Added support for
EventStream@presentationTimeOffset
in MPEG-DASH streams. - Improved the interval for fetching manifest updates for DASH streams to be closer to the minimumUpdatePeriod.
π Issuesβ
- Fix an issue where the player would sometimes seek to the start of the DVR window when play was called.
- Fix an infinite stall when seeking to the end of a DASH VOD stream on Safari.
- Fix an issue where
creativeAdId
was exposed throughimaAd.creativeId
(instead ofcreativeId
) - Fix an issue where our Google IMA-integration would incorrectly dispatch a playing event when ad is immediately paused
- Fix an issue where the player would hang when loading certain DASH livestreams that only contain segments that are already available.
- Fix an issue where after a seek beyond the end of the seekable range will result in seeking too close to livepoint and starting to stall.
Webβ
β¨ Featuresβ
- Upgrade Youbora adapter version to 6.7.7.
π Issuesβ
- Fix audio only LL-HLS playback.
- Fix an issue where subsequently skipping forward or backward in a DASH stream sometimes incorrectly marks a gap in the buffer.
- Fix an issue where the player would freeze when clicking replay after playing a clipped HLS stream on iOS Safari.
- Fix an issue where repeatedly starting an HLS stream on Safari sometimes results in playback with frame skips.
- Improved gap jumping for less powerful devices such as smart tv's.
- Fix an issue where the player would get stuck near the end of a DASH stream that uses indexed addressing.
- Fixed playing across periods for WebOS 3.x and lower.
- Fix LL HLS pipeline reset logic not working after the player has already played.
- Fix an issue where the player would sometimes stall near a DASH period boundary on Samsung Tizen smart TVs.
- Fixed Moat integration for multiple adblocks use-case
Androidβ
β¨ Featuresβ
- Upgrade Youbora plugin version to 6.7.7.
Android TVβ
π Issuesβ
- Fixed seeking across periods for Android TV.
- Fix an issue where Google IMA ads were not playing on Android TV.
- Fix an issue where custom DRM integrations would not work on Android TV.
iOSβ
β‘ Improvementsβ
- Update Youbora integration to version 6.7.7.
π Issuesβ
- Fix the API of
CertificateRequestCallback
andLicenseRequestCallback
. - Fix an issue where fullscreen would not render in the bounds of the application in splitview
- Fixed an issue where the content protection error code was missing.
- Fix an issue where extra WAITING event was thrown.
tvOSβ
π Issuesβ
- Fix the API of
CertificateRequestCallback
andLicenseRequestCallback
. - Fixed an issue where the content protection error code was missing.
π 2.80.0 (2021/01/13)β
Generalβ
π Issuesβ
- Fix an issue where the
tts:origin
attribute was not correctly processed when positioning subtitles.
Webβ
π Issuesβ
- Fix an issue where MOAT events are only send for the first ad in an adbreak
- Fix seeking to live for DASH streams
iOSβ
π Issuesβ
- Fixed an issue where paused caching tasks could not resume.
- Fixed an issue where the PiP window's position is incorrect when rotating the device.
π 2.79.1 (2021/01/06)β
Webβ
π Issuesβ
- Fix an issue where a DASH stream on chrome on a slower network would only play audio while video freezes.
π 2.79.0 (2020/12/18)β
Generalβ
π Issuesβ
- Fix an issue where parsing certain malformed WebVTT files could crash the player.
- Fix an issue where sometimes a fetched license is not stored in the cache.
Webβ
β‘ Improvementsβ
- Use seamless period transitions in DASH where possible. This requires the browser to support codec switching through
SourceBuffer.changeType()
, or the stream to use similar codecs across periods.
π Issuesβ
- Fix several issues related to play/pause during IMA linear ad playback.
- Fix an issue where the player would play data from a previous track after a switch to another track had occurred on WebOs.
- Fix an issue where MOAT events are only send for the first ad in an adbreak
- Fix an issue where the player would sometimes crash when seeking right after the start of a DASH stream.
Androidβ
β¨ Featuresβ
- Add basic support for multi-period DASH streams in the experimental rendering pipeline. (Note that the default pipeline already has multi-period support.)
π Issuesβ
- Fix an issue where using ChromecastMetadataImage made casting impossible.
- Fix an issue where the muted value would not be correctly updated on Android
iOSβ
β¨ Featuresβ
- Added ContentProtectionError error type.
π Issuesβ
- Fixed an issue where content protection errors were not sent.
tvOSβ
β¨ Featuresβ
- Added ContentProtectionError error type.
π Issuesβ
- Fixed an issue where content protection errors were not sent.
π 2.78.1 (2020/12/09)β
Webβ
π Issuesβ
- Fix an issue where non-WebVTT sideloaded subtitles were not rendered correctly on iOS in Safari
π 2.78.0 (2020/11/24)β
Generalβ
β¨ Featuresβ
- Addition of a new bufferLookbackWindow configuration property to control how much data should be maintained in the decode buffer.
- Synchronize MPEG-DASH MPD updates with availability window changes in order to avoid stale MPDs.
- Add support for configuring the license via the playerconfiguration
β‘ Improvementsβ
- Added support for retrieving PlayReady PSSH from
<mspr:pro>
element.
π Issuesβ
- Fixed an issue where some HLS streams would not end properly.
- Resolve issue where in stream subtitles are all loaded at once
- Fix an issue where a replay would sometimes fail on short HLS streams.
- Fixed a bug where streams did not send exit events for Id3 cues, when useNativePlayback or contentProtected was set to true in the player source setup
Webβ
β¨ Featuresβ
- Add Network Estimator API for experimental LL-HLS pipeline.
π Issuesβ
- Fix an issue where Widevine protected streams would not play on Hisense VIDAA U3 platforms.
- Improve the ABR algorithm to switch to a higher quality faster on startup of HLS streams.
- Fix an issue where the player would error on HLS streams with empty segments.
- Fix an issue where configuring the JoinStrategy to
disabled
would crash the chromecast UI.
Androidβ
π Issuesβ
- Fix an issue where setting a null source would crash the application.
- Fix an issue where the app would sometimes crash on calling
requestCurrentAdBreak
. - Add
cause
forErrorEvent
s when applicable.
iOSβ
β¨ Featuresβ
- Add support for external license either by license or licenseUrl in the PlayerConfiguration or in the info.plist.
π Issuesβ
- Fixed an issue where requesting the currentAdBreak would crash
tvOSβ
β¨ Featuresβ
- Add support for external license either by license or licenseUrl in the PlayerConfiguration or in the info.plist.
- Add Support for verizonMedia on tvOS.
π 2.77.1 (2020/11/17)β
Androidβ
π Issuesβ
- Fix an issue where Chromecast did not auto-connect when CastStrategy is
AUTO
.
iOSβ
π Issuesβ
- Fixed a bug where switching audio tracks would fail after updating the label.
- Fixes a bug that prevented a nativeIMA ad from playing when reinstantiating a THEOplayer instance.
tvOSβ
π Issuesβ
- Fixed a bug where switching audio tracks would fail after updating the label.
π 2.77.0 (2020/10/26)β
Generalβ
β¨ Featuresβ
- Support parallel download while caching.
π Issuesβ
- Add jumping over segments which return a 4XX HTTP response code for DASH streams.
- Fix an issue where the player autoplays IMA ads when preload is set
- Fix an issue where for some HLS streams audio drifts away from video, resulting in visible lip sync issues.
- Fix an issue where the player would sometimes stall indefinitely when seeking into a discontinuity on HLS streams.
- Fix an issue where seeking to segment edges sometimes stalls the video for HLS streams.
- Fix an issue where the timing of WebVTT subtitles on live DASH streams was incorrect.
- Fixed an issue where the player could sometimes stall indefinitely in Chrome at the end of a DASH VOD stream.
- Ignore DRM initialisation data other than 'cenc'
- Fixed having only one audio frame in a segment can sometimes break duration calculation.
Webβ
π Issuesβ
- Fixed an issue where the
fairplaySkdUrl
was always undefined inLicenseRequest
for FairPlay protected streams. - Fix an issue where for some HLS streams the ABR mechanism did not switch to a higher profile.
- Fix an issue where for some HLS streams the ABR mechanism does not switch to higher profiles in case the variant streams in the master playlist do not have a value for the CODECS attribute.
- Fix an issue where THEOplayer.players[0].source returns undefined for every stream in chromeless player.
Androidβ
β¨ Featuresβ
- Add
THEOplayerException
toErrorEvent
- Introduce ContentProtectionException and update ContentProtectionErrorEvent.
- Added ContentProtectionIntegration API.
π Issuesβ
- Fix an issue where VerizonMediaResponseDrm returned null for license URLs
π Deprecationsβ
- The constructor of THEOplayerConfig is deprecated in favor of
THEOplayerConfig.Builder
.
iOSβ
β¨ Featuresβ
- Add ContentProtectionIntegration API.
β‘ Improvementsβ
- Align TheoError with other SDKs
π Issuesβ
- Fixes an issue where a caching task is not properly removed when its file is deleted.
- Fixes a bug that caused player.source to return nil immediately after setting the source.
π Deprecationsβ
- Some of the constructors of the
THEOplayerConfiguration
has been deprecated.
tvOSβ
β¨ Featuresβ
- Add ContentProtectionIntegration API.
β‘ Improvementsβ
- Align TheoError with other SDKs
π Issuesβ
- Fixes a bug that caused player.source to return nil immediately after setting the source.
Chromecastβ
π Issuesβ
- Fix an issue where sometimes playback pauses after setting a new source.
- Fix issue where receiver would stop playing upon destroying the player.
π 2.76.1 (2020/10/01)β
Generalβ
π Issuesβ
- Fix an issue where for some HLS streams audio drifts away from video, resulting in visible lip sync issues.
Webβ
π Issuesβ
- Fix an issue where for some HLS streams the ABR mechanism did not switch to a higher profile.
- Fix an issue where for some HLS streams the ABR mechanism does not switch to higher profiles in case the variant streams in the master playlist do not have a value for the CODECS attribute.
- Fix an issue where switching from a single quality to automatic quality selection did not work for HLS streams.
π 2.76.0 (2020/09/28)β
Generalβ
β‘ Improvementsβ
- Improve gap marking and jumping for DASH streams
π Issuesβ
- Fix an issue where an
aderror
event was not dispatched correctly if an ad failed to load andblockContentIfAdError = false
. - Resolved issue where currentProgramDateTime was being offset by suggestedPresentationDelay.
- Fixed an issue where the player would not use a custom
ContentProtectionIntegrationFactory
if registered with the sameintegrationId
as an existing content protection pre-integration.
Webβ
β¨ Featuresβ
- Added the ability to configure customData when using PlayReady DRM.
- Add reporting of total bytes loaded, current bandwidth estimate and number of currently buffered segments for DASH streams to the player metrics API .
- Update Conax Classic configuration properties to be optional.
- Added bitrate property to GoogleImaAd.
- Add error codes to all fatal player errors through
ErrorEvent.errorObject.code
.
π Issuesβ
- Fix an issue where license request and response handlers were called instead of certificate request and response handlers for Widevine Certificate requests for DASH streams.
β Known Limitationsβ
- PlayReady streams are currently not supported on WebOS.
- 4k/8k stream playback is currently unavailable for Tizen.
- Multi-period streams are not supported on WebOS and Tizen
Androidβ
β¨ Featuresβ
- Add reporting of total bytes loaded, current bandwidth estimate and number of currently buffered segments for DASH streams to the player metrics API.
- Added bitrate property to GoogleImaAd.
π Issuesβ
- Fix an issue where the ENDED event would not be triggered when seeking using the Native Pipeline.
- Fix an issue where the percentage cached was not reported correctly.
- Fix an issue where segments were not cleaned on player destroy
- Fix an issue where deallocating native rendering player were not handled correctly.
iOSβ
π₯ Breaking Changesβ
- Renamed and changed type of
THEOErrorCode
enum cases. - Removed unused
THEOError.parameters
property.
β¨ Featuresβ
- Added bitrate property to GoogleImaAd.
π Issuesβ
- Fixed a bug that cause MainThread to freeze for while when dispatching a durationChange event.
- Fix an issue where dragging out PictureInPicture window would fail to enter fullscreen mode.
tvOSβ
π₯ Breaking Changesβ
- Renamed and changed type of
THEOErrorCode
enum cases. - Removed unused
THEOError.parameters
property.
π Issuesβ
- Fixes a bug where Siri remote loses focus when playing ads.
π 2.75.1 (2020/09/18)β
Generalβ
β‘ Improvementsβ
- Do not clear the buffer on a manual quality switch.
π 2.75.1 (2020/09/03)β
Webβ
π Issuesβ
- Fix an issue where adbreakend event was not dispatched when the last linear ad was an empty vast ad.
- Fix
THEOplayer.registerContentProtectionIntegration()
not working.
π 2.75.0 (2020/08/31)β
Generalβ
π Issuesβ
- Fix an issue where some HLS streams with CMAF segments containing implicit HE-AAC audio failed to play.
- Fix an issue where switching from a single quality to automatic quality selection would cause an unnecessary rebuffer for DASH streams.
Webβ
β¨ Featuresβ
- Add ContentProtectionIntegration API.
π Issuesβ
- Fix an issue where sometimes the current time was not displayed correctly at the end of a stream.
- Fix an issue where the player would report being paused, while it was playing a HLS FairPlay stream using AirPlay.
- Fix an issue where the player would snap to the beginning of the current segment instead of the current playback position when stopping an AirPlay session for HLS FairPlay streams.
- Fix an issue where the active quality is not yet set when a
playing
event is triggered.
Androidβ
β¨ Featuresβ
- Switch to a different representation when a DRM key restriction occurs for native rendering.
- Add
certificate
toKeySystemConfiguration
π Issuesβ
- Fix an issue regarding the order of events when using Native Rendering.
- Expose CachingTask
id
property
iOSβ
β¨ Featuresβ
- Fix a bug that caused THEOplayer to show a black screen after playing a SpotX ad.
π Issuesβ
- Fix an issue where Picture-in-Picture window is misplaced after rotating the screen.
- Expose CachingTask
id
property
tvOSβ
β¨ Featuresβ
- Add Support for Native IMA.
- Add support for SpotX ads.
π 2.74.0 (2020/08/04)β
Generalβ
β¨ Featuresβ
- Add currentProgramDateTime to TimeUpdateEvent.
- Add support for DASH streams with a SegmentTemplate tag with an endnumber and a fixed segment duration.
β‘ Improvementsβ
- Use estimated segment availability for DASH streams where the actual segment availability is unrealistic.
- Add retry functionality for initialization segments of DASH streams.
π Issuesβ
- Fix an issue where seeking backwards in a HLS DVR stream would sometimes jump forwards again.
- Fix an issue where
suggestedPresentationDelay
was not taken into account for the calculation ofcurrentProgramDateTime
for DASH streams. - Fix an issue where the ratio passed to the VisibilityObserverCallback did not match the ratio on the visibility API.
- Fix an issue where some TTML subtitles with
tts:extent
on the Root Container Region were not rendered properly. - Fixed an issue where the player would get stuck buffering for HLS streams with key frames more than 30 seconds apart.
- Fix an issue where the value of the totalAds property of the Google IMA API would sometimes be too low.
Webβ
π Issuesβ
- Fix an issue where the learn more button is appearing at the bottom of the player when playing a google dai ad.
Androidβ
β¨ Featuresβ
- Add ContentProtectionIntegration API.
- Add Axinom content protection pre-integration for android with nativeRendering enabled.
- Extend TimeUpdateEvent to include programDateTime.
- Embed Exoplayer into THEOplayer SDK
β‘ Improvementsβ
- Ignore in-stream PSSHs if all the key IDs are contained in the active DRM session.
π Issuesβ
- Fix an issue where
PLAYING
event was not dispatched after aSEEKED
event - Fix an issue where incorrect buffer size triggered a WAITING event.
- Fix an issue where offline caching would not work for DASH content.
iOSβ
β¨ Featuresβ
- Add the possibility to prevent THEOplayer from managing the AVAudioSession.
- Extend timeUpdate event to include programDateTime.
- Add margin parameter to PictureInPicture configure API.
π Issuesβ
- Fix issue where setting targetBuffer did not work.
- Fix an issue where seeking immediately after setting source would not work.
tvOSβ
β¨ Featuresβ
- Add the possibility to prevent THEOplayer from managing the AVAudioSession.
π Issuesβ
- THEOplayer no longer handles PLAY/PAUSE events from the SiriRemote when chromeless is true
- Fix an issue where seeking immediately after setting source would not work.
π 2.73.0 (2020/07/07)β
Generalβ
β‘ Improvementsβ
- Remove THEOplayer support in error messages in favor of "your service provider".
π Issuesβ
- Fix an issue where the player would sometimes throw an error event, even though it had already automatically recovered from it.
- Fix an issue on HLS where an error would occur on a discontinuity when the stream has either no video or no audio.
- Fix an issue where the player would fetch the wrong segment url for some DASH streams with SegmentTemplate tags.
Webβ
π Issuesβ
- Fix an issue where an ad that is adblocked does not result in the content being blocked although the blockContentIfAdError is set.
- Fix an issue where the skip button for verizon media ads had no lateral padding.
- Fix an issue where some Google DAI DASH streams wouldn't resume after a midroll ad.
Androidβ
β¨ Featuresβ
- Add Support for Native IMA
π Issuesβ
- Fix an issue where
THEOplayer
crashed betweenActivity
lifecycle transitions - Fixed an issue where using native rendering the quality change caused the player to lag
- Fix an issue where the player sometimes stutters on ABR quality switches when playing H265 streams using native rendering.
- Fix an issue where fullscreen would go into landscape even when
FullScreenOrientationCouple
is set tofalse
iOSβ
β¨ Featuresβ
- Add Support for Native IMA
π Issuesβ
- Fix an issue on iOS where returning from fullscreen mode would break the UI
π 2.72.0 (2020/06/10)β
Generalβ
π Issuesβ
- Resolved issue where text track cues could remain active after a silent fast seek by the media pipeline
- Fix an issue where playback would sometimes fail to start for DASH streams with subsegments whose timestamps are not aligned with their parent segment.
- Fixed issue where MPEG-DASH streams with dynamic manifests where the last period's duration increases every update does not correctly update its duration.
- Fix an issue where sometimes the player would seek to the wrong time for DASH streams.
Webβ
β¨ Featuresβ
- Add playerSuiteVersion API.
β‘ Improvementsβ
- Fix an issue where the player reported buffer length in seconds instead of milliseconds for Conviva analytics.
π Issuesβ
- Fix an edge case for some HLS streams where the player would sometimes download segments multiple times for specific target buffer values.
Androidβ
β¨ Featuresβ
- Add a
THEOplayerView.getPlayerSuiteVersion()
api. - Add timeServer flag for SourceDescription and TypedSource
- Add lowLatency flag to SourceDescription
β‘ Improvementsβ
- Add support for playback of HEVC representations of a DASH stream when
nativeRendering
is enabled.
π Issuesβ
- Fix an issue where Google DAI DASH streams would not play
- Fix an issue where using Native Rendering the ended event was missing
iOSβ
β¨ Featuresβ
- Add a
THEOplayer.playerSuiteVersion
api. - Add support for Comcast MPX Fairplay DRM
- THEOplayer does not require anymore to be attached to a
ViewController
to switch to Picture-in-Picture mode
π Issuesβ
- Fix bug where accessing audioTracks/videoTracks on track change event would return false states
Chromecastβ
β¨ Featuresβ
- Add playerSuiteVersion API.
Chromecast CAFβ
β¨ Featuresβ
- Add version and playerSuiteVersion API.
π 2.71.0 (2020/05/26)β
Generalβ
β¨ Featuresβ
- Added support for setting Server Certificates passed in through a SourceDescription.
β‘ Improvementsβ
- Added support for CMAF streams where
trun
atoms don't contain durations.
π Issuesβ
- Fix an issue where subtitles could sometimes flicker, or appear a bit too late.
- Fix an issue where Google IMA ads and content are playing at the same time.
- Fix an issue where playback would sometimes stall on HLS discontinuities.
- Fixed an issue where DASH adaptation sets with codecs
"vtt"
were not recognized as WebVTT. - Fixed various edge cases where the player would sometimes fail to switch to the next period in a multi-period DASH stream.
Webβ
β¨ Featuresβ
- Add support for Conax FPS
ContentId
flow - Add
allowedMimeTypes
toAdsConfiguration
.
π Issuesβ
- Fix an issue where no contentprotection error is thrown when HDCP input is too low
- Fix an issue where a FreeWheel overlay ad would be obscured by another element.
- Fix an issue where the player would sometimes stall indefinitely when seeking over a mid-roll ad in a Google DAI DASH stream.
- Fix an issue where the player would crash if an IMA ad errors using
allowNativeFullscreen
on iOS devices. - Normalization of THEOplayerAdDescription with improved handling of the ad source type
Androidβ
β¨ Featuresβ
- Add 'Omid' and 'OmidFriendlyObstruction' to the ads API for registering video controls overlaying obstructions as friendly.
- Migrate from Android Support Libraries to Jetpack (AndroidX) Libraries.
β‘ Improvementsβ
- Make FullScreenActivity extend AppCompatActivity.
π Issuesβ
- Fix an issue where Google DAI DASH streams would not play
β Known Limitationsβ
- Using THEOplayer now requires the AndroidX package.
iOSβ
π Issuesβ
- Fix an issue where
THEOAdDescription
on a source was not handled properly
π 2.70.3 (2020/05/26)β
Generalβ
π Issuesβ
- Fix an issue where DASH VOD stream will not play when the publish time is larger than the server time
π 2.70.2 (2020/05/19)β
iOSβ
β‘ Improvementsβ
- Update Youbora Analytics integration to version 6.5.5
π 2.70.1 (2020/05/11)β
iOSβ
π Issuesβ
- Add parsing for unknown adtype GoogleIMA
π 2.70.0 (2020/04/23)β
Generalβ
β¨ Featuresβ
- Implemented http-direct schemes:
urn:mpeg:dash:utc:direct:2012
andurn:mpeg:dash:utc:direct:2014
for the UTCTiming element in MPEG-DASH. - Added a flag
retainPlaybackRateOnSourceChange
toPlayerConfiguration
that allowsplaybackRate
to be preserved when changing the source.
π Issuesβ
- Fix an issue where the player throws an exception when the lang =
und
on a CEA608 texttrack in DASH. - Fix an issue where a countdown of one second was shown for Verizon Media ads when the
defaultSkipOffset
was set to0
. - Fix an issue where Google IMA ads with a percentage timeOffset would not play.
- Fix an issue where the player could crash when passing empty VOD properties in a live Google DAI source.
- Fix an issue where the content would not resume after a playback error occurred during a THEO advertisement.
- Fix an issue where the player could crash on HLS streams with two consecutive MPEG-TS segments with overlapping decoding timestamps on Safari.
- Fix an issue where
playbackRate
was not properly reset to 1 after a source change.
Webβ
β‘ Improvementsβ
- The player will now report a Video Playback Failure to Conviva on a
segmentnotfound
event. - The player will now report the buffer length to Conviva.
π Issuesβ
- Fix an issue where the player would keep dispatching offline/online events for HLS while being offline.
- Fix an issue in the FreeWheel integration where an uncaught exception was logged in the browser console.
- Fix an issue where THEO ads would have an incorrect skipOffset.
- Fix an issue where THEO companion ads were exposed incorrectly.
- Fix an issue where THEO ads would not always expose its AdBreak.
Androidβ
π Issuesβ
- Fix an issue where DRM license was not renewed correctly.
iOSβ
β¨ Featuresβ
- Add support for Google DAI
adTagParameters
property. - Add
assetInfoResponse
event in Verizon Media pre-integration. - Add OMID API on
player.ads.omid
to help configure the ad viewability measurements.
π Issuesβ
- Fix an issue where seeking to Infinity would not work correctly.
- Fix an issue where Verizon Media preplay event response was missing.
Chromecastβ
π Issuesβ
- Fix an issue where the
volume
andmuted
properties on the Chromecast receiver would report incorrect values. - Fix an issue where setting the
src
property on the Chromecast receiver would not work properly. - Fix an issue where calling
destroy
on the Chromecast receiver would not work properly.
π 2.69.2 (2020/04/17)β
iOSβ
π Issuesβ
- Fix an issue where building with Xcode 11.4 throws an error.
π 2.69.1 (2020/04/02)β
iOSβ
β‘ Improvementsβ
- Add a
PiPConfiguration
property to the THEOplayerConfiguration. The BooleanpictureInPicture
property is deprecated in favor of this property in the THEOplayerConfiguration. ThePiPConfiguration
needs to be initialized with the BooleanretainPresentationModeOnSourceChange
property.
π 2.69.0 (2020/03/30)β
Generalβ
β‘ Improvementsβ
- Updated support for Conviva SDK 2.151.0.37016 .
π Issuesβ
- Fix an issue where the
muted
,volume
andplaybackRate
properties were not preserved after setting a new DASH source. - Fix an issue where the resume tracking event is dispatched when an ad starts playing for the first time.
- Fix an issue where the playback rate of Verizon Media advertisements would not always be set to 1.
- Fix an issue where the Yospace session was still active after destroying the player.
- Fix an issue where the player could stall indefinitely when a DASH live stream contains a period that is no longer available.
- Fix an issue where the player could crash when playing a DASH live stream with many very short periods.
- Fix an issue where an HLS stream that starts with a negative video decoding timestamp could stall after seeking.
- Fix an issue where Titanium DRM license acquisition error message was inconsistent in Widevine and Playready.
- Fix an issue where the displayed live offset (in mobile UI) would sometimes be a positive number.
- Fix an issue where Verizon Media ads were not skipped when the skip button was clicked.
Webβ
β¨ Featuresβ
- ErrorEvent will now contain an optional errorObject, which is a THEOError containing more information about the error.
π Issuesβ
- Fix an issue where text tracks with no cues were exposed on Safari when using native playback.
Androidβ
β¨ Featuresβ
- Add a
nativeRenderingEnabled
flag to the TypedSource API to configure native video rendering. The experimentalRenderingEnabled property is deprecated in favor of this property. - Add a
nativeUiRenderingEnabled
flag to the TypedSource API to configure native UI rendering.
iOSβ
β¨ Featuresβ
- Add property
retainPresentationModeOnSourceChange
to the Picture-in-Picture API. - Add support for BuyDRM KeyOS Fairplay.
ErrorEvent
will now contain an optionalerrorObject
, containing more information about the error.- Add
player.network
API for fatal and non-fatal network related errors. Events that occur will be of typeNetworkErrorEvent
and contain a NetworkError aserror
.
β‘ Improvementsβ
- Adding a listener for 'error' on the player will now also show fatal network-related errors.
π Issuesβ
- Fix an issue where passing GoogleDAI api key was not working.
- Fix an issue where the verizon media notification bar would overlap the player seekbar.
- Fix an issue where caching was not working for DRM protected streams.
- Fix an issue where Picture-in-picture would have a gray overlay on top of the player view.
- Fix an issue where Picture-in-picture would have a wrong visibility.
- Fix an issue where Picture-in-picture would mask views and prevent tapping.
- Fix an issue where Application would crash if THEOplayer is destroyed while Picture-in-picture is enabled.
- Fix an issue where PROGRESS event comes before DURATION_CHANGE event.
- Fix an issue where memory was not released when destroying THEOplayer.
tvOSβ
β¨ Featuresβ
- Add support for BuyDRM KeyOS Fairplay.
ErrorEvent
will now contain an optionalerrorObject
, containing more information about the error.- Add
player.network
API for fatal and non-fatal network related errors. Events that occur will be of typeNetworkErrorEvent
and contain a NetworkError aserror
.
β‘ Improvementsβ
- Adding a listener for 'error' on the player will now also show fatal network-related errors.
π Issuesβ
- Fix an issue where PROGRESS event comes before DURATION_CHANGE event.
π 2.68.1 (2020/03/20)β
Generalβ
π Issuesβ
- Fix an issue where an MPEG-DASH stream containing audio segments with a certain timescale failed to start playing.
π 2.68.0 (2020/02/21)β
Generalβ
β¨ Featuresβ
- Implemented
player.network.online
along withonline
andoffline
events for DASH live streams with updating manifests. - Add a flag for using native playback for HLS streams.
β‘ Improvementsβ
- When a DASH live stream becomes unavailable, the player will now always keep attempting to reconnect rather than halting after a certain amount of tries.
- The player now lazily loads the segment indexes (signaled by an
indexRange
attribute) in an MPEG-DASH stream. - When the player fails to fetch an HLS manifest, it will no longer retry the request with "cache-busting" HTTP headers.
π Issuesβ
- Fix an issue where the video playback error would not be reported to Conviva.
- Fix an issue where the quality submenu would sometimes not expand completely.
- Fix an issue where the position of settings menu is not changed when exiting the fullscreen mode.
- Fix an issue where
player.source
would report an incorrect value when setting the source toundefined
. - Fix an issue where
PersistVolume
configuration would not work. - Fix an issue where playback would no longer succeed after a source change when using Google IMA ads.
- Fix an issue where the player would not respect a seek before the first play.
- Fix an issue where a
loadeddata
event is dispatched for each period in a multi-period DASH stream. - Fix an issue where a Google IMA mid-roll ad would sometimes be played as a pre-roll ad after a source change.
- Fix an issue where the player would sometimes try to fetch an segment before it is available in a low-latency MPEG-DASH stream.
- Fix an issue where auto-playing an HLS event stream would sometimes not start at the live point.
- Fix an issue where DRM streams would not resume after playing IMA ads in native fullscreen.
- Fix an issue where returning from an IMA ad in
allowNativeFullscreen
would sometimes result in a seek to the start of a DVR-stream. - Fix an issue where HLS CMAF streams without a default sample duration for their AAC audio failed to play.
- Fix an issue where a DASH live stream containing multiple audio tracks with different
SegmentTimeline
s would sometimes fail to play. - Fix an issue where HLS date range cues would sometimes have their start time set to
NaN
. - Fix an issue where the click-through link propagates to all FreeWheel ads.
- Fix an issue where the playback speed different from the default value would not be restored after playing an IMA ad with nativeFullScreen.
- Fix an issue where FreeWheel ads would start replaying in the background.
- Fix an issue where seeking to the end of an MPEG-DASH period would result in a seek to the start of the period.
Webβ
β¨ Featuresβ
- Add support for exposing
admetadata
andadbuffering
events in Google IMA integration. - Add
pingerror
event in Verizon Media pre-integration. - Add support to report
adStart
andadEnd
to Conviva analytics.
β‘ Improvementsβ
- Use
SessionStorage
overLocalStorage
for session data for improved GDPR compliance. - Remove fallback for cookies on platforms that do not support
LocalStorage
orSessionStorage
π Issuesβ
- Fix an issue where seeking during AirPlay causes a brief seeking glitch.
- Fix an issue where the player failed to load when
window.__esModule
was set by another script. - Fix an issue where the
adbreakbegin
event precedes theplay
event for pre-rolls in the THEO ad system. - Fix an issue where a
readystatechange
would not update the player state for Conviva analytics. - Fix an issue where DASH and HLS streams failed to play on older LG webOS smart TVs.
- Fix an issue where the player would sometimes seek to the wrong frame after ending an AirPlay session.
Androidβ
β¨ Featuresβ
- Add
pingerror
event in Verizon Media pre-integration.
β‘ Improvementsβ
- Set video Quality with the (getter) video Quality is now possible as they are of the same type.
π Issuesβ
- Fix an issue where switching to automatic quality selection on a video track was not possible upon passing null.
- Fix an issue where RemoveCue event did not have a Cue property.
iOSβ
β¨ Featuresβ
- Add AirPlay API.
- Add
pingerror
event in Verizon Media pre-integration.
π Issuesβ
- Fix an issue where THEOplayer was not aware of AirPlay state changes.
- Fix an issue where playback on device resets/gives error after stopping AirPlay from TV.
- Fix an issue where video playback was failing when passing an ad with timeOffset as integer.
- Fix an issue where
WAITING
event was not dispatched correctly. - Fix an issue where
CANPLAY
andCANPLAYTHROUGH
events were not dispatched correctly. - Fix an issue where playback rate goes back to normal after seeking or pausing.
- Fix an issue where video playback stops after an IMA ad-roll.
Chromecastβ
π Issuesβ
- Fix an issue where incorrect
currentTime
values caused UI and seeking issues while casting a live stream to Chromecast.
β Known Limitationsβ
- THEOplayer pauses after playing a Google IMA advertisement.
π 2.67.0 (2020/01/17)β
Generalβ
π Issuesβ
- Fix an issue where the player was not sized correctly for some customers.
- Fix an issue where the player was not able to select audio track with
AUTOSELECT=YES
option. - Fix an issue where the player did not fall back to the default license acquisition URLs for VuDRM when playing PlayReady or Widevine protected content.
- Fix an issue where the player would sometimes stay in paused state while clicking a paused IMA advertisement
- Fix an issue where the player was not able to select an initial audio track when no
DEFAULT=YES
orAUTOSELECT=YES
option was specified. - Fix an issue where setting a
targetQuality
would cause a duplicate item in the quality selector when switching to another period. - Fix an issue where text tracks would be duplicated for HLS streams with Google IMA ads and
allowNativeFullscreen
enabled.
Webβ
β¨ Featuresβ
- Add integration for Comcast Fairplay DRM
- Add support for iOS native fullscreen for Google IMA advertisements when
allowNativeFullscreen
is configured.
π Issuesβ
- Fix an issue where FreeWheel's video state is not always correctly reported.
- Fix an issue in the THEO ad system where the clickthrough url did not change between successive VAST linear ads.
β Known Limitationsβ
- Due to platform restrictions iPhone devices only show the limited native fullscreen UI, which excludes the IMA clickthrough button.
Androidβ
β¨ Featuresβ
- Add support for Verizon Media Server-Side Ad Insertion.
β‘ Improvementsβ
- Improve accessibility of player for keyboard and screenreader users.
iOSβ
β¨ Featuresβ
- Add support for Verizon Media Server-Side Ad Insertion.
π 2.66.0 (2019/12/09)β
Generalβ
β‘ Improvementsβ
- Disabled native video element controls during playback of FreeWheel ads.
- When playing a HLS stream with multiple tracks in the MPEG-TS segments, the player now selects the first track to align with the Apple reference implementation.
- Improve DRM capability checking.
- Minor improvements to AirPlayer.
- Fix an issue where time-related properties were reported incorrectly for live streams while casting.
- Fix an issue where the player would dispatch a
durationchange
event with valueNaN
when switching to Chromecast. - Improve dispatch of events while switching to Chromecast.
π Issuesβ
- Fix an issue where the player unnecessarily switched to alternative quality renditions after manual quality switch.
- Fix an issue where the player always started the next period in the lowest quality when playing a DASH stream on Android.
- Fix an issue where start and end times for MP4-embedded WebVTT subtitles in multi-period DASH streams were miscalculated.
- Fix an issue where the player selects the wrong quality to calculate the program date time.
- Fix an issue where the player would briefly display a spinner while switching periods in a DASH stream.
- Fix an issue where the player would sometimes stall indefinitely when switching periods in a DASH stream.
Webβ
β¨ Featuresβ
- Add
content-protection
type and sub-types in Network API's request object. - Add support for Google DAI DASH.
- Add Google DAI stream request configuration options
adTagParameters
,authToken
andstreamActivityMonitorID
.
β‘ Improvementsβ
- Dispatch an
updateadbreak
event in Google IMA integration to signal that the AdBreak's timeOffset has been updated. This is the case when an ad has been scheduled using percentages.
π Issuesβ
- Fix an issue where using percentages for scheduling ads in Google IMA would not work.
Androidβ
β¨ Featuresβ
- Add support for Google IMA Dynamic Ad Insertion (DAI).
π Issuesβ
- Fix an issue where
NoClassDefFoundError
is thrown on devices with an API lower than 19. - Fix an issue where
ConcurrentModificationException
is thrown while casting to Chromecast. - Fix an issue where
requestCurrentProgramDateTime
crashes the application.
β Known Limitationsβ
- When playing a Google DAI advertisement the THEOplayer UI is disabled.
- When playing a Google DAI advertisement and the application goes to background and then to foreground, the advertisement automatically continues playing.
iOSβ
β¨ Featuresβ
- Add
CastStrategy.auto
to automatically connect to a Chromecast session when the device is connected. - Add support for Google IMA Dynamic Ad Insertion (DAI).
π Issuesβ
- Fix a memory leak issue while casting to Chromecast.
- Fix an issue where using the Reachability Module causes some interference with THEOplayer.
- Fix an issue where
AdError
event was not triggered.
β Known Limitationsβ
- THEOplayer has API limitations on iOS 10. For more information please contact our support team.
- When playing a Google DAI advertisement the THEOplayer UI is disabled.
- When playing a Google DAI advertisement and the application goes to background and then to foreground, the advertisement automatically continues playing.
Chromecastβ
π Issuesβ
- Fix an issue where switching audio tracks while casting took a long time to take effect.
π 2.65.1 (2019/11/17)β
iOSβ
β‘ Improvementsβ
- Introduced module stability from Swift 5.1
tvOSβ
β‘ Improvementsβ
- Introduced module stability from Swift 5.1
π 2.65.0 (2019/11/08)β
Generalβ
β¨ Featuresβ
- Add support for CEA-608 captions in DASH streams.
β‘ Improvementsβ
- Ensure all analytics updates are sent before the page unloads.
π Issuesβ
- Fix an issue where the Chromecast
statechange
event was dispatched too early when disconnecting from a receiver.
Webβ
π Issuesβ
- Fix an issue where the
mediaUrl
of Google IMA ads is sometimes not exposed. - Fix an issue where DASH streams would sometimes not replay in Edge/IE.
Chromecastβ
π Issuesβ
- Fix an issue where subtitle metadata that is too long would cover too much of the screen while casting.
π 2.64.1 (2019/11/08)β
Generalβ
π Issuesβ
- Fix an issue where DASH streams would not play on Firefox.
π 2.64.0 (2019/10/04)β
Generalβ
β¨ Featuresβ
- Add support for alternative audio renditions without
URI
attribute in HLS.
β‘ Improvementsβ
- Do not create audio and video tracks for variant streams with unsupported codecs in HLS.
π Issuesβ
- Fix an issue where track switches would not always work for multi-period DASH streams.
- Fix an issue where ad-related UI elements would reappear in later ads.
- Fix an issue where multi-audio HLS streams would sometimes fail to play.
- Fix an issue where the UI would sometimes not show the buffered ranges correctly in the progress bar.
- Fix an issue in the IMA integration where sequential ads can not always be paused.
Webβ
β¨ Featuresβ
- Add
content-protection
type and sub-types in Network API's request object.
β Known Limitationsβ
- Setting IMA mid-roll using percentage does not work.
Androidβ
β¨ Featuresβ
- Add a new strategy
CastStrategy.AUTO
which enable automatically casting a new source when the device is connected to Chromecast.
π Issuesβ
- Fix an issue where a new player instance couldn't connect to an existing Chromecast session.
β Known Limitationsβ
- Setting IMA mid-roll using percentage does not work.
iOSβ
β¨ Featuresβ
- Add support for versioning in the
THEOplayer.version
API.
β‘ Improvementsβ
- Removed default user-agent from SpotX integration to be compatible with iOS 13. If your implementation relies on this default behaviour, please follow our workaround guide
π Issuesβ
- Fix an issue where seek did not work after the video has ended.
- Fix an issue where IMA ad didn't play on iOS.
β Known Limitationsβ
- Setting IMA mid-roll does not work.
π 2.63.0 (2019/09/11)β
Generalβ
π Issuesβ
- Fix an issue where the player wouldn't throw an error when the status of a media session key would be
output-restricted
orinternal-error
. - Fix an issue in the THEO ad system where Tracking Events in the wrapper wouldn't fire for linear VAST ads.
- Fix an issue where live DASH streams with unsupported representations would crash after a manifest update.
- Fix an issue where playback would not be resumed at the correct position after seeking over an ad.
- Fix consistency issues with UI tooltips.
Webβ
β¨ Featuresβ
- Add distinction between main and descriptions kind for HLS audio tracks.
- Upgrade Yospace integration from 1.2.x to 1.7.9.
- Add support for DASH with EMSG for the Yospace integration.
- Add an ABR strategy which optimizes playback of low latency chunked streams. This can be enabled by adding
lowLatency
in TypedSource.
β‘ Improvementsβ
- Improved behaviour when placing focus on the volume bar to improve keyboard accessibility.
π Issuesβ
- Fix an issue where content would not play fullscreen after playing a pre-roll ad in fullscreen on iOS Safari.
π Deprecationsβ
- Removed pre-integration for MediaMelon QBR.
Androidβ
β¨ Featuresβ
- Add support for
#EXT-X-DATERANGE
tags in HLS through theplayer.textTracks
API.
π Issuesβ
- Fix an issue where replay did not work while connected to Chromecast.
- Fix an issue where seek paused the video while connected to Chromecast.
- Fix an issue where the duration of the stream was not correct while connected to Chromecast.
- Fix an issue where the application would crash when changing the Chromecast session.
- Fix an issue on Edge and Internet Explorer where seeking to the end of a DASH stream or replaying it would not work correctly.
β Known Limitationsβ
- Replay while connected to Chromecast does not work. See workaround
iOSβ
β¨ Featuresβ
- Add distinction between main and descriptions kind for HLS audio tracks.
- Add support for native
UIGestureRecognizer
throughTHEOplayer
API. - Add support for aspect ratio in the
THEOplayer.fullscreen
API.
π Issuesβ
- Fix an issue where replay did not work while connected to Chromecast.
- Fix an issue where seek paused the video while connected to Chromecast.
- Fix an issue when selecting one audio track would disable all audio tracks.
- Fix an issue where THEOplayer would deactivate
AVAudioSession
when the application goes to background.
β Known Limitationsβ
- Replay while connected to Chromecast does not work. See workaround
- Leaving a Chromecast session while playing a DASH stream causes an unrecoverable error. See workaround
π 2.61.0 (2019/07/17)β
Webβ
β¨ Featuresβ
- Add support for WebVTT subtitles embedded in ISOBMFF segments.
- Add support for
#EXT-X-DATERANGE
tags in HLS through theplayer.textTracks
API.
β‘ Improvementsβ
- Improve Agama integration by upgrading support to EMP Client version 3.7.
- Improve Agama integration by suspending reporting on the sender side while the content is being cast.
π Issuesβ
- Fix an issue where the ABR of the player would not always correctly switch when using response interceptors.
- Fix an issue where the ABR of the player would not always correctly switch on streams with small segments.
Androidβ
β¨ Featuresβ
- Add support for Agama analytics.
- Add support for WebVTT subtitles embedded in ISOBMFF segments.
π Issuesβ
- Fix an issue where requesting video width/height sometimes caused an exception.
iOSβ
β¨ Featuresβ
- Add support for Agama Analytics.
π Issuesβ
- Fix an issue where device volume was not reported properly.
- Fix an issue where advertisement volume was not reported properly.
- Fix an issue where the ProgressEvent was not reported.
Chromecastβ
β¨ Featuresβ
- Add support for Agama analytics on Chromecast.
π 2.60.0 (2019/07/01)β
Generalβ
β¨ Featuresβ
- Add distinction between captions and subtitles kind of text tracks for DASH manifests.
- Add distinction between captions and subtitles kind of text tracks for HLS manifests with
#EXT-X-MEDIA
tags.
β‘ Improvementsβ
- Improve buffer segment selection and fetching for DASH streams.
π Issuesβ
- There are known major issues with the Chromecast feature in this release. These are planned to be fixed in 2.61.1.
- Fix an issue where the player would sometimes hang on a discontinuity edge on Safari.
- Fix an issue where the player would not dispatch an
adend
event when ending a non-linear ad. - Fix an issue where Conviva analytics would not work correctly if ads were configured in the source description.
- Fix an issue where sometimes a TTML text track was created even when the stream does not contain TTML data.
- Fix an issue where it was not possible to pause or play by clicking on the video area while casting to Chromecast.
- Fix an issue where the direction indicator did not update when looking around in a VR video.
- Fix an issue where the player sometimes leaked DRM key sessions after playing multiple DRM-protected streams.
Webβ
β¨ Featuresβ
- Add support for inspecting ads and ad breaks from Google IMA through the ads API. This also adds the following events to the ads API:
addad
,updatead
,addadbreak
,removeadbreak
. - Add
systemCode
toplayer.error
andcontentprotectionerror
event for key system specific error codes.
β‘ Improvementsβ
- Improve the startup time of the player when playing an IMA pre-roll advertisement.
π Issuesβ
- Fix an issue where the fullscreen button tooltip did not change to 'Exit fullscreen' when in fullscreen mode.
Androidβ
β¨ Featuresβ
- Add flag to
THEOplayerGlobal
to force usecustomWebView
for minapi16 - Add the ability to join a Chromecast session
- Add support for offline Uplynk DRM
- Add support for multi key session streams
- Add support for manifest-only PSSH streams
- Add support for offline multi key session streams
π Issuesβ
- Fix an issue where Google IMA Ad events were not dispatched correctly.
iOSβ
β¨ Featuresβ
- Update iOS SDK to Swift 5.0
- Add the ability to join a Chromecast session
- Recognise TextTrack accessibility kind values
π Issuesβ
- Fix an issue where leaving a Chromecast session, the channel was not cleared properly.
- Fix an issue where Google IMA Ad events were not dispatched correctly.
π Deprecationsβ
- Objective-C is no longer supported. Please update to the Swift API. If you have questions, please contact our support team.
tvOSβ
β¨ Featuresβ
- Update tvOS SDK to Swift 5.0
Chromecastβ
π Issuesβ
- Fix an issue where it was not possible to set the target quality while casting.
π 2.59.0 (2019/05/07)β
Generalβ
β¨ Featuresβ
- Add support for rendering of sideloaded WebVTT text tracks in native fullscreen on iOS Safari.
β‘ Improvementsβ
- Improve scrubbing while casting to Chromecast.
π Issuesβ
- Fix an issue where AES-128 encrypted HLS streams failed to play.
- Fix an issue where certain HLS streams failed to play in some browsers when using
player.src
. - Fix an issue where certain HLS streams stalled near the end of the video.
- Fix an issue where seeking after a stream ends restarts the media at the beginning.
- Fix an issue where Chromecast sender had incorrect property values after media ended.
- Fix an issue where Chromecast sender could not replay or seek after media ended.
- Fix an issue where Chromecast sender could not manually switch audio or video.
- Fix an issue where Chromecast receiver volume was set to sender volume.
- Fix an issue with UI controls after starting a Chromecast session.
- Fix a issue with HLS playback where incomplete audio frames are not always correctly silenced.
- Fix an issue where
adbreakbegin
event would sometimes dispatch too often in the THEO ad system. - Fix an issue where the player would sometimes give double
ended
events after a Google IMA post-roll. - Fix an issue where the
played
property would sometimes return incorrect values for HLS streams. - Fix an issue where a clipped video would briefly show its unclipped duration in the controls.
Webβ
π Issuesβ
- Fix an issue where images with parentheses in the URL did not render correctly.
- Fix an issue where the AirPlay target selection menu would not show again after closing it previously.
- Fix an issue where calling destroy on the player would not remove the global beforeunload event handler
- Fix an issue where errors appeared in the browser console while playing an audio-only HLS stream.
Androidβ
π Issuesβ
- Fix an issue that caused crash when MOAT analytics was enabled but the ad did not support MOAT tracking
- Fix an issue where inBandMetadataTrackDispatchType was missing when ADDTRACK event occurs
iOSβ
π Deprecationsβ
- Objective-C support is deprecated, and is scheduled to be removed in the next version (2.60.0). Please update to the Swift API. If you have questions, please contact our support team.
π Issuesβ
- Fix an issue with playing VR/360 source.
- Fix an issue where isDestroyed property was not correctly set.
- Fix a Google IMA issue where "Learn More" (top right corner) and content countdown (bottom left corner) are partially hidden on iPhoneX(+).
- Fix an issue where the UI sometimes showed an incorrect selected audio track.
- Fix an issue that shows indefinite spinner when seeking while using Airplay.
- Fix an issue when subtitle font size increased during scrubbing/seeking.
- Fix an issue when player state was not properly synced with AirPlay state.
Chromecastβ
π Issuesβ
- Fix an issue that prevented volumeChanged event from being triggered
- Fix missing pause icon
π 2.58.0 (2019/03/26)β
Generalβ
β‘ Improvementsβ
- Improve internal asynchronous handling of synchronous API methods (setting source / reset / destroy)
Webβ
β¨ Featuresβ
- Add integration for Uplynk Fairplay DRM
π Issuesβ
- Fix an issue where the player would show an incorrect buffering spinner when using Conviva analytics
iOSβ
β¨ Featuresβ
- Add integration for Uplynk Fairplay DRM
tvOSβ
β¨ Featuresβ
- Add integration for Uplynk Fairplay DRM
π 2.57.0 (2019/03/11)β
Webβ
β¨ Featuresβ
- Add integration for Azure Widevine DRM
- Add integration for Verimatrix Fairplay DRM
π Issuesβ
- Fix an issue where the UI sometimes did not display the available video qualities of a multi-audio HLS stream.
- Fix an issue where HLS streams on Internet Explorer on Windows 7 would not play.
- Fix an issue where up-next would keep redirecting on single-page web apps.
- Fix an issue where up-next would appear during linear advertisements.
iOSβ
β¨ Featuresβ
- Added support for Verimatrix MultiRights FairPlay DRM.
π Issuesβ
- Fixed an issue where ad related events were not reported correctly.
- Fixed an issue where setting the current time for Chromecast did not work.
π 2.56.0 (2019/02/25)β
Webβ
π Issuesβ
- Fix an issue where the wrong content type was sent to the chromecast
Androidβ
β¨ Featuresβ
- Added support for Axinom Widevine DRM.
- Implement track switching for experimental rendering pipeline.
β‘ Improvementsβ
- Improve minapi16 variant to use the packaged WebView replacement in case an older WebView Chrome version is detected on the device.
- Various improvements to experimental rendering pipeline.
π Issuesβ
- Various fixes to experimental rendering pipeline.
Android TVβ
β¨ Featuresβ
- Added support for Axinom Widevine DRM.
- Implement track switching for experimental rendering pipeline.
β‘ Improvementsβ
- Various improvements to experimental rendering pipeline.
π Issuesβ
- Various fixes to experimental rendering pipeline.
iOSβ
β¨ Featuresβ
- Improved native playback logic.
- Added support for Axinom FairPlay DRM.
- Added support for offline Xstream FairPlay DRM.
- Extend the ABR API with two new properties: preferredPeakBitRate and preferredMaximumResolution
π Issuesβ
- Fixed an issue where Chromecast device selection was not visible.
- Fixed an issue where device and statusbar orientation were not correct when caching was enabled.
- Fixed an issue where a caching task did not transition to the error state
- Fixed an issue where caching a DRMToday protected stream did not work
- Removed SpotX Advertising Identifier for non-SpotX customers.
Chromecastβ
π Issuesβ
- Fix an issue where the chromecast ended up in the pause state for mp4
π 2.55.0 (2019/02/11)β
Webβ
π Issuesβ
- Fix an issue where sometimes HLS subtitle renditions with
DEFAULT=YES
were not automatically selected. - Fix an issue where TTML subtitles would sometimes get stuck.
- Fix an issue where scheduling an ad would resume playback on a paused player.
- Fix an issue where SpotX ads would not always be able to play.
- Fix an issue where Picture-in-picture would not behave correctly in Safari.
- Fix an issue where thumbnails would not behave correctly.
π 2.54.0 (2019/01/28)β
Webβ
β¨ Featuresβ
- Added integration with Axinom DRM
π Issuesβ
- Fix an issue where Google IMA would not always correctly switch between two ads.
- Fix an issue with seeking before the player is fully initialized.
iOSβ
β¨ Featuresβ
- Added license renewal for offline DRM streams.
π Issuesβ
- Fixed an issue with Fairplay DRM protected streams.
- Fixed issue when playing multiple DRM protected streams simultaneously.
- Fixed an issue where Chromecast couldn't register a channel.
- Fix an issue with scrubbing when DRM protected stream was played.
π 2.53.0 (2019/01/15)β
Webβ
β¨ Featuresβ
- Added support for Vimond FairPlay DRM.
- Added support for CMAF segments in HLS.
π Issuesβ
- Fix an issue where DASH livestreams would report seekable.start as zero incorrectly.
- Fix an issue where streams using SIDX would not play.
iOSβ
β¨ Featuresβ
- Added support for Vimond FairPlay DRM.
π 2.52.0 (2019/01/02)β
Webβ
β¨ Featuresβ
- Added the possibility to configure title attribute in the Now Playing section of the Control Center
- Allow vmap/adrule to be scheduled dynamically (via
player.ads.schedule
) by addition of theadSource
API. - Add PlayReady playback support for Tizen 3.0.
π Issuesβ
- Fix an issue where a clip would sometimes play beyond its end time.
- Fix an issue where some IMA ads using a custom timeOffset wouldn't play
- Fix an issue where the player would sometimes accidentally seek back to the start of the stream
Androidβ
β¨ Featuresβ
- Added license renewal for offline DRM streams.
β‘ Improvementsβ
- Improved concurrent offline license caching behaviour.
Android TVβ
β¨ Featuresβ
- Added license renewal for offline DRM streams.
β‘ Improvementsβ
- Improved concurrent offline license caching behaviour.
iOSβ
β¨ Featuresβ
- Added the possibility to configure title attribute in the Now Playing section of the Control Center
- Extended caching API with the ability to pause and resume a caching task.
- Extended caching API with the ability to select desired quality.
- Extended caching API with the ability to see the total bytes cached.
π Issuesβ
- Fixed an issue with caching DRM protected streams
π 2.51.0 (2018/12/17)β
Webβ
π Issuesβ
- Fix an issue where some HLS streams using
#EXT-X-BYTERANGE
stall indefinitely. - Fix an issue where Conviva would not be notified that the manifest is unavailable if it was detected before session creation.
- Fix an issue where subtitles UI cannot toggle when the
manifestMetadataTrack
property is set to true on iOS devices. - Fix an issue where Firefox on Android sometimes crashes when loading a HLS stream containing MP3 audio.
Androidβ
β¨ Featuresβ
- Added playback of Xstream Widevine DRM streams.
Android TVβ
β¨ Featuresβ
- Added playback of Xstream Widevine DRM streams.
iOSβ
π Issuesβ
- Fixed an issue with Airplay DRM protected streams
- Fixed an issue when leaving fullscreen mode the orienation behaviour was incorrect
π 2.50.0 (2018/12/04)β
Webβ
β‘ Improvementsβ
- Improve the interoperability of a player with a poster and a source with a poster.
- Improved start-up time for MPEG-DASH streams using
SegmentBase@indexRange
.
π Issuesβ
- Fix an issue with live HLS streams with manifest metadata tracks
- Fix an issue where playback would sometimes not start at the live point in a HLS livestream with DVR.
- Fix an issue where adend/adbreakend were not dispatched when the source changed while IMA was playing an ad.
- Fix an issue where resuming a paused task would result in an incorrect size estimation.
- Fix an issue where not all impression beacons would be tracked in the THEO ad system.
- Fix an issue where audio track selection was unavailable when no audio stream was marked as default.
iOSβ
β‘ Improvementsβ
- Extended Yospace API with access to the Yospace session
π 2.49.0 (2018/11/20)β
Webβ
β¨ Featuresβ
- Fix an issue where the seekable range of HLS streams with tag
#EXT-X-PLAYLIST-TYPE:EVENT
would not start at zero.
π Issuesβ
- Fix an issue where CEA608 Captions would not always render.
- Fix an issue where Google IMA would not always switch back to content on very slow internet connections.
- Fix an issue in THEO ad system where ads would not start playing after an empty VAST had been scheduled.
- Fix a regression where HLS streams sometimes fail to start on IE11 and Android.
Androidβ
β¨ Featuresβ
- Extended the caching API with pause and resume functionality.
- Extended the caching API with quality selection functionality.
- Extended the caching API with task size estimation and actual task size.
iOSβ
π Issuesβ
- Fixed an issue with DRM protected streams
tvOSβ
β¨ Featuresβ
- TvOS UI Integrated for TVML applications.
π 2.48.0 (2018/11/06)β
Webβ
β‘ Improvementsβ
- Fix an issue where the player would sometimes stall indefinitely on period switches in DASH streams.
π Issuesβ
- Fix an issue with certain content security policy (CSP) directives.
Androidβ
β¨ Featuresβ
- Extended the player with the metrics API
Android TVβ
β¨ Featuresβ
- Extended the player with the metrics API
iOSβ
β¨ Featuresβ
- Extended the player with the metrics API
π 2.47.0 (2018/10/23)β
Webβ
β¨ Featuresβ
- Added support for
UTCTiming
elements inMediaPresentationDescription
s as defined in DASH IF IOP v4.2, section 4.7.3. - Added Xstream DRM pre-integration for Widevine and Playready.
- Added support for AirPlay with FairPlay protected streams.
β‘ Improvementsβ
- Improved handling of DRM-protected content.
- Added log level to Agama configuration
π Issuesβ
- Fix an issue where Google DAI's and Google IMA's clickthrough were not clickable.
- Fix an issue where text tracks were visible on the local player when casting.
- Fix an issue where the player would sometimes stall indefinitely when some tracks had differing start times.
- Fix an issue where the clickthrough for an ad was not clickable.
iOSβ
π Issuesβ
- Fixed an issue where the layout was incorrect when embedding a player in a UIScrollView with content inset adjustment turned off.
π 2.46.0 (2018/10/08)β
Webβ
β¨ Featuresβ
- Added QoS
droppedVideoFrames
metrics - Added support for
availabilityTimeOffset
inSegmentTemplate
-based DASH streams. - Added QoS
corruptedVideoFrames
metrics - Added
agama
integration
β‘ Improvementsβ
- Improved setting autoplay parameters for Google IMA Ad requests.
- Improved error handling when worker files are unavailable due to CORS configuration.
π Issuesβ
- Fix an issue where the player was not able to play a source which consisted solely of advertisements.
- Fix an issue where the player fails to buffer when DASH segments are slightly misaligned.
- Fix an issue where the StreamOne integration attempted to track an end of stream event, even if the integration was not enabled.
- Fix an issue where SegmentList initialization segment urls were not always correctly resolved.
- Fix an issue in the THEOplayer ad integration where specific ads would only play in the lowest quality on Safari.
- Fix an issue where destroying a player instance caused the Chromecast session of another instance to end.
iOSβ
π Issuesβ
- Fixed an issue where multiple player instances contend for full-screen mode, causing glitchy behavior.
π 2.45.0 (2018/09/10)β
Webβ
β¨ Featuresβ
- Added
retainPresentationModeOnSourceChange
flag on the picture-in-picture configuration. - Added basic support for chunked CMAF in MPEG-DASH streams.
π Issuesβ
- Fix an issue where playback would sometimes stop near a discontinuity for some HLS streams.
- Fix an issue with DASH streams using SegmentBase.
- Fix an issue where the
Referer
header was no longer set on HTTP requests. - Fix an issue where subtitles were automatically turned off after switching away from the main content - e.g. for advertisement or casting.
- Fix an issue where the player sometimes stutters after appending a segment in DASH streams with a large timescale.
- Fix an issue where segments were sometimes shifted by a frame, causing the player to stall.
Androidβ
β¨ Featuresβ
- Integrated YoSpace Ad Management Android SDK
iOSβ
β¨ Featuresβ
- Integrated YoSpace Ad Management Android SDK
π 2.44.0 (2018/08/27)β
Webβ
β¨ Featuresβ
- Added support for legacy EME implementations.
- Added support for in-stream DASH thumbnail tracks as defined in DASH IF IOP v4.2, section 6.2.6.
β‘ Improvementsβ
- Improved dynamic sizing for thumbnails, e.g. in fullscreen mode.
π Issuesβ
- Fix an issue where native fullscreen was not possible when using muted autoplay on iOS Safari.
- Fix an issue where the player would seek indefinitely.
- Fix an issue where the
bitrate
option inplayer.abr.strategy.metadata
was incorrectly interpreted as bytes per second (instead of bits per second).
iOSβ
π Issuesβ
- Fixed an issue when playback was not started.
- Fixed an issue when FairPlay stream was not started.
- Fixed an issue where the player did not go to fullscreen.
- Fixed an issue where some events were sending Infinity as currentTime
tvOSβ
π Issuesβ
- Fixed an issue when playback was not started.
- Fixed an issue when FairPlay stream was not started.
- Fixed an issue where the player did not go to fullscreen.
- Fixed an issue where some events were sending Infinity as currentTime
π 2.43.0 (2018/08/10)β
Webβ
β¨ Featuresβ
- Added active quality label to UI.
- Added FreeWheel integration.
- Added upcoming ad notification feature
π Issuesβ
- Fix an issue where the player would stall indefinitely on some DASH live streams from Microsoft Azure.
- Fixed an issue where ABR bandwith calculation was affected by network interceptors
- Fix an issue where the player would not start playback on some DASH live streams.
- Fix an issue where the Xstream ticket acquisition URL could not be specified through the API
- Fix an issue where ended state could not always be reached for MPEG-DASH playback
Chromecastβ
π Issuesβ
- Fix stuttering issue on Chromecast
π 2.42.0 (2018/07/25)β
Webβ
β¨ Featuresβ
- Add Xstream DRM pre-integration for FairPlay
π Issuesβ
- Fix an issue where the duration of a DASH stream was not correctly calculated for SegmentBase-based timelines.
- Fix an issue where playback rate does not update for DASH streams.
iOSβ
β¨ Featuresβ
- Add Xstream DRM pre-integration
π Issuesβ
- Fixed an issue where subtitle track is being played/displayed several times
tvOSβ
β¨ Featuresβ
- Add Xstream DRM pre-integration
π 2.41.0 (2018/07/17)β
Webβ
β‘ Improvementsβ
- Improved detection of invalid libraryLocation configuration.
- Improved handling of missing segments: when a segment is missing in one quality, the player will now also attempt downloading in other qualities.
π Issuesβ
- Fix an issue where certain segments would not be downloaded in Firefox.
- Improved robustness of player concerning dealing with failing to update a live DASH manifest
- Fixed an issue with setting the targetQuality of a track to automatic.
- Fixed an issue where manual quality switches in FireFox caused a glitch.
iOSβ
β¨ Featuresβ
- Added adaptive bitrate API.
tvOSβ
β¨ Featuresβ
- Added adaptive bitrate API.
π 2.40.0 (2018/07/02)β
Webβ
β‘ Improvementsβ
- Improved performance for DASH streams with a large number of Periods.
- Added support for Titanium PlayReady version 3.
- Added qualities property to targetqualitychanged event.
π Issuesβ
- Fix an issue where preload of a live-stream would result in playback at the start of live window
- Fix an issue where the error message is not properly cleared after changing the source.
- Fix an issue where IMA ads unset picture-in-picture mode.
- Fix an issue where DASH manifests without initialisation segment specifications were not handled correctly.
- Fix an issue where some domains can't be whitelisted.
- Fix an issue where the poster image was overlaying when setting it, now poster-images are reset when you set the source afterwards.
Androidβ
β¨ Featuresβ
- Extended adaptive bitrate API with strategies
π Issuesβ
- Fix a minor issue for certain DASH streams
Android TVβ
β¨ Featuresβ
- Extended adaptive bitrate API with strategies
iOSβ
β‘ Improvementsβ
- Improve performance when multiple FairPlay keys are requested in parallel.
tvOSβ
β‘ Improvementsβ
- Improve performance when multiple FairPlay keys are requested in parallel.
π 2.39.1 (2018/06/20)β
Chromecastβ
β¨ Featuresβ
- Pre-integration with Adobe Heartbeat Analytics for Chromecast.
π 2.39.0 (2018/06/18)β
Webβ
β‘ Improvementsβ
- Improved DASH buffering logic to handle manifest inaccuracies better.
π Issuesβ
- Fix an issue where DASH streams would not play back on IE11.
- Fix bad performance when playing DASH streams with multiple Widevine DRM keys on Firefox.
- Fix program date time when segments vary in duration.
- Fix an issue in Edge where live streams using large timestamps would freeze.
- Fix a small FairPlay bug on iOS 9.
Androidβ
π Issuesβ
- Fix an issue for issue for Android 4.1 devices
β¨ Featuresβ
- Added caching
- Added offline license DRMtoday playback
iOSβ
π Issuesβ
- Fix an issue with iOS 9
tvOSβ
π Issuesβ
- Fix an issue when destroying a player.
π 2.38.0 (2018/06/04)β
Webβ
β¨ Featuresβ
- Add clipping support
- Add looping support
- Support extra query parameters in SpotX Ads
π Issuesβ
- Fix an issue where the player would sometimes get stuck at the start of a live stream
- Fix an issue where we do not dispatch a playing event after an Google IMA ad has already started
- Fix an issue where the player would crash on a native Edge bug
- Fixed an issue with rendering SMPTE-TT text tracks.
Androidβ
π Issuesβ
- Fix an issue for devices with Android 4.4 or older
β¨ Featuresβ
- Support extra query parameters for SpotX Ads
iOSβ
β¨ Featuresβ
- Allow automatically entering picture-in-picture mode when the player goes out of view.
- Support for downloading and offline playback of FairPlay-protected content.
- Support extra query parameters in SpotX Ads
π Issuesβ
- Fixed an error where the timeupdate event was always sending Infinity when playing FairPlay streams
- Support for SMPTE-TT subtitles.
- Fixed some issues with FairPlay playback in chromeless mode.
- Fix an issue with Irdeto FairPlay DRM integration.
- Fixed a small full-screen orientation coupling bug.
tvOSβ
π Issuesβ
- Fixed an error where the timeupdate event was always sending Infinity when playing FairPlay streams
- Fixed some issues with FairPlay playback in chromeless mode.
π 2.37.0 (2018/05/22)β
Webβ
β¨ Featuresβ
- Added support for the Titanium DRM token-based authentication flow for Widevine and Fairplay.
π Issuesβ
- Fix an issue where the viewport would jump down when a poster image larger than the viewport was set.
- Fix an issue where IE11/W7 playback stalls after a discontinuity.
- Fix an issue where WebVTT font size was too big in portrait fullscreen mode
- Fix an issue where sometimes the wrong active quality is reported for HLS streams.
- Fix an issue where player couldn't handle a non-linear ad set as a pre-roll
- Fix an issue where the last scheduled advertisement was not being requested by IMA
- Improved handling of different formats for timeOffset/skipOffset for all ad systems
Androidβ
β¨ Featuresβ
- Expose the target buffer API.
iOSβ
β¨ Featuresβ
- Caching API: Offline playback of non-DRM protected streams.
β‘ Improvementsβ
- Various performance improvements.
π Issuesβ
- Fixed a bug where certain VR streams could not load because of CORS issues.
tvOSβ
β¨ Featuresβ
- Support for SMPTE-TT subtitles.
- Playback of FairPlay protected streams with DRMtoday and VUDRM.
π 2.36.0 (2018/05/07)β
Webβ
β¨ Featuresβ
- Added firstFrame property to quality
- Added
update
event toQuality
objects, dispatched when any property changes - Added support for SMPTE-TT subtitles embedded in ID3 metadata.
- Provide ability to set target buffer duration.
π Issuesβ
- Fix an issue where a failed segment download during caching logged a warning in the browser console.
- Fix an issue where the player was not able to seek to the start of a stream due to a bug in Edge.
- Fix an issue where the player would hang when playing CEA608 subtitles.
- Fix an issue with multiple concurrent caching tasks.
- Fix an issue where rounding errors in DASH segments would sometimes confuse the player's download logic.
- Fix an issue in Chrome where content hangs after changing qualities.
Androidβ
β¨ Featuresβ
- Added CastLabs DRMToday pre-integration.
iOSβ
β‘ Improvementsβ
- Marked the THEOplayer class as open, so that it can be extended by integrators.
π Issuesβ
- Fixed a bug where FairPlay videos would not render.
tvOSβ
β‘ Improvementsβ
- Marked the THEOplayer class as open, so that it can be extended by integrators.
π Issuesβ
- Fixed a bug where FairPlay videos would not render.
π 2.35.0 (2018/04/23)β
Webβ
β¨ Featuresβ
- Added possibility to configure the time between the live point and the end of the manifest.
- Added exposing Conviva client and session ID
- Added Azure Media Services pre-integration for FairPlay DRM.
π Issuesβ
- Fix an issue where seeking in an MPEG-DASH stream sometimes seeks to the wrong time.
- Fix an issue with setting
preload
and then changing source to an MPEG-DASH stream. - Fix an issue where FairPlay-protected streams would fail to start.
- Fix an issue where HLS streams would fail to start with an empty
contentProtection
configuration. - Fix an issue where side-loaded WebVTT text tracks with a UTF-8 BOM were not correctly recognized.
- Fix an issue where seeking to the end of a DASH stream did not always load the last segment.
- Fix an issue where caching tasks are incorrectly removed when offline
- Fix an issue with the currentTime of DASH livestreams when chromecasting.
Androidβ
β¨ Featuresβ
- Smaller library file size.
iOSβ
β¨ Featuresβ
- Added DRMToday and Vudrm pre-integrations for FairPlay DRM.
β‘ Improvementsβ
- Improved UI and UX for VR stereo mode.
π 2.34.0 (2018/04/09)β
Webβ
β¨ Features β
- Added CastLabs DRMToday pre-integration.
- Added MediaMelon SmartSight analytics pre-integration.
β‘ Improvementsβ
- Related Content API: added
show
andhide
events. - Google IMA integration: pause advertisement while visiting click through website.
- Dispatch
destroy
event whenplayer.destroy()
is called. - Fall back to alternative sources in
SourceDescription
when DRM of initial source is not supported.
π Issuesβ
- Fix an issue where an internal polyfill for
Array.prototype.includes
accidentally leaked to the global scope. - Fix an issue where sometimes Chrome would freeze on certain MPEG-DASH streams.
- Fix an issue where an extraneous
seeking
event occurs before an HLS stream starts playing. - Fix an issue where player-level and source-level analytics configurations were not correctly combined.
- Fix an issue where an empty captions text track is added on iOS for streams that don't contain captions.
- Fix an issue with the ExpressPlay integration for Fairplay-protected streams.
- Fix an issue where a mute toggle is displayed on environments that don't support programmatic muting.
- Fix an issue with
preload
for HLS streams. - Fix an issue with seeking to live when the manifest reports starts of fragments that are slightly off.
- Fix an issue where the player would detect too many audio tracks in some HLS streams on iOS.
π 2.33.0 (2018/03/26)β
Webβ
β¨ Featuresβ
- Added Chromecast global session sharing.
β‘ Improvementsβ
- Network API: added
subtype
property to identify initialization segment requests. - ABR API: added
bandwidth
strategy.
π Issuesβ
- Fix an issue where the VR display is sized incorrectly on iPhone X.
- Fix an issue with switching audio tracks in DRM-protected MPEG-DASH streams on Firefox.
- Fix an issue where sometimes the wrong subtitles stay on the screen after seeking.
- Fix an issue with StreamOne analytics.
- Fix an issue with unsupported adaptation sets in MPEG-DASH streams.
- Fix an issue with setting
vr.direction
before starting playback. - Fix an issue with HLS segments with missing audio frames.
- Fix an issue with VR on Chrome 65 and higher.
π 2.32.0 (2018/03/12)β
Webβ
β¨ Featuresβ
- Added StreamOne analytics pre-integration.
- Added ExpressPlay FairPlay DRM pre-integration.
π Issuesβ
- Fix an issue where some ad error events were not reported for Google IMA.
- Fix an issue where malformed MPEG-TS packets may crash the player.
- Fix an issue where some streams repeatedly stall after every segment in IE11.
- Fix an issue where segments starting with a B-frame sometimes cause stalls in Safari and Edge.
- Fix an issue where FairPlay-protected streams would fail to start.
π 2.31.0 (2018/02/26)β
Webβ
β‘ Improvementsβ
- Improve recovery when a segment in a HLS variant stream cannot be fetched.
π Issuesβ
- Fix an issue where player sometimes crashes when rapidly switching between DRM-protected streams.
- Fix an issue when seeking in a multi-period DASH live stream.
- Fix an issue when combining VR content with Google IMA ads.
- Fix an issue where credentials were not sent when requesting certain DASH segments.
- Fix an issue where a pinch gesture activates native fullscreen on iOS.
- Fix various issues with casting to Chromecast.
π 2.30.1 (2018/02/14)β
Webβ
β¨ Featuresβ
- Added Chromecast Receiver SDK.
- Added adaptive bitrate (ABR) API.
- Added Castlabs DRMToday pre-integration.
- Added optimal media file selection for linear advertisements.
β‘ Improvementsβ
- Improve advertisement error messages.
- Improve automatic picture-in-picture to only activate when playback was previously started.
π Issuesβ
- Fix an issue with 360 degrees videos sometimes glitching on iOS around quality switches.
- Fix an issue with muted autoplay and Google IMA pre-rolls ads on mobile.
- Fix an issue with Widevine DRM on Firefox 52 ESR.
- Fix an issue with Irdeto FairPlay DRM.
- Fix an issue with replaying an ended video on Internet Explorer 11.
- Fix an issue with some video-only streams not starting.
- Fix an issue with HLS streams containing MP3 audio not starting.
- Fix an issue where scrubber sometimes goes outside of seekbar on some live streams.
- Fix an issue where subtitles are sometimes displayed twice on iOS.
- Fix an issue where subtitles are displayed too small.
- Fix an issue with WebVTT subtitles embedded in MPEG-DASH stream.
- Fix an issue where CEA-608 captions sometimes stop showing after switching to a different stream.
- Fix various issues with advertisements.
π 2.29.0 (2018/01/15)β
Webβ
β¨ Featuresβ
- Allow moving the seek bar inside the control bar using the
theo-seekbar-inside-controls
CSS class.
π Issuesβ
- Fix an issue preventing some HLS livestreams from starting playback.
- Fix an issue with pre-roll advertisements on iOS 9.
- Fix an issue with ID3 metadata on iOS.
- Fix an issue causing the Chromecast button to sometimes disappear when using multiple players.
π 2.28.0 (2018/01/03)β
Webβ
β¨ Featuresβ
- Added support for loading THEOplayer from a cached Google page
- Added THEOplayer.features property
- Added CEA-608 text track styling
β‘ Improvementsβ
- Improve DASH gap handling
π Issuesβ
- Fix an issue where ads did not play correctly when using muted autoplay and Google IMA
- Make sure the ended event is dispatched with empty VAST postroll in Google IMA pre-integration
π 2.27.0 (2017/12/15)β
Webβ
β¨ Featuresβ
- Moat analytics pre-integration
- Support async loading of THEOplayer library
β‘ Improvementsβ
- Improve CEA608 handling across quality switches
- Internet explorer: use responseUrl from http response
- Improve ABR for HLS streams on mobile
- Improve handling of missing keyframes
- MPEG-DASH stream dispatch only one error event on a load error
π Issuesβ
- Fix an issue with ID3 on iOS not correctly activating
- Fix issue with HLS packager
- Solved an issue where last segment was not always packaged in HLS stream
π 2.26.0 (2017/12/04)β
Webβ
β¨ Featuresβ
- Set custom labels on qualities
- Allow quality grouping with custom labels
- Destroy method on player
- Network API
β‘ Improvementsβ
- Youbora Analytics also track advertisements
- Improve error messages
π Issuesβ
- Solved an issue with chromeless player and poster image
π 2.25.0 (2017/11/20)β
Webβ
β¨ Featuresβ
β‘ Improvementsβ
- Irdeto integration: minor update.
- Prefill for SpotX device data.
- Support for HLS current program date time on iOS.
- Android SDK:
- Google IMA: pass in custom IMA settings when scheduling an ad.
- General UI improvements.
π Issuesβ
- Solved an issue related to rendering of subtitles.
- Solved an issue where iOS SDK would sometimes crash.
- Solved an issue where video content started playing in the background when a video ad is playing on Safari.
- Solved an issue where mute and unmute with video ad didn't work.
π 2.24.0 (2017/11/15)β
Webβ
β¨ Featuresβ
- Configure Google IMA ads UI language using UIConfiguration.language
- Enable configuration of ad preload type
β‘ Improvementsβ
- Remove border around player on focus
- Improve Google IMA ad playback on Safari 11
π 2.23.0 (2017/11/07)β
Webβ
β¨ Featuresβ
- Google IMA:
β‘ Improvementsβ
- Improved handling of text tracks
π 2.22.0 (2017/10/23)β
Webβ
β¨ Featuresβ
- Added MediaMelon pre-integration
- Added allowMixedContent player configuration parameter
- Added Youbora analytics pre-integration
β‘ Improvementsβ
- Improved muted autoplay
- Styling improvements for web and mobile
π Issuesβ
- Google IMA: Improvements for non-linear ads and VPAID ads
π 2.21.0 (2017/09/28)β
Webβ
β¨ Featuresβ
- Added the Network API
- Added allowNativeFullscreen to the player configuration. This allows using fullscreen on the video element directly instead of on the whole player.
- Added support for Conax FairPlay
- Added a generic metadata property to SourceDescription to allow for more descriptive sources.
- Added the adskip event to the Advertisement API to indicate ads that are being skipped
- Added support for more timeOffset formats for GoogleIMAAdDescriptions (scheduling ads without VMAP): timestamps, "start", "end" and percentages (for VOD)
β‘ Improvementsβ
- Improved the UI for the Up Next feature
- Improved the handling of ID3 metadata on iOS
- Improved the adskip button to feature the poster image
π Issuesβ
- Solved an issue where muted autoplay on iOS could not be unmuted
- Solved an issue where the ended event was not always dispatched when IMA ads were used
- Solved an issue where tooltip for currentTime was not updating correctly on mobile web when switching to picture-in-picture
π 2.20.0 (2017/09/12)β
Webβ
β¨ Featuresβ
- Allow THEOplayer to be used as an Audio Node within the Web Audio API
β‘ Improvementsβ
- Improved the player's big play button
- Improved the UI of Picture-in-Picture on the web
- Improved the UI of the up-next panel
- Various improvements to the player's internals
- Improved the UI of the top control bar
- Improved the player to play content as smoothly as possible
π Issuesβ
- Solved an issue where a wrong play/pause icon would show on mobile platforms after returning from tab inactivity
- Solved an issue where the player sometimes stalls when the PTS/DTS offset changes on a discontinuity edge
- Solved a memory leak issue
- Solved a freezing issue on Chrome/Opera
- Solved an issue where sideloaded text tracks appear twice in the subtitle menu
- Solved an issue where the player would not be correctly resized for 4:3 videos
- Solved an issue with mouse behaviour when using 360/VR
π 2.19.0 (2017/08/28)β
Webβ
β¨ Featuresβ
- Added support for KeyOS Fairplay
β‘ Improvementsβ
- Improved the player's download prioritization
- Improved handling of offline DASH manifests
- Improved playback of multiple sequential advertisements
- Various updates and improvements to the player's codebase
π Issuesβ
- Solved an issue where playing certain DASH manifests could trigger a memory leak
- Solved an issue where the player would stall playback on certain HLS live streams
- Solved an issue where including the Google IMA script would cause the player to pause after a single tap on mobile devices
- Solved an issue where the language selection menu was not always correctly updated
- Solved an issue where the player's manifest downloads would not be correctly cleared after setting a new source
- Solved an issue where the 'Up Next' UI did not always show at the end of a video
π 2.18.0 (2017/08/18)β
Webβ
β¨ Featuresβ
- Added support for DASH SegmentTemplate parameter prefix padding
- Added support for setting a list of qualities as target qualities (documentation)
- Added a right-click menu to the player's UI
- Added support for Irdeto Registered User Flows (documentation)
β‘ Improvementsβ
- Improved handling of unsupported DASH tracks
- Various improvements to the player's internals
- Improved handling of streams with empty or missing segments
π Issuesβ
- Solved an issue where the player did not correctly recover from an unavailable Google IMA ad
- Solved various minor issues with advertisement playback
- Solved an issue where the useCredentials flag was not taken into account correctly
- Solved an issue where ID3 cuechange events where not correctly fired on iOS
- Solved an issue where multiple players on the same page would not share a Chromecast session correctly
- Solved an issue where the player's bandwidth algorithm estimation gave bad results
- Solved an issue where DASH emsg events were not correctly exposed
API Updatesβ
- Removed all support for the previously deprecated drmController API
π 2.17.0 (2017/07/28)β
Webβ
β¨ Featuresβ
- Added support for Irdeto DRM (documentation)
- Added support for a countdown timer to the Up Next feature (documentation)
- Added player visibility detection API (documentation)
- Added localization support (documentation, code example)
β‘ Improvementsβ
- Improved Conviva integration
- Added support for a close button to skippable non-linear ads
- Support passing Widevine certificate in SourceDescription (documentation)
- Postponed call to ad servers happen until a video play indication
π Issuesβ
- Solved an issue where closing social sharing and recommended menus don't restore the previous playback state
π 2.16.0 (2017/07/17)β
Webβ
β¨ Featuresβ
- Added support for muted autoplay on specific mobile devices
β‘ Improvementsβ
- Improved the player's ABR on mobile devices
- Improved the player's mobile UI
- Various improvements to the player's internal buffering architecture
- Improved support for advertisement scheduling in live streams
π Issuesβ
- Solved an issue where the last segment of certain VOD HLS streams was never fetched
- Solved an issue where cues for embedded text tracks where not updated correctly
- Solved an issue where calling player.stop() caused an error in Edge
π 2.15.0 (2017/07/05)β
Webβ
β¨ Featuresβ
- Added up-next API (documentation)
- Added support for Titanium FairPlay
- Added Yospace API (documentation)
- Added related content API (documentation)
- Added social sharing API (documentation)
- Added Conviva analytics pre-integration (documentation)
β‘ Improvementsβ
- Various improvements to the player's internal playback architecture
π 2.14.0 (2017/06/09)β
Webβ
π Issuesβ
- Solved an issue where track lists did not dispatch
change
events - Solved an issue where an error was thrown when calling
stop()
- Solved various minor issues with advertisements
π 2.13.0 (2017/05/26)β
Webβ
β¨ Featuresβ
- Added pre-integration for SpotX advertisements (documentation)
β‘ Improvementsβ
- Various improvements to the player's internal playback architecture
π Issuesβ
- Solved an issue where hovering the player in VR mode would sometimes trigger an error
- Solved an issue where the player blocked playback on older versions of Chrome (< 52)
- Solved an issue where an edge case would stall HLS playback
- Solved an issue where sideloaded text tracks where not displayed in fullscreen mode on iPad
π 2.12.1 (2017/05/22)β
Webβ
β¨ Featuresβ
- Added the trackType, track and quality properties to the segmentnotfound event (documentation)
π 2.12.0 (2017/05/11)β
Webβ
β¨ Featuresβ
- Added support for 360Β° and VR videos (documentation)
- Added canvas API (documentation)
- Added pre-integration support for server-side ad insertion with Yospace (documentation)
β‘ Improvementsβ
- Side-loaded text tracks are now lazy-loaded
- Chromecast: various minor improvements
π Issuesβ
- Solved an issue with autoplay and Fairplay content in Safari on macOS
- Solved various minor issues
π 2.11.0 (2017/04/27)β
Webβ
β¨ Featuresβ
- Added support for chapters on the seek bar
- Added support for preview thumbnails on the seek bar
- Added pre-integration support for KeyOS DRM (documentation)
β‘ Improvementsβ
- UI: the mouse cursor is now hidden while the mouse is resting still above the player
- UI: the control bar is now hidden immediately when the mouse moves outside of the player
π Issuesβ
- Solved an issue where picture-in-picture mode would not re-activate automatically in some scenarios
- Solved an issue where subtitles would not appear in some edge cases
- Solved an issue with Internet Explorer 10 support
- Solved various minor issues with DRM protected playback on Internet Explorer and Edge
- Solved various minor issues with advertisements
π 2.10.0 (2017/04/12)β
Webβ
π Issuesβ
- Solved an issue where changing the audio track on a DASH source would sometimes freeze the player on Edge
- Solved an issue where Airplay was sometimes marked as available when it really wasn't
- Solved an issue with preloading while in fullscreen mode on iOS
- Solved an issue where querying the played property lead to an error when no source was set
- Solved various minor issues with advertisements
π 2.9.11 (2017/04/07)β
Webβ
β‘ Improvementsβ
- Improved player behavior for redirected manifests
- Improved the player's playback behavior on Windows 7
π Issuesβ
- Solved an issue where the Airplay overlay was not hidden correctly
π 2.9.10 (2017/04/05)β
Webβ
β‘ Improvementsβ
- Added support for SKD protocol for Fairplay license URLs
- Improved the player to detect broken AAC frames and replace them with silent audio
π Issuesβ
- Solved an issue where a DASH live stream with inconsistent segments timelines for audio and video would not start playing
β¨ Featuresβ
- Added support for Airplay playback on Mac OS and iOS
π 2.9.9 (2017/04/03)β
Webβ
β‘ Improvementsβ
- Improved advertisement viewing experience
- Improved Segment packaging for HLS streams
π Issuesβ
- Solved some issues with the Player UI's menus
- Solved an issue with setting the player's currentTime before ads were completely loaded
- Solved an issue with cues not being updated correctly for sideloaded text tracks
- Solved an issue with handling different Fairplay formats
π 2.9.8 (2017/03/28)β
Webβ
β‘ Improvementsβ
- Improved the player's behavior when there is a 404 error on segments.
π 2.9.7 (2017/03/27)β
Webβ
π Issuesβ
- Solved some issues with the Player UI's menus
π 2.9.6 (2017/03/27)β
Webβ
π Issuesβ
- Solved an issue that made the player pause when seeking.
- Solved an issue with multiple identical content protection systems.
π 2.9.5 (2017/03/23)β
Webβ
β¨ Featuresβ
- Fallback to track.label as title for audio tracks with no specific language.
- Improved scrubbing behaviour.
π Issuesβ
- Solved an issue with subtitle selection on Chromecast
- Solved an issue with quality selection on Chromecast
π 2.9.4 (2017/03/17)β
Webβ
β¨ Featuresβ
- Added compatibility with Chromecast Default Media Receiver.
- Added support for setting the default selected sideloaded text track.
π Issuesβ
- Solved an issue where text track labels were not shown.
π 2.9.3 (2017/03/13)β
Webβ
π Issuesβ
- Solved an issue where an empty DRM description prevented DASH streams from being played correctly.
- Solved an issue with text track cues that were not being dispatched correctly.
π 2.9.2 (2017/03/10)β
Webβ
β‘ Improvementsβ
- Improved outline behavior in the THEOplayer UI quality selection menu.
π 2.9.1 (2017/03/09)β
Webβ
β¨ Featuresβ
- Added support for the poster property on Chromeless as well as UI players.
- Added an optional poster property to SourceDescriptions.
π Issuesβ
- Solved an issue where setting the preload property was not always correctly handled.
- Solved an issue with the currentTime and duration displays in the THEOplayer UI.
- Solved an issue where the fullscreen button was permanently hidden after casting to Chromecast.
π 2.9.0 (2017/03/07)β
Webβ
β¨ Featuresβ
- Added a crossOrigin property to the player
- Added support for Picture-in-Picture (PIP)
- Added support for ad-block detection
β‘ Improvementsβ
- Improved detection and handling of gaps in MPEG-DASH streams
π Issuesβ
- Solved an issue where the loadedmetadata event was not always correctly dispatched
- Solved multiple issues with the ready- and playback state of the player
- Solved an issue where it was no longer possible to specify global DRM configurations in a SourceDescription
π 2.8.6 (2017/03/02)β
Webβ
π Issuesβ
- Solved an issue where the player would often have to resync when it had to rebuffer
- Solved an issue with Chromecast text tracks
β‘ Improvementsβ
- Improved track synchronization behavior
π 2.8.5 (2017/02/24)β
Webβ
π Issuesβ
- Solved an issue where content with persistent Playready licenses did not start playback correctly
π 2.8.4 (2017/02/24)β
Webβ
π Issuesβ
- Solved an issue where the first cue of an SRT file was not parsed correctly
π 2.8.3 (2017/02/24)β
Webβ
π Issuesβ
- Solved an issue where activequalitychanged event wasn't dispatched for HLS tracks
- Solved an issue which prevented the progress bar UI from resetting
- Solved an issue related to post-rolls
- Solved an issue with the spinner icon on source change
- Solved an issue with playback of periods that are no longer part of a stream
β‘ Improvementsβ
- Improved id3 support
- Improved THEOplayer events
- Improved buffering approach
π 2.8.2 (2017/02/14)β
Webβ
π Issuesβ
- Solved an issue where the player would sometimes miscalculate the end time of stream
- Solved an issue on IE/Edge where DRM protected content did not always start playback
- Solved an issue where the player kept waiting for a seeking event that would never occur
β¨ Featuresβ
- Improved mobile UI
- Improved menu UI
π 2.8.1 (2017/02/08)β
Webβ
π Issuesβ
- Solved an issue with the seekbar when using Google IMA
- Solved an issue which didn't correctly dispatch events when using ads
- Solved an issue with VuDRM
β¨ Featuresβ
- Updated menu UI
β‘ Improvementsβ
- Improved error message for missing ContentProtection tag
π 2.8.0 (2017/01/31)β
Webβ
π Issuesβ
- Solved an issue where the readystate was not always updated correctly when using ads
β¨ Featuresβ
- Updated advertisement UI
π 2.7.2 (2017/01/25)β
Webβ
π Issuesβ
- Solved an issue where DRM protected content did not start playback on Edge
- Solved an issue where errors from native playback were not dispatched correctly
- Solved an issue where embedded text track segments were not being downloaded in a live stream
β¨ Featuresβ
- Added support for decryption of Clearkey-encrypted content through EME
π 2.7.1 (2017/01/16)β
Webβ
β¨ Featuresβ
- Added support for playback of advertisements via Google-IMA
π 2.7.0 (2017/01/16)β
Webβ
π Issuesβ
- Solved an issue where the UI was not reset correctly when changing a source
- Solved an issue where the player stayed in an indefinite seeking state
- Solved an issue where casting to a Chromecast device occasionally failed on startup
β¨ Featuresβ
- Added support for playback of non-DASH media sources (e.g. regular MP4-files)
- Updated the API to allow for per-source DRM configuration
- Added support for playback of advertisements without requiring a main source
- Added a βtargetqualitychangedβ event to Audio and VideoTrack objects that is triggered when the target Quality of that track is set
- Added an βactivequalitychangedβ event to Audio and VideoTrack objects that is triggered when the active quality of that track changes
π 2.6.1 (2016/01/16)β
Webβ
π Issuesβ
- Solved an issue where text tracks where not switched correctly when changing the playback context e.g. to ChromeCast
- Solved an issue where license errors were not handled correctly and lead to a nonsense trace in console
π 2.6.0 (2016/12/26)β
Webβ
π Issuesβ
- Solved an issue where βsegmentnotfoundβ events and errors were thrown multiple times for the same segment
- Solved an issue where framerate was not exposed correctly
β¨ Featuresβ
- Added support for EventStream events
- Added support for DVB Subs text tracks
- Added support for casting via ChromeCast
- Added support for scheduling and playback of VAST and VMAP advertisement files
- Added support for scheduling and playback of custom advertisements
π 2.5.10 (2016/12/22)β
Webβ
π Issuesβ
- Solved an issue where the player stopped playback at the end of the shortest track instead of playing all available content
- Solved an issue where a timeline gap at the end of a stream caused the player to not finish playback of a Period
- Solved an issue where βaddtrackβ and βremovetrackβ events were dispatched twice
β‘ Improvementsβ
- Improved the player to be able to handle broken segments more robustly
- Various improvements to playerβs internal architecture
π 2.5.9 (2016/12/20)β
Webβ
π Issuesβ
- Solved an issue where dispatching a seeking event too soon caused the player to remain in an eternal seeking state
π 2.5.8 (2016/12/19)β
Webβ
π Issuesβ
- Solved an issue where default PSSH information was not parsed from manifests correctly
- Solved an issue where the player did not start playback when detecting a gap in a stream
- Solved an issue where resetting the player would not always clean up the playerβs playing state completely
- Solved an issue where the player would detect a gap in a stream that wasnβt actually there
- Solved an issue where seeking the player ahead one frame at a time was not working
β‘ Improvementsβ
- Various improvements to the internal seeking behavior of the player
π 2.5.7 (2016/12/09)β
Webβ
β¨ Featuresβ
- Added support for Advanced DRM Integration
π Issuesβ
- Solved an issue where the last segment in a stream kept being downloaded endlessly
- Solved an issue where βseekedβ events where being dispatched too early
- Solved an issue where the duration, start and end times were being miscalculated for segments of SegmentTemplates with no explicit SegmentTimeline
- Solved an issue where a SourceBuffer was not initialized with the right codecs
β‘ Improvementsβ
- Various minor improvements to the player codebase
- Various improvements to the playerβs UI stylesheets
- Various improvements to the playerβs API via SourceDescriptions (Section 4)
π 2.5.6 (2016/12/01)β
Webβ
β¨ Featuresβ
- Added support for the new Latens Titanium v2.5 error response format
- Added a βsourceβ property to the player API which allows users to get and set the current SourceDescription. This deprecates the older player.setSource() method.
π Issuesβ
- Solved an issue where segment timestamps in a multi-period manifest were not always calculated correctly
β‘ Improvementsβ
- Improved the player to handle some errors caused by invalid manifests more gracefully
- Improved the estimate strategy in timeline searching algorithms
- Various improvements to the internal DRM structure
π 2.5.5 (2016/11/21) β
Webβ
π Issuesβ
- Solved an issue where a bug in the transition from dynamic to static behavior caused an endless loop. This is turn caused webpages that contained a malfunctioning player to freeze
π 2.5.4 (2016/11/18)β
Webβ
π Issuesβ
- Solved an issue where the complexity of algorithms that handle manifest updates put a drain on resources in Chrome, which caused the browser to drop video frames. This in turn caused stuttering playback
β‘ Improvementsβ
- Various improvements to the computational complexity of algorithms in the player
- Improved player behavior for disabling and re-enabling audio and video tracks
π 2.5.3 (2016/11/07)β
Webβ
π Issuesβ
- Solved an issue where a segment timeline for dynamic manifests without explicit timeline information was not constructed correctly
π 2.5.2 (2016/11/04)β
Webβ
π Issuesβ
- Solved an issue where the player would not reach the playing state after entering a waiting state twice, but leaving it only once
- Solved an issue where the player would crash when setting its currentTime before the manifest finished loading
- Solved an issue where manually switching an audio or video quality would sometimes leak an error to the console
- Solved an issue where the activeQuality property of an audio or video track would always be undefined
- Solved an issue where a gap at the start of a stream would sometimes prevent the player from reaching the βplayingβ state
β‘ Improvementsβ
- Improved the playerβs track switching algorithm
- Improved the playerβs manual quality switching algorithm
π 2.5.1 (2016/10/26)β
Webβ
β‘ Improvementsβ
- Improved the player to optimally handle 64-bit precision timestamps in manifests
π 2.5.0 (2016/10/24)β
Webβ
β¨ Featuresβ
- Added support for inband (βemsgβ) events
π 2.4.5 (2016/10/21)β
Webβ
π Issuesβ
- Solved an issue where the player would stall indefinitely when a large gap would occur in audio or video data
β‘ Improvementsβ
- Improved the playerβs ability to detect and handle data gaps in audio or video tracks
- Improved the playerβs synchronization algorithm
π 2.4.4 (2016/10/06)β
Webβ
π Issuesβ
- Solved an issue where resetting the player would cause IE11 on Windows 8.1 to crash
- Solved an issue where an MPD error would cause an unhandled error to leak to the console
π 2.4.3 (2016/09/28)β
Webβ
π Issuesβ
- Solved an issue where a video Qualityβs framerate was not exposed correctly
β‘ Improvementsβ
- Improved the player to detect and handle overlapping segments in a dynamic stream
π 2.4.2 (2016/09/22)β
Webβ
π Issuesβ
- Solved an issue with indexes for SegmentList-based VOD content that prevented the content from being played
- Solved an issue where the enabled state of an audio track was not correctly visualized initially
- Solved an issue where text tracks that ended before audio or video tracks would prevent seeking beyond the end of that text track
- Solved an issue where protected content would keep the player from reaching the βloadedmetadataβ state on Edge
- Solved an issue where the player would leak an error to the console when a DRM problem occurred and ongoing license requests were not cancelled
- Solved an issue where the playerβs duration was not reset to NaN after resetting the source
β‘ Improvementsβ
- Improved the player to detect and handle missing frames in audio and video data
π 2.4.1 (2016/09/16)β
Webβ
π Issuesβ
- Solved an issue where the initialization of persistent DRM failed because two initialization requests were ran in parallel
- Solved an issue where the active video track would be unnecessarily synced when switching the active audio track
π 2.4.0 (2016/09/08)β
Webβ
β¨ Featuresβ
- Added support for playback of multi-period manifests
- Added support for the WebVTT text track format
- Added support for side-loaded text tracks
- Added support for video tracks
- Added support for manual quality or rendition switching and inspection of audio and video tracks
π Issuesβ
- Solved an issue with buffering of embedded text tracks that prevented subtitles from being rendered
- Fixed some typing errors throughout the API documentation
- Solved an issue where a BaseURL pointing to β./β was not being resolved correctly
- Solved an issue where multiple occurrences of the same parameter in an URL template were not being resolved
π 2.3.4 (2016/09/02)β
Webβ
π Issuesβ
- Resolved an issue where a call to stop, followed by a call to play, would cause an unrecoverable DRM error
β‘ Improvementsβ
- Various improvements to the playerβs UI
- Various improvements to the playerβs internal structure
π 2.3.3 (2016/08/31)β
Webβ
π Issuesβ
- Resolved an issue where the player was not able to switch content-protected audio tracks
- Resolved an issue with the playerβs volume
- Resolved an issue where the player did not use the updated time at which a MPDs was last fetched
- Resolved an issue where the player stuttered due to decoding delay of DRM streams
- Resolved an issue where event listeners for external events were not always attached correctly
β‘ Improvementsβ
- Improved the player to ignore unplayable tracks instead of throwing an error
- Improved various aspects of the playerβs internal code
- Improved the playerβs synchronization algorithm
- Improved the player to handle transit between internal and external events
π 2.3.2 (2016/08/17)β
Webβ
π Issuesβ
- Resolved an issue where track lists did not dispatch βremovetrackβ events when resetting the player
- Resolved an issue where new segmentsβ numbers were wrongfully assigned when updating the manifest
- Resolved an issue where the playerβs error property was not set when dispatching an error event
- Resolved an issue where the player allowed a user to seek outside of its seekable range
- Resolved an issue where a periodβs duration was not correctly detected
β‘ Improvementsβ
- Improved the player to detect between which codecs can be switched during Adaptive Bitrate Streaming
- Improved the player to signal representation changes when they occur visually instead of when they start downloading
- Improved the player to detect unsupported platforms to prevent bad User Experience on those platforms
- Improved the player to retry downloading failed manifests on multiple locations- when possible
- Improved the playerβs error handling and made license errors more descriptive
π 2.3.1 (2016/08/02)β
Webβ
β‘ Improvementsβ
- Added support to detect and filter representations that canβt be played by the MediaSource environment
- Improved the playerβs behavior when switching between two tracks
- Improved the playerβs setCurrentTime functionality
- Improved the playerβs use of the presentationTimeOffset attribute
π 2.3.0 (2016/07/20)β
Webβ
β¨ Featuresβ
- Added support for the publishTime attribute in media presentation descriptions
- Added support for playback on Chrome 52 on Android
- Added support for saving and restoring state of volume and muted properties over multiple sessions
- Added support for location elements in manifests
- Added the currentProgramDateTime property to the player to indicate the playerβs date time relative to a manifestβs publish time
π Issuesβ
- Resolved an issue where the player stalled indefinitely upon switching representations
- Resolved an issue causing the player to go in a waiting state when its ready state is higher than
HAVE_CURRENT_DATA
- Resolved an issue with asynchronous creation of audio tracks
- Resolved an issue where the player stalled indefinitely after playing 3 segments
- Resolved an issue for SegmentTimeline segments with a repeat count equal to -1
- Resolved an issue where the player did not dispatch a waiting event when starting playback of a stream
- Resolved an issue with BaseURL elements that point to root
β‘ Improvementsβ
- Improved the internal architecture for track-based playback
- Improved support for default attributes in multiple levels of a manifestβs segment info hierarchy
- Various small improvements in the playerβs seeking behaviour
π 2.2.1 (2016/06/16)β
Webβ
β¨ Featuresβ
- Added support for the MPEG-DASH BaseURL element to the player
- Reworked the players play() and pause() flow
π Issuesβ
- Resolved an issue with UI display order on Firefox
- Resolved an issue with UI handling durationchange events and displaying an incorrect duration
- Resolved an issue with UI not displaying all buffered ranges correctly
- Resolved an issue where the internal duration was not correctly reset after stopping the player
- Resolved an issue in correctly resetting of media elements when a new data source is loaded
- Resolved an issue with playbackRate of the player being reset to 1 when loading a new source
- Resolved an issue with the player occasionally dispatching a timeupdate event despite being in a waiting state
- Resolved an issue with the player dispatching a playing event before having a data source loaded
- Resolved an issue with the player attempting to seek before having a data source loaded
- Resolved an issue with the player getting in an eternal waiting state while buffering data
β‘ Improvementsβ
- Changed the readyState of the player and all internal components waiting for readyState to being dependent on DRM being complete
- Further optimized the build pipeline of the player
- Improved event flow related to subtitle tracks
- Improved the players support for the MPEG-DASH SegmentTemplate element
- Various small improvements in the flow and stability of the player
π 2.2.0 (2016/05/30)β
Webβ
β¨ Featuresβ
- The player now supports loading, parsing and rendering of TTML (Timed Text Markup Language) subtitles. More specifically it supports the Core Presentation Profile of the TTML specification
- The player now has integration with a UI component
π Issuesβ
- Resolved an issue that caused the player to repeatedly redownload a manifest file
- Resolved an issue in correctly calculating the segment numbers in some manifest files
β‘ Improvementsβ
- Optimized the build pipeline of the player
- Added a build target with build in user interface
- Further optimized the calculation of time related ranges
- Various small improvements in the flow and stability of the player
π 2.1.5 (2016/05/17)β
Webβ
π Issuesβ
- Resolved an issue in correctly determining the end of stream and end of buffer
- Resolved an issue in sometimes determining the duration of Period elements
β‘ Improvementsβ
- Optimized the build pipeline of the player
- Added the videoWidth, videoHeight and error properties to the player
- Improved the calculation of buffered, played, seekable properties
- Various small improvements in the flow and stability of the player
π 2.1.4 (2016/05/02)β
Webβ
π Issuesβ
- Resolved an issue in correctly determining that the end time of a media element had changed
- Resolved an edge case that caused the player to repeatedly download the same segment
- Resolved detecting that the player no longer was in sync with the available data in the manifest
β‘ Improvementsβ
- Improved buffer handling of the player
- Various small improvements in the flow and stability of the player
π 2.1.3 (2016/04/16)β
Webβ
π Issuesβ
- Resolved an issue that caused the player to not play when changing the source of the player while autoplay is enabled
- Resolved an issue in correctly detecting the end of stream of the player
- Resolved an issue in calculating the correct duration of some streams
- Optimized the parsing of MPEG-DASH documents and removed blocking code
β‘ Improvementsβ
- Improved the memory usage of the MPEG-DASH document parser
- Added missing documentation about the date attribute of some events that the player dispatches
- Various small improvements in the flow and stability of the player
π 2.1.2 (2016/03/29)β
Webβ
β¨ Featuresβ
- A new buffering algorithm has been added to the player
- Added the βplayedβ TimeRanges attribute to the player to indicate the played range
π Issuesβ
- Resolved an issue where individual tracks started playback before all tracks are DRM decrypted
- Resolved an issue in determining the content type of a representation for some manifests
- Resolved an issue in correctly calculating the duration of time ranges
- Resolved an issue where the player could go in a stalling state
β‘ Improvementsβ
- Improved the synchronization of the individual tracks
- Ensured that the player never goes in a playing state before the βcanplayβ event has been thrown by the player
- Improved the memory handling of the player
- Added more detailed documentation about the various events that the player dispatches
- Various small improvements in the flow and stability of the player
π 2.1.1 (2016/03/14)β
Webβ
π Issuesβ
- Resolved a reference error in relation to MSMediaKeys.isTypeSupported on Microsoft Edge
- Resolved a reference error that occurred when reporting Titanium Widevine error messages
β‘ Improvementsβ
- Removed unnecessary debug messages being outputted to console in release versions
- Various small improvements in the flow and stability of the player
π 2.1.0 (2016/03/04)β
Webβ
π Issuesβ
- Resolved DRM errors not being thrown while the player is in some specific states
- Resolved an error in ABR calculations while the player is in a waiting state
β‘ Improvementsβ
- Optimized the error handling of specific errors that previously leaked their error message to console
- Improved the error event being thrown twice for the some errors
- Improved the MPEG-DASH manifest parser to detect more defects in the manifests
- Improved the segmentnotfound event to provide information on the number of retries
- Various small improvements in the flow and stability of the player
π 2.0.2 (2016/02/26)β
Webβ
β¨ Featuresβ
- Content Protection error and success reporting and messages have been improved
contentprotectionerror
β event thrown when an error occurs during content protectioncontentprotectionsuccess
β event thrown after content protection steps have been finalized and playback should startmediaencryptionlicenseobtained
β event has been removed from the player
π Issuesβ
- Resolved an issue in calculating the edges of the seekable range in closed, static content
- Throw a durationchange event when the duration of a media asset changes during playback
β‘ Improvementsβ
- Various small improvements in the flow and stability of the player
π 2.0.1 (2016/02/12)β
Webβ
π Issuesβ
- Resolved an inaccuracy in the seekable ranges of the player
- The end time of the seekable range during playback of an open (type = βdynamicβ) asset is now three target durations away from the loadable range/end of the data in the stream
- Ensure that when the currentTime of the player is modified, the new value falls inside of the seekable range
- Resolved an issue in open (type = βdynamicβ) assets that caused the manifest to no longer to be reloaded
β‘ Improvementsβ
- Various small improvements in the flow and stability of the player
- Updated the DRM error messages to more clearly represent the cause of the error
π 2.0.0 (2016/02/05)β
Webβ
β¨ Featuresβ
- Support for the Latens Titanium DRM system has been added for the IE11 and Edge browsers for the Windows 8, 8.1 and 10 platforms
π Issuesβ
- Resolved a TypeError related to the code obfuscation occurring specifically on Edge causing the player not to start playback
- Resolved an issue in cleaning up assets while unloading the player or changing source
β‘ Improvementsβ
- Various small improvements in the flow and stability of the player
π 2.0.0-BETA.0 (2015/12/03)β
Webβ
β¨ Featuresβ
- Added versioning support in THEOplayer.version
- Support for the Latens Titanium DRM system has been added for the Chrome web browser
- Updating the src attribute of the player now unloads the old and loads the new value of the attribute
- Calling the stop method on the player now stops playback and destroys the player
- Support for dynamic streams with a continually growing DVR window
- Support for dynamic streams that transition to a static stream has been added to the player
π Issuesβ
- When a 404 error occurs during the download of a media segment, the player will now try again after a short delay
- Resolved a time and rounding issue that caused the player not to start playback of the specified asset
- The player now recovers from situations where its playback buffer is not overlapping with the timeline of a dynamic stream
- Resolved an issue on IE11 where media keys got attached to the media element while the media element was in an invalid readyState 0,
HAVE_NOTHING
- Clean up old media keys when stopping the player or when setting a new source on the player
β‘ Improvementsβ
- When present, PSSH headers now get read from the manifest in order to kick start the DRM flow
- Support for the presentationTimeOffset MPEG-DASH MPD attribute has been added to the player
- Various small improvements in the flow and stability of the player