Skip to main content
Skip table of contents

HEVC integration

The HEVC (H265) is supported from Android 5.0 onwards for use with Android TV devices with HEVC hardware decoding. If HEVC is enabled, the player will prioritise HEVC if the stream supports it; otherwise it will use AVC.

Example code

To request HEVC support, the following key/value should be added to the "Specific" object in profiles.json for the target Android TV device:

JS
"Codecs":["VIDEO_HEVC"]"

For example, the following shows how the profiles.json file could be used to enable HEVC support on an Amazon Fire TV.

JAVA
{
  "DeviceProfiles": {
    "Specific": [
      {
        "Manufacturer": "Amazon",
        "Model": "AFTS",
        ...
        "Codecs":["VIDEO_HEVC"]
      }
    ]
  }
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.