In the previous blog posts, we’ve covered how to bring your applications to Samsung Tizen, discussed how to leverage Samsung Tizen’s native playback component, AVPlay, as well as its use case limitations, delved deeper into the technical limitations present across different Samsung Tizen versions and models, and took a look at how to utilise your own video player on Tizen and its benefits over the Native approach.
In this last blogpost of a 5-part series on Samsung Tizen, we will lay out the key considerations when picking a media player for your Build-Your-Own approach. Additionally, we will close by summarizing the key takeaways on deciding the most suitable player strategy for Samsung Tizen.
Build-Your-Own Approach: Key Considerations
The most important parameter to take into account when picking a media player for Tizen is the list of platforms and versions which are supported. Most popular libraries are built with web browsers on laptop and mobile in mind. Often the assumption is made all browsers implement all APIs in exactly the same way. Browser implementations can however differ significantly. Also, the Tizen platform and smart TVs in general often have significantly different hardware and use cases compared to standard playback on laptop.
With smart TV platforms being forgotten and not making it into the testing cycle this opens up a risk. For example, the compatibility list of hls.js does not list Tizen, dash.js doesn’t list any platforms at all and only claims to rely on MSE being implemented and Shaka Player only mentions Tizen 2017 models as actively tested and supported. At THEOplayer, we actively support the Tizen platform and have code to handle differences and quirks compared to a standard browser environments in our THEOplayer Web SDK such as handling for limitations in the number of decoders which can be used in parallel, switching from one video codec into another, enabling and disabling DRM, handling for higher bitrates, alternative codecs and HDR content on big screens just to name a few.
The compatibility problem doesn’t just show in regard to testing. As already mentioned earlier, there are still significant differences in the web environment, MSE and EME implementations across different Tizen versions. Where most players assume an always up-to-date API, this is not the case on smart TV platforms such as Tizen for which different models often support older draft specifications only. For example, Tizen 3.0 (models from 2017) makes use of Chromium M47, a version from December 2015 and boasts a November 2015 based MSE implementation and an EME version from February 2016. This is far from the recent specification and can have a significant impact on compatibility. An overview of differences in MSE and EME support for different Tizen models and versions can be found below.
Model VERSION | WEB ENGINE | MSE VERSION | EME VERSION | NOTABLE QuiRKS |
2015 Models Tizen 2.3 | Webkit r152340 | Dec 2013 (Draft) | Aug 2012 (Draft 0.1b) | Hard to implement DRM (“Promise-bug” in EME) DRM toggling limitations (SSAI) Codec switching limitations (SSA) Only seeking to keyframes |
2016 Models Tizen 2.4 | Webkit r152340 | Dec 2013 (Draft) | Aug 2012 (Draft 0.1b) | Same as 2015 models |
2017 Models Tizen 3.0 | ChromiumM47 (Dec 2015) | Nov 2015 (Draft) | Feb 2016 (Draft) | DRM toggling limitations (SSAI) Codec switching limitations (SSAI) Only seeking to keyframes allowed |
2018 Models Tizen 4.0 | ChromiumM56 (Jan 2017) | July 2016 (Draft) | July 2016 (Draft) | Codec switching limitations (SSAI) |
2019 Models Tizen 5.0 | ChromiumM63 (Sept 2017) | Nov 2016 (Rec.) | Sep 2017 (Rec.) | Mostly OK |
2020 Models Tizen 5.5 | Chromium M69 (sept 2018) | Nov 2016 (Rec.) | Sep 2017 (Rec.) | Mostly OK |
Deciding on a Player Strategy for Tizen: Key Takeaways
- Bringing video efficiently to all different versions of Tizen is a challenge, but your viewers are across a wide range of different Tizen versions, therefore premium OTT video service can mostly not simply ignore these older platforms.
- Native playback is available using AVPlay, but it comes at a cost. Where it is often tempting to go with Tizen’s native AVPlay streaming support as it is easy to get started, it is in practice often too limiting for premium OTT video providers and can incur issues due to different support across versions. This becomes especially apparent when your use case includes DRM or SSAI.
- You can use a third party, or your own video player on Tizen. MSE and EME make this possible. As there are still a broad variation of different versions of the APIs available, it is crucial that the video player you use is optimized as well for the older versions used in Tizen. Due to the quirks in the Tizen platform and its decoders, it is also crucial to ensure your player optimizes for these in order to avoid hiccups during playback. When picking which player to use, make sure to check compatibility: try to avoid making the choice for a player which does not really support the Tizen versions you want to support unless you are willing to pick up the testing, bug fixing (where even possible) and maintenance internally.
- You could use a Hybrid Approach where you leverage a “Build Your Own Video Player” approach, and fall back to AVPlay for other use cases. THEOplayer allows you to configure on which version you want to use the MSE/EME approach, and on which versions you want to leverage AVPlay through a single API for configuration and interaction with other systems such as QoE and QoS monitoring. In practice we see it is most interesting to leverage MSE/EME, especially for later versions of Tizen. For really early versions of Tizen, using a Hybrid Approach allows you to enable AVPlay on those specific old versions where it still makes sense in your target audience. The Hybrid Approach can bring the best of both worlds with extensive capabilities using a BYO video player, while falling back on AVPlay for difficult to support versions.
Choosing your video player approach is subject to careful decision making to ensure all key features are present and compatibility across different versions of Tizen is guaranteed for your use cases. Making the wrong choice in this strategy can cause a significant setback if at a later point in time the player has to be swapped out for a different one.
Developing Apps on Tizen
When it’s your goal to bring streaming to the big screen, Samsung’s Tizen is a great place to start. It’s popularity and fast evolution over the past years make it a solid choice for an investment in your streaming apps’ platform expansion. Tizen apps can be installed from the Samsung Apps TV-store. Publishing an app in this app store isn’t all too difficult. Same as with most app stores for other platforms, applications are to be submitted for review to Samsung and will, once approved, be published in the store. The disadvantage to this process is that you need to go through it again for any update you want to perform to your application.
When talking video apps, one of the most crucial choices to make is the choice for a video player as this will drive a big part of the viewer experience, as well as the amount of features your own team will need to build and maintain themselves. In general, there are two approaches to choose from:
- Leveraging the streaming support of the native video player AVPlay.
- Use a “Build Your Own” video player leveraging available advanced APIs
Approach 1: AVPlay, Tizen’s native video player
As with most smart TV system, Tizen comes with its own native video player, providing support for the most common streaming protocols. Tizen’s native video player is called AVPlay. Using AVPlay isn’t all too difficult and simply requires loading the AVPlay API library. This is as simple as loading the following script:
<script type= "text/javascript" src= "$WEBAPIS/webapis/webapis.js"></script>
With this library loaded, you can enable playback easily with AVPlay API by:
1.defining the playback window and indicating AVPlay is to be used,
var objElem = document.createElement('object');
objElem.type = 'application/avplayer';
document.body.appendChild(objElem);
2. configuring a media source,
webapis.avplay.open('https://content.domain.com/channel1.m3u8');
3. loading the media source to prepare for playback,
webapis.avplay.prepare();
4. and trigger playback.
webapis.avplay.play();
As you can see, getting playback up and running is very simple. Beyond this, AVPlay brings some additional capabilities such as:
- support for streaming protocols such as Smooth Streaming, MPEG-DASH and HTTP Live Streaming (HLS),
- allowing to perform basic trick play by seeking or changing the playback speed,
- the ability to receive notifications in case of buffering or errors,
- support for alternative audio channels,
- basic DRM playback,
- and support for subtitle formats such as SMPTE-TT, SAMI and DFXP.
AVPlay has been around since Tizen’s early days in 2015 (with the launch of Tizen 2.3) and has evolved a lot, but as a result, AVPlay differs significantly in capabilities across different platform versions of Tizen. The main purpose of AVPlay however hasn’t changed: empower media apps to use basic playback capabilities. When building a full media app however, in practice the capabilities of AVPlay will soon reach its limitations.
There are two main challenges which OTT video publishers often start to encounter when working with AVPlay:
- Capabilities are limited to basic use cases and offer little flexibility.
- Different version of AVPlay are tied down to support of specific versions of streaming protocols and (greatly) differ in capabilities.
Where the limited basic use cases support is often initially not seen as a huge issue, the problems start growing once new business cases get added. Some notable use cases which are difficult or even impossible to support properly are:
- Monetization through client-side (CSAI) or server-side ad insertion (SSAI).
- Reducing playback latency for optimal user experience in interactive or live broadcasts.
- Advanced bitrate selection (or even manual bitrate selection)
- Identifying streaming issues as error responses are extremely brief.
- Monitoring QoE due to lack of detailed events (no possibility to inspect the size of the buffer, details of different tracks and qualities, …)
- Support for alternative subtitle formats and subtitle styling.
- Improved scrubbing with thumbnails or I-FRAME streams.
On top of these limitations, the support for streaming protocols differs significantly between different versions of AVPlay. The root cause of this seems to be the lack of software updates for Samsung TVs: Samsung tends to have a policy of locking models released in specific years to the Tizen version released that year. Samsung TVs from 2015 will be locked to Tizen 2.3, the 2016 version to 2.4, 2017 to 3.0 and so forth. At the time of writing, the 2020 models are running Tizen 5.5.
As a result, if you are an OTT video publisher and you want to support different models of Samsung Smart TVs, some even only a couple of years old, AVPlay will cause some headaches for your product and engineering teams. For example, a stream tested on a 2017 model Tizen 3.0 device with alternative audio tracks will not work properly on 2016 model with Tizen 2.4. These and similar limitations force you to either:
- setup a specific stream for every Tizen version and incrementally add capabilities, or
- go for a lowest common denominator approach with limited capabilities across all devices.
A decision which can have a huge impact on either operational cost or viewer experience.
To make things even worse, while there is a relatively clear overview available on HLS protocol version support, this is not the case for MPEG-DASH support and the different IOPs which were published. A list of the most important differences in AVPlay’s support between recent Tizen versions can be found below. Note that additional limitations on top of the ones listed below are in effect as well.
Model (VERSION) | NOTABLE LIMITATIONS (Limitations for newer versions also apply to older models) |
2015 Models Tizen 2.3 | DRM: – PlayReady 2.5 with SL2000 (software – CENC/CTR only) – Widevine Classic only (no Modular) HLS: – No support for session keys – No byte range request support – All limitations of more recent versions MPEG-DASH: – All limitations of more recent versions |
2016 Models Tizen 2.4 | DRM: – PlayReady 2.5 with SL2000 (software – CENC/CTR only) – Widevine Modular 2.08HLS (Limited version 7 support): – No support for discontinuity sequence (improper handling of SSAI) – No support for alternative audio tracks – No support for in band subtitles (WebVTT) – No support for in band captions (CEA-608) – All limitations of more recent versions MPEG-DASH: – Not following DASH interop on HEVC usage – No support for alternative audio tracks – No support for in-band subtitles – No support for trick modes – No support for in-band captions (CEA-608) – All limitations of more recent versions |
2017 Models Tizen 3.0 | DRM: – PlayReady 2.5 with SL2000 (software – CENC/CTR only) – Widevine Modular 2.08HLS (Limited version 7 support): – All limitations of more recent versions MPEG-DASH: – No support for key rotation – All limitations of more recent versions |
2018 Models Tizen 4.0 | DRM: – PlayReady 3.3 with SL3000 (hardware – CENC/CTR only) – Widevine Modular 3.2HLS (Limited version 7 support): – All limitations of more recent versions MPEG-DASH: – All limitations of more recent versions |
2019 Models Tizen 5.0 | DRM: – PlayReady 3.3 with SL3000 (hardware – CENC/CTR only) – Widevine Modular 14.1HLS (limited version 7 support): – All limitations of more recent versions MPEG-DASH: – All limitations of more recent versions |
2020 Models Tizen 5.5 | DRM: – PlayReady 4.2 with SL3000 (hardware – including CBCS support) – Widevine Modular 15.2HLS (limited version 7 support): – No low latency support – No support for CMAF or HEVC – No metadata support (daterange, programdatetime, …) – No support for initializations through MAP – No support for start offsets – No support for IMSC1 subtitles – No support for alternative video tracks – No support for parts, delta playlists, gapmarking, preload hints, … MPEG-DASH: – No low latency support – No SSAO: multi-period support is not stable – Mixed results for enabling/disabling DRM and rotating keys – No metadata support (eventstream, emsg, …) – No support for alternative video tracks |
As a result of these limitations, the AVPlay APIs provide a very simple approach for OTT video publishers to get up and running fast with basic OTT video apps, but once video requirements grow, this approach quickly shows its limitations. Furthermore, if it is your ambition to target Tizen versions as of 2015 or 2016, it is often needed to have specific streams set up in order to be compatible with Tizen. This will result in duplicating pipelines and multiplying stream generation and operational distribution costs.
Approach 2: Build Your Own Video Player with MSE/EME
Due to the limitations of native players such as AVPlay, popularity of the “build your own” approach to video players is growing rapidly with OTT video publishers. This approach allows to avoid the biggest issues with AVPlay due to the differences between Samsung TV models and Tizen versions.
When taking the build your own player approach, it is important that hardware capabilities for DRM decryption and media decoding can be leveraged. This has an impact on viewer experience as it allows to unlock capabilities such as HDR, but also is often important for battery efficiency. On Samsung’s Tizen platform media hardware access is possible thanks to the the presence of the Media Source Extension (MSE) API and the Encrypted Media Extension (EME) API. Tizen has support for different versions of these APIs since Tizen 2.3 (2015 models). While versions differ, support is broad enough to implement al the most important use cases with only a limited set of limitations (but more on this later).

