[Shaka Playback] Missing originalVideoId on variantTracks

:warning: Before you continue


Before submitting a bug report, please review our troubleshooting documentation at https://developer.amazon.com/docs/kepler-tv/troubleshoot-overview.html.

If you still want to file a bug report, please make sure to fill in all the details below and provide the necessary information.

NOTE: PLEASE ONLY REPORT A SINGLE BUG USING THIS TEMPLATE.
If you’re experiencing multiple issues, please file a separate report for each.


:backhand_index_pointing_right: Bug Description


1. Summary

We came across an issue in our internal Shaka Player wrapper and discovered that originalVideoId is missing from Shaka’s variantTrack on some HLS streams. We identified the fix in a later version of Shaka v4.13.2 and would like to have this patched in Amazon’s Shaka fork.
Shaka fix:
fix(HLS): Populate originalVideoId in HLS with the URI (#8003) · shaka-project/shaka-player@75ece5b · GitHub

App Name:
App Link on Amazon Appstore (found through Developer Console → Actions column in App List → View on Amazon.com):

Bug Severity
Select one that applies

  • Impacts operation of app
  • Blocks current development
  • x Improvement suggestion
  • Issue with documentation (If selected, please share the doc link and describe the issue)
  • Other

2. Steps to Reproduce

  1. Load the KeplerVideoApp with an HLS stream with a demuxed audio track.
  2. Check the variantTrack list (player.getVariantTracks()).
  3. Observe originalVideoId is null for all variants.

3. Observed Behavior

Explain what actually happened, noting any discrepancies or malfunctions.

No originalVideoId on tracks.

4. Expected Behavior

Describe what you expected the SDK to do under normal operation.

n/a

4.a Possible Root Cause & Temporary Workaround

Fill out anything you have tried. If you don’t know, N/A is acceptable

Shaka patch requested. We can apply fix internally as a workaround.

5. Logs or crash report

(Please make sure to provide relevant logs as attachment and share VPKG file with your Amazon contact)

For crash issues, please refer this guide for faster troubleshooting: https://developer.amazon.com/docs/kepler-tv/detect-crash.html.

  • App/Device Logs

  • Crash Logs

  • Crash Report

  • For issues with Kepler Studio Extension, please share log files from below folders:

     ~/.vscode/extensions/amazon.kepler-extension-<version>/ExtensionLogs
     ~/.vscode/extensions/amazon.kepler-ui-extension-<version>/ExtensionLogs
    

6. Environment

Please fill out the fields related to your bug below:

  • SDK Version: 0.20.3719

  • App State: [Foreground]

  • OS Information
    Please ssh into the device via kepler exec vda shelland copy the output from cat /etc/os-releaseinto the answer section below. Note, if you don’t have a simulator running or device attached kepler exec vda shell will respond with vda: no devices/emulators found

    NAME="OS"
    OE_VERSION="4.0.0"
    OS_MAJOR_VERSION="1"
    OS_MINOR_VERSION="1"
    RELEASE_ID="2"
    OS_VERSION="1.1"
    BRANCH_CODE="VegaMainlineTvIntegration"
    BUILD_DESC="OS 1.1 (VegaMainlineTvIntegration/4418)"
    BUILD_FINGERPRINT="4.0.155683.0(3072cab629675a74)/4418N:user-external/release-keys"
    BUILD_VARIANT="user-external"
    BUILD_TAGS="release-keys"
    BUILD_DATE="Wed Sep 03 05:40:19 UTC 2025"
    BUILD_TIMESTAMP="1756878019"
    VERSION_NUMBER="201010441850"
    

7. Example Code Snippet / Screenshots / Screengrabs

Include any relevant code or component setup in React Native that can help reproduce the bug.

Custom code that presented the missing originalVideoId. We were finding duplicate audio tracks in our filter, where we expected one.

const getShakaAudioTracks = () => {
            const variants = player.getVariantTracks();
            const activeVariant = player.getVariantTracks().find(isActive)

            return variants.filter((variant) =>
                variant.originalVideoId === activeVariant.originalVideoId && variant.audioCodec);
        }

        const logAudioTracks = () => {
            const audioTracks = getShakaAudioTracks();
            console.log(audioTracks);
        }

        logAudioTracks();

:backhand_index_pointing_right: Playback Issues


If this is a playback issue, please provide your VPKG and/or content URL, any pre-conditions (like geo-location) [Share privately with your Amazon contact] , and let us know if it’s x86 or arm7.


Missing value in Shaka player.

Please share the following details in addition:_

  • Player SDK: [Shaka, ]
  • Player SDK Version: [4.8.5]
    • Audio Codecs: [AAC]
    • Video Codecs: [h.264]
    • Manifest Types: [m3u8]

Q: Would you like to be contacted to share your latest VPKG compiled with latest SDK:

Y

Q: VPN or Login needed to verify functionality in VPKG?

Y

Q: If applicable, please provide your media/content url
If this is created dynamically, tokenized, etc please provide a way for us to access it

Will provide to contact.

Q: Are there any special headers required to reproduce the issue you are facing?

Yes will provide to contact.

Additionally please provide the following if possible
Provide Screenshots / Screengrabs / Logs. Please include as much information as you can that will help debug.

Suggested fix for Amazon Shaka patch.


:backhand_index_pointing_right: Additional Context


Any Additional Context you would like to provide?
Add any other relevant information, such as recent updates to the SDK, dependencies, or device OS that may affect the bug.

<!-- Answer here if applicable  --> 

Hi @will.harris,

Thanks for reaching out! Our team will take a look at the suggested patch and get back as soon as possible.