The MSE API provides access to the decoders. Samsung has gradually extended support on this over the last years, increasing frame rates, resolutions and bitrates as devices became more powerful. The API allows an application to allocate buffers on the audio and video decoders of the device and feed it with media data. This allows implementation of common streaming protocols such as HLS and MPEG-DASH (as well as others). A video player can download the required playlist or manifest, identify the relevant segments, download them and append them one after the other as playback happens.
Leveraging MSE for basic playback can be quite simple. In a rudimentary form, you should use the following steps:
1. Get a handle on an HTML5 Video Element (or<video>-tag).
var video = document.getElementById('video');
2. Create a new MediaSource through MSE-API.
var mediaSource = new MediaSource();
3. Wait for the MediaSource to “open” to create a SourceBuffer (the direct interface to the decoders buffer where you can store raw data) and load it in the video element.
mediaSource.addEventListener('sourceopen', function (e) {// ...var videoSourceBuffer = mediaSource.addSourceBuffer(‘videoMimeType’);// ...});video.src = window.URL.createObjectURL(mediaSource);
4. Download and parse the right playlist for your stream (keeping in mind bitrate selection) and identify the segments you want to load.
5. Download the appropriate segments and append them to your SourceBuffer.
while (nextSegment) {var segment = await download(nextSegment.uri);sourceBuffer.appendBuffer(segment);nextSegment = findNextSegment(playlist);}
In parallel the EME API enables applications to play back DRM protected content and provides access to the Content Decryption Modules (CDMs) which are available on the platform. On Tizen this allows you to access the underlying key systems for PlayReady and Widevine. When media is protected with one of these DRMs, the EME API will expose this and allow the application to configure the CDM with a response to its license challenge.
Leveraging the Encrypted Media Extensions API to enable playback of DRM protected content is relatively straightforward:
1. Request access to the Key System
navigator.requestMediaKeySystemAccess('com.widevine.alpha', options);
2. Create a MediaKeys object on which the media session will live later on.
var mediaKeys = keySystemAccess.createMediaKeys();
3. Listen for an encrypted-event indicating a new DRM session to be started.
video. addEventListener('encrypted', function (event) {var keySession = mediaKeys.createSession();keySession.generateRequest(event.initDataType, event.initData);// ...});
4. Handle Messages from the session when it faces encrypted content with a key it doesn’t know.
keySession.addEventListener("message", function (event) {var request = event.message;var response = await postRequest(licenseServerURI, request);keySession.update(response);});
5. With the License response the CDM can then start decryption of the content so it can be played.
Thanks to these MSE/EME APIs, developing video playback with complex handling of media became possible. Where THEOplayer was the first media player to do complex handling of streaming media in browser environments (even without the use of MSE/EME), various other companies started providing libraries since the APIs became available. As MSE and EME are only APIs, there is however more than meets the eye: development based on these APIs still requires a proper understanding of media and the web as the entire implementation of the streaming protocols has to happen in dedicated code.
The very simple examples earlier in this article can already provide basic playback of the downloaded segments. A fully featured media player however does much, much more such as:
- Identifying user behavior such as playing / pausing.
- Reacting to the user seeking to a new timestamp.
- Modifying the media player’s volume.
- Following the appropriate autoplay policies to start playback upon the application being opened.
- Providing support for changing the playback speed.
- Monitoring the available network environment and dynamically switching to the appropriate bitrate.
- Ensure continued playback in case media data is unavailable.
- Avoiding and handling buffer underrun (and the resulting stalling behavior for viewers).
- Exposing alternative audio and video tracks to the viewer and allow them to switch.
- Retrieving and overlaying subtitles and closed captions timed exactly right to ensure a good viewer experience.
- Handling errors in the DRM license request flow.
- And much, much more…
Even with all of the basics implemented, there is a large difference between different media player options. While there are open source libraries such as hls.js, dash.js and Shaka Player that provide basic playback support for the HLS and/or MPEG-DASH protocol, more advanced players such as THEOplayer provide even more support such as integrations with various DRM systems, monetization options with CSAI and SSAI, picture in picture support, support for offline downloading, etc.
The most important parameter to take into account when picking a media player for Tizen is the list of platforms and versions which are supported. Most popular libraries are built with web browsers on laptop and mobile in mind. Often the assumption is made all browsers implement all APIs in exactly the same way. Browser implementations can however differ significantly. Also, the Tizen platform and smart TVs in general often have significantly different hardware and use cases compared to standard playback on laptop. With smart TV platforms being forgotten and not making it into the testing cycle this opens up a risk. For example, the compatibility list of hls.js does not list Tizen, dash.js doesn’t list any platforms at all and only claims to rely on MSE being implemented and Shaka Player only mentions Tizen 2017 models as actively tested and supported. At THEOplayer, we actively support the Tizen platform and have code to handle differences and quirks compared to a standard browser environments in our THEOplayer Web SDK such as handling for limitations in the number of decoders which can be used in parallel, switching from one video codec into another, enabling and disabling DRM, handling for higher bitrates, alternative codecs and HDR content on big screens just to name a few.
The compatibility problem doesn’t just show in regard to testing. As already mentioned earlier, there are still significant differences in the web environment, MSE and EME implementations across different Tizen versions. Where most players assume an always up-to-date API, this is not the case on smart TV platforms such as Tizen for which different models often support older draft specifications only. For example, Tizen 3.0 (models from 2017) makes use of Chromium M47, a version from December 2015 and boasts a November 2015 based MSE implementation and an EME version from February 2016. This is far from the recent specification and can have a significant impact on compatibility. An overview of differences in MSE and EME support for different Tizen models and versions can be found below.
Model VERSION | WEB ENGINE | MSE VERSION | EME VERSION | NOTABLE QuiRKS |
2015 Models Tizen 2.3 | Webkit r152340 | Dec 2013 (Draft) | Aug 2012 (Draft 0.1b) | Hard to implement DRM (“Promise-bug” in EME) DRM toggling limitations (SSAI) Codec switching limitations (SSA) Only seeking to keyframes |
2016 Models Tizen 2.4 | Webkit r152340 | Dec 2013 (Draft) | Aug 2012 (Draft 0.1b) | Same as 2015 models |
2017 Models Tizen 3.0 | ChromiumM47 (Dec 2015) | Nov 2015 (Draft) | Feb 2016 (Draft) | DRM toggling limitations (SSAI) Codec switching limitations (SSAI) Only seeking to keyframes allowed |
2018 Models Tizen 4.0 | ChromiumM56 (Jan 2017) | July 2016 (Draft) | July 2016 (Draft) | Codec switching limitations (SSAI) |
2019 Models Tizen 5.0 | ChromiumM63 (Sept 2017) | Nov 2016 (Rec.) | Sep 2017 (Rec.) | Mostly OK |
2020 Models Tizen 5.5 | Chromium M69 (sept 2018) | Nov 2016 (Rec.) | Sep 2017 (Rec.) | Mostly OK |
Key Takeaways on Deciding on a Player Strategy for Tizen
- Bringing video efficiently to all different versions of Tizen is a challenge, but your viewers are across a wide range of different Tizen versions, therefore premium OTT video service can mostly not simply ignore these older platforms.
- Native playback is available using AVPlay, but it comes at a cost. Where it is often tempting to go with Tizen’s native AVPlay streaming support as it is easy to get started, it is in practice often too limiting for premium OTT video providers and can incur issues due to different support across versions. This becomes especially apparent you’re your use case includes DRM or SSAI.
- You can use a third party, or your own video player on Tizen. MSE and EME make this possible. As there are still a broad variation of different versions of the APIs available, it is crucial that the video player you use is optimized as well for the older versions used in Tizen. Due to the quirks in the Tizen platform and its decoders, it is also crucial to ensure your player optimizes for these in order to avoid hiccups during playback. When picking which player to use, make sure to check compatibility: try to avoid making the choice for a player which does not really support the Tizen versions you want to support unless if you are willing to pick up the testing, bug fixing (where even possible) and maintenance internally.
- You could use a Hybrid Approach where you leverage a “Build Your Own Video Player” approach, and fall back to AVPlay for other use cases. THEOplayer allows to configure on which version you want to use the MSE/EME approach, and on which versions you want to leverage AVPlay through a single API for configuration and interaction with other systems such as QoE and QoS monitoring. In practice we see it is most interesting to leverage MSE/EME, especially for later versions of Tizen. For really early versions of Tizen, using a Hybrid Approach allows you to enable AVPlay on those specific old versions where it still makes sense in your target audience. The Hybrid Approach can bring a best of both worlds with extensive capabilities using a BYO video player, while falling back on AVPlay for difficult to support versions.
Choosing your video player approach is subject to careful decision making to ensure all key features are present and compatibility across different version of Tizen is guaranteed for your use cases. Making the wrong choice in this strategy can cause a significant setback if at a later point in time the player has to be swapped out for a different one.