Thank you for the detailed bug report. The error Invariant Violation: View config getter callback for component KeplerVideoSurfaceViewStable must be a function (received undefined) indicates that the native component is not being registered/linked correctly with the new package.
Likely root cause: Package version mismatch with SDK version.
Your environment shows SDK Version 0.22.6759, but the correct @amazon-devices/react-native-w3cmedia version for SDK 0.22 is ~2.1.80 (see
the Media Player Setup documentation ). The API reference for SDK 0.22 also references version ~2.2.11.
Please verify and try the following:
Check your package version - confirm what version of @amazon-devices/react-native-w3cmedia is in your package.json and package-lock.json:
Verify manifest permissions - ensure your manifest.toml includes the
required media services under [wants]:
[wants]
[[wants.service]]
id = "com.amazon.mediametrics.service"
[[wants.service]]
id = "com.amazon.mediabuffer.service"
[[wants.service]]
id = "com.amazon.mediatransform.service"
[[wants.service]]
id = "com.amazon.audio.stream"
[[wants.service]]
id = "com.amazon.audio.control"
[[wants.service]]
id = "com.amazon.media.server"
[[wants.service]]
id = "com.amazon.media.playersession.service"
[[wants.privilege]]
id = "com.amazon.devconf.privilege.accessibility"
Rebuild completely:
`vega build --clean `
Information needed from you to investigate further if the above doesnβt resolve it:
Exact version of @amazon-devices/react-native-w3cmedia you installed
Hi @Ivy_Mahajan , Thanks for the reply, still facing same issue, Iβm adding dependencies from pacakage file, wants from manifest.toml file, babel config and crash log.
package.json:
"dependencies": {
"@amazon-devices/kepler-adid-retriever": "^1.0.14",
"@amazon-devices/kepler-epg-provider": "^1.9.0",
"@amazon-devices/kepler-epg-sync-scheduler": "^1.2.0",
"@amazon-devices/kepler-performance-api": "^0.1.2",
"@amazon-devices/react-native-device-info": "^2.0.1758683737",
"@amazon-devices/react-native-w3cmedia": "~2.1.80",
"@amazon-devices/webview": "^3.3.1769932800",
"@amzn/headless-task-manager": "^1.0.0",
"@amzn/kepler-channel": "^1.1.0",
"@amzn/kepler-file-system": "~0.0.1",
"@amzn/kepler-graphics": "^2.0.1",
"@amzn/kepler-media-account-login": "^1.1.0",
"@amzn/kepler-media-content-launcher": "^2.0.0",
"@amzn/kepler-media-controls": "^1.0.0",
"@amzn/kepler-media-types": "^1.0.0",
"@amzn/kepler-ui-components": "^2.0.0",
"@amzn/keplerblocks-types": "^1.1.0",
"@amzn/keplermediadescriptor": "^1.1.1",
"@amzn/keplerscript-appstore-iap-lib": "~2.12.10",
"@amzn/keplerscript-kepleri18n-lib": "^1.0.0",
"@amzn/keplerscript-netmgr-lib": "~2.0.2",
"@amzn/lottie-react-native": "~2.0.0",
"@amzn/package-manager-lib": "^1.0.0",
"@amzn/react-linear-gradient": "~2.0.0",
"@amzn/react-native-kepler": "~2.0.0",
"@amzn/react-native-qrcode-svg": "~2.0.0",
"@amzn/react-native-safe-area-context": "^2.0.1751782280",
"@amzn/react-native-svg": "~2.0.0",
"@amzn/react-native-vector-icons": "~2.0.0",
"@amzn/shopify__flash-list": "~2.0.0",
"@react-native-async-storage/async-storage": "^1.24.0",
"@react-native-firebase/analytics": "^24.0.0",
"@react-native-firebase/app": "^24.0.0",
"abortcontroller-polyfill": "~1.7.5",
"base-64": "1.0.0",
"crypto-js": "^4.2.0",
"fast-text-encoding": "^1.0.6",
"fastestsmallesttextencoderdecoder": "1.0.22",
"lodash": "~4.17.21",
"npaw-plugin-react-native": "^7.3.18",
"react": "18.2.0",
"react-native": "0.72.0",
"react-native-render-html": "^6.3.4",
"web-streams-polyfill": "^3.2.1",
"webvtt-parser": "^1.0.0",
"xmldom": "~0.6.0",
"yup": "~1.4.0",
"zustand": "^4.1.4"
},
manifest.toml:
[wants]
[[wants.service]]
id = "com.amazon.inputmethod.service"
[[wants.service]]
id = "com.amazon.kepler.pcon.service.main"
[[wants.service]]
id = "com.amazon.drm.key" # Required for DRM video playback
[[wants.service]]
id = "com.amazon.drm.crypto" # Required for DRM video playback
[[wants.service]]
id = "com.amazon.iap.tester.service" # Required for IAP functionality
[[wants.service]]
id = "com.amazon.iap.core.service" # Required for IAP functionality
[[wants.module]]
id = "/com.amazon.iap.core@IIAPCoreUI"
[[wants.module]]
id = "/com.amazonappstore.iap.tester@IIAPTesterUI"
[[wants.service]]
id = "com.amazon.tv.developer.dataservice"
[[wants.privilege]]
id = "com.amazon.tv.subscription-entitlement.privilege.provide-data"
[[wants.privilege]]
id = "com.amazon.tv.content-personalization.privilege.provide-data"
[[wants.service]]
id = "com.amazon.media.server"
[[wants.service]]
id = "com.amazon.mediametrics.service"
[[wants.service]]
id = "com.amazon.inputd.service"
[[wants.service]]
id = "com.amazon.media.playersession.service"
[[wants.service]]
id = "com.amazon.mediabuffer.service"
[[wants.service]]
id = "com.amazon.mediatransform.service"
[[wants.privilege]]
id = "com.amazon.devconf.privilege.accessibility"
[[wants.service]]
id = "com.amazon.gipc.uuid.*"
[[wants.service]]
id = "com.amazon.audio.stream"
[[wants.service]]
id = "com.amazon.audio.control"
[[wants.service]]
id = "com.amazon.audio.system"
[[wants.service]]
id = "com.amazon.network.service"
babel:
module.exports = {
presets: [
[
'module:metro-react-native-babel-preset',
{
useTransformReactJSXExperimental: true,
},
],
],
plugins: [
[
'module:react-native-dotenv',
{
moduleName: '@env',
path: getEnvPath(),
allowlist: null,
safe: false,
allowUndefined: true,
verbose: false,
},
],
[
'@babel/plugin-transform-react-jsx',
{
runtime: 'automatic',
},
],
'@amzn/react-native-reanimated/plugin',
],
};
crash log:
This method is deprecated (as well as all React Native Firebase namespaced API) and will be removed in the next major release as part of move to match Firebase Web modular SDK API. Please see migration guide for more details: https://rnfirebase.io/migrating-to-v22 Please use `setReactNativeAsyncStorage()` instead.
(NOBRIDGE) WARN This method is deprecated (as well as all React Native Firebase namespaced API) and will be removed in the next major release as part of move to match Firebase Web modular SDK API. Please see migration guide for more details: https://rnfirebase.io/migrating-to-v22 Please use `getApps()` instead.
(NOBRIDGE) WARN This method is deprecated (as well as all React Native Firebase namespaced API) and will be removed in the next major release as part of move to match Firebase Web modular SDK API. Please see migration guide for more details: https://rnfirebase.io/migrating-to-v22 Please use `initializeApp()` instead.
(NOBRIDGE) LOG Running "com.zee5.amazon.main" with {"fabric":true,"initialProps":{"concurrentRoot":true},"rootTag":1}
(NOBRIDGE) DEBUG [AmazonIAPSDK] useIapPurchaseUpdates Hook called
(NOBRIDGE) ERROR [ReactNative Architecture][JS] 'getViewManagerConfig' is not available in the new React Native architecture.Use hasViewManagerConfig instead. viewManagerName: getConstants
at App (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:129720:41)
at AppWrapper (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:129266:108)
at RCTView
at View (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:60140:26)
at RCTView
at View (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:60140:26)
at AppContainer (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:59996:36)
at com.zee5.amazon.main(RootComponent) (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:109912:28)
(NOBRIDGE) ERROR [ReactNative Architecture][JS] 'getConstants' is not available in the new React Native architecture.
at App (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:129720:41)
at AppWrapper (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:129266:108)
at RCTView
at View (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:60140:26)
at RCTView
at View (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:60140:26)
at AppContainer (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:59996:36)
at com.zee5.amazon.main(RootComponent) (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:109912:28)
(NOBRIDGE) DEBUG override RCTView to set native flag to false
(NOBRIDGE) DEBUG override RCTImageView to set native flag to false
(NOBRIDGE) LOG Registering native component: RNSVGRect
(NOBRIDGE) LOG Registering native component: RNSVGCircle
(NOBRIDGE) LOG Registering native component: RNSVGEllipse
(NOBRIDGE) LOG Registering native component: RNSVGPath
(NOBRIDGE) LOG Registering native component: RNSVGLine
(NOBRIDGE) LOG Registering native component: RNSVGGroup
(NOBRIDGE) LOG Registering native component: RNSVGSvgViewAndroid
(NOBRIDGE) LOG Registering native component: RNSVGSvgView
(NOBRIDGE) LOG Registering native component: RNSVGTSpan
(NOBRIDGE) LOG Registering native component: RNSVGText
(NOBRIDGE) LOG Registering native component: RNSVGTextPath
(NOBRIDGE) LOG Registering native component: RNSVGUse
(NOBRIDGE) LOG Registering native component: RNSVGImage
(NOBRIDGE) LOG Registering native component: RNSVGSymbol
(NOBRIDGE) LOG Registering native component: RNSVGDefs
(NOBRIDGE) LOG Registering native component: RNSVGLinearGradient
(NOBRIDGE) LOG Registering native component: RNSVGRadialGradient
(NOBRIDGE) LOG Registering native component: RNSVGClipPath
(NOBRIDGE) LOG Registering native component: RNSVGPattern
(NOBRIDGE) LOG Registering native component: RNSVGMask
(NOBRIDGE) LOG Registering native component: RNSVGMarker
(NOBRIDGE) LOG Registering native component: RNSVGForeignObject
(NOBRIDGE) INFO MediaPlayer:+constructor: audioType = undefined, audioUsage = undefined, w3cmediaVersion = 2.1.99
(NOBRIDGE) INFO Log level set to: INFO
(NOBRIDGE) INFO MediaControlStateUtil: ++
(NOBRIDGE) INFO MediaControlStateUtil: --
(NOBRIDGE) INFO MediaPlayer:-constructor
(NOBRIDGE) INFO [AmazonIAPSDK] Calling getPurchaseUpdates API with reset flag = false
(NOBRIDGE) DEBUG [AmazonIAPSDK] Created a new Instance for Purchasing Manager
(NOBRIDGE) INFO [AmazonIAPSDK] Received the request for getPurchaseUpdates API
(NOBRIDGE) INFO [AmazonIAPSDK] requestId : e0c6472e-e220-4c45-8a06-961fbedd2cdd
(NOBRIDGE) DEBUG [AmazonIAPSDK] GetPurchaseUpdates Request Handler Constructor invoked
(NOBRIDGE) DEBUG [AmazonIAPSDK] API Base Request Handler Constructor invoked
(NOBRIDGE) DEBUG [AmazonIAPSDK] GetPurchaseUpdates Model V2 Constructor invoked
(NOBRIDGE) DEBUG [AmazonIAPSDK] GetPurchaseUpdates Base Model Constructor invoked
(NOBRIDGE) DEBUG [AmazonIAPSDK] API Base Model Constructor invoked
(NOBRIDGE) INFO [AmazonIAPSDK] getPurchaseUpdates start time : 1777531089928
(NOBRIDGE) DEBUG [AmazonIAPSDK] Executing the GetPurchaseUpdates operation
(NOBRIDGE) DEBUG [AmazonIAPSDK] Adding request payload for version : V2
(NOBRIDGE) DEBUG [AmazonIAPSDK] Creating the request payload for Model Version V2
(NOBRIDGE) WARN Legacy AsyncStorage is on a deprecation path. Please migrate to using @amzn/react-native-async-storage__async-storage
at App (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:129720:41)
at AppWrapper (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:129266:108)
at RCTView
at View (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:60140:26)
at RCTView
at View (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:60140:26)
at AppContainer (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:59996:36)
at com.zee5.amazon.main(RootComponent) (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:109912:28)
(NOBRIDGE) INFO ChannelServerComponent2::setHandlerForComponent invoked
(NOBRIDGE) LOG [INFO] β Kepler EpgChannelHandlerService Channel handler registered successfully
(NOBRIDGE) LOG Content_Launcher_Sample: AccountLoginWrapper onStart()
(NOBRIDGE) LOG Content_Launcher_Sample::setupAccountLoginServer invoked.
(NOBRIDGE) LOG Content_Launcher_Sample::Creating accountLoginHandler
(NOBRIDGE) LOG AccountLoginServer::setHandlerForComponent invoked.
(NOBRIDGE) LOG Content_Launcher_Sample: login status before fn:: false
(NOBRIDGE) LOG Content_Launcher_Sample: Sending login status in status change >> false
(NOBRIDGE) LOG Content_Launcher_Sample::updateStatus invoked.
(NOBRIDGE) LOG Content_Launcher_Sample::updateStatus: - SIGNED_OUT
(NOBRIDGE) LOG AccountLoginServer::updateStatus invoked. status: 1
(NOBRIDGE) LOG Content_Launcher_Sample: Sending login status after status change false
(NOBRIDGE) LOG curl -X GET 'https://country-qa.zee5.dev/country'
(NOBRIDGE) LOG curl -X POST 'https://useraction-qa.zee5.dev/user/' --data '{"user":{"apikey":"AIzaSyBLwxQDIY2ZyVX3NOdLbFWb2P0Se0uavdo","aid":"AFTCA002_1777531090320"}}'
(NOBRIDGE) DEBUG [AmazonIAPSDK] useIapPurchaseUpdates: App state change ignored: active
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 0):
Error: Missing or invalid FirebaseOptions property 'databaseURL'.
Error: Missing or invalid FirebaseOptions property 'databaseURL'.
at initializeApp (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:542485:38)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:534059:41)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28759:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28773:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28778:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28770:25)
at apply (native)
at initializeFirebase (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:534063:24)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:1473:85)
at loadModuleImplementation (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:328:14)
at guardedLoadModule (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:219:47)
at metroRequire (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:123:92)
at global (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:551680:4)
(NOBRIDGE) WARN Legacy AsyncStorage is on a deprecation path. Please migrate to using @amzn/react-native-async-storage__async-storage
(NOBRIDGE) LOG Content_Launcher_Sample: Login status fetched on App start: false
(NOBRIDGE) LOG Content_Launcher_Sample::updateStatus invoked.
(NOBRIDGE) LOG Content_Launcher_Sample::updateStatus: - SIGNED_OUT
(NOBRIDGE) LOG AccountLoginServer::updateStatus invoked. status: 1
(NOBRIDGE) INFO MediaPlayer: initialize: audioType = 3, audioUsage = 1
(NOBRIDGE) ERROR Warning: forwardRef render functions accept exactly two parameters: props and ref. Did you forget to use the ref parameter?
in SplashScreenWithVideo (created by SplashScreenZee5LogoWithLoader)
in RCTView (created by View)
in View (created by SplashScreenZee5LogoWithLoader)
in RCTView (created by View)
in View (created by emotion(View))
in emotion(View) (created by SplashScreenZee5LogoWithLoader)
in SplashScreenZee5LogoWithLoader (created by App)
in RCTView (created by View)
in View (created by GestureHandlerRootView)
in GestureHandlerRootView (created by App)
in TranslationProvider (created by App)
in App (created by AppWrapper)
in AppWrapper
in RCTView (created by View)
in View (created by AppContainer)
in RCTView (created by View)
in View (created by AppContainer)
in AppContainer
in com.zee5.amazon.main(RootComponent)
(NOBRIDGE) INFO render KeplerVideoSurfaceView
(NOBRIDGE) INFO render KeplerVideoSurfaceView
(NOBRIDGE) ERROR Invariant Violation: View config getter callback for component `KeplerVideoSurfaceViewStable` must be a function (received `undefined`).
This error is located at:
in KeplerVideoSurfaceViewStable (created by KeplerVideoSurfaceView)
in KeplerVideoSurfaceView (created by KeplerVideoView)
in KeplerVideoView (created by SplashScreenWithVideo)
in RCTView (created by View)
in View (created by SplashScreenWithVideo)
in SplashScreenWithVideo (created by SplashScreenZee5LogoWithLoader)
in RCTView (created by View)
in View (created by SplashScreenZee5LogoWithLoader)
in RCTView (created by View)
in View (created by emotion(View))
in emotion(View) (created by SplashScreenZee5LogoWithLoader)
in SplashScreenZee5LogoWithLoader (created by App)
in RCTView (created by View)
in View (created by GestureHandlerRootView)
in GestureHandlerRootView (created by App)
in TranslationProvider (created by App)
in App (created by AppWrapper)
in AppWrapper
in RCTView (created by View)
in View (created by AppContainer)
in RCTView (created by View)
in View (created by AppContainer)
in AppContainer
in com.zee5.amazon.main(RootComponent), js engine: hermes
(NOBRIDGE) ERROR Invariant Violation: View config getter callback for component `KeplerVideoSurfaceViewStable` must be a function (received `undefined`).
Thank you for sharing the additional details.
To help us investigate further, could you please provide:
Full crash stack trace (not just the error line)
Your manifest.toml [wants] section - confirm it includes these required
media services:
[[wants.service]]
id = "com.amazon.mediametrics.service"
[[wants.service]]
id = "com.amazon.mediabuffer.service"
[[wants.service]]
id = "com.amazon.mediatransform.service"
[[wants.service]]
id = "com.amazon.audio.stream"
[[wants.service]]
id = "com.amazon.audio.control"
[[wants.service]]
id = "com.amazon.media.server"
[[wants.service]]
id = "com.amazon.media.playersession.service"
Your babel.config.js
Device OS build version (Settings β My Fire TV β About β OS version - full
build number)
Are you using VideoPlayer or KeplerVideoSurfaceView directly? - KeplerVideoSurfaceView is only needed for prebuffering mode with multiple simultaneous players. For standard playback, use VideoPlayer component instead.
In the meantime, please try:
Use VideoPlayer component instead of KeplerVideoSurfaceView/KeplerVideoSurfaceViewStable if youβre not doing multi-player prebuffering
Verify your device OS is up to date - the native component may not be available on older builds
Weβll check this internally once we have the requested information.
Hello @Ivy_Mahajan , you can find additional details below,
Full crash stack trace
BUNDLE ./index.js
BUNDLE ./task.js
BUNDLE ./index.js
BUNDLE ./task.js
(NOBRIDGE) LOG Running "com.zee5.amazon.main" with {"fabric":true,"initialProps":{"concurrentRoot":true},"rootTag":1}
(NOBRIDGE) DEBUG [AmazonIAPSDK] useIapPurchaseUpdates Hook called
(NOBRIDGE) ERROR [ReactNative Architecture][JS] 'getViewManagerConfig' is not available in the new React Native architecture.Use hasViewManagerConfig instead. viewManagerName: getConstants
at App (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:129776:41)
at AppWrapper (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:129324:108)
at RCTView
at View (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:60140:26)
at RCTView
at View (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:60140:26)
at AppContainer (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:59994:36)
at com.zee5.amazon.main(RootComponent) (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:109942:28)
(NOBRIDGE) ERROR [ReactNative Architecture][JS] 'getConstants' is not available in the new React Native architecture.
at App (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:129776:41)
at AppWrapper (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:129324:108)
at RCTView
at View (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:60140:26)
at RCTView
at View (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:60140:26)
at AppContainer (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:59994:36)
at com.zee5.amazon.main(RootComponent) (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:109942:28)
(NOBRIDGE) DEBUG override RCTView to set native flag to false
(NOBRIDGE) DEBUG override RCTImageView to set native flag to false
(NOBRIDGE) LOG Registering native component: RNSVGRect
(NOBRIDGE) LOG Registering native component: RNSVGCircle
(NOBRIDGE) LOG Registering native component: RNSVGEllipse
(NOBRIDGE) LOG Registering native component: RNSVGPath
(NOBRIDGE) LOG Registering native component: RNSVGLine
(NOBRIDGE) LOG Registering native component: RNSVGGroup
(NOBRIDGE) LOG Registering native component: RNSVGSvgViewAndroid
(NOBRIDGE) LOG Registering native component: RNSVGSvgView
(NOBRIDGE) LOG Registering native component: RNSVGTSpan
(NOBRIDGE) LOG Registering native component: RNSVGText
(NOBRIDGE) LOG Registering native component: RNSVGTextPath
(NOBRIDGE) LOG Registering native component: RNSVGUse
(NOBRIDGE) LOG Registering native component: RNSVGImage
(NOBRIDGE) LOG Registering native component: RNSVGSymbol
(NOBRIDGE) LOG Registering native component: RNSVGDefs
(NOBRIDGE) LOG Registering native component: RNSVGLinearGradient
(NOBRIDGE) LOG Registering native component: RNSVGRadialGradient
(NOBRIDGE) LOG Registering native component: RNSVGClipPath
(NOBRIDGE) LOG Registering native component: RNSVGPattern
(NOBRIDGE) LOG Registering native component: RNSVGMask
(NOBRIDGE) LOG Registering native component: RNSVGMarker
(NOBRIDGE) LOG Registering native component: RNSVGForeignObject
(NOBRIDGE) INFO MediaPlayer:+constructor: audioType = undefined, audioUsage = undefined, w3cmediaVersion = 2.1.99
(NOBRIDGE) INFO Log level set to: INFO
(NOBRIDGE) INFO MediaControlStateUtil: ++
(NOBRIDGE) INFO MediaControlStateUtil: --
(NOBRIDGE) INFO MediaPlayer:-constructor
(NOBRIDGE) INFO [AmazonIAPSDK] Calling getPurchaseUpdates API with reset flag = false
(NOBRIDGE) DEBUG [AmazonIAPSDK] Created a new Instance for Purchasing Manager
(NOBRIDGE) INFO [AmazonIAPSDK] Received the request for getPurchaseUpdates API
(NOBRIDGE) INFO [AmazonIAPSDK] requestId : 74816b3b-9a9c-4afe-ae75-c249bb31c391
(NOBRIDGE) DEBUG [AmazonIAPSDK] GetPurchaseUpdates Request Handler Constructor invoked
(NOBRIDGE) DEBUG [AmazonIAPSDK] API Base Request Handler Constructor invoked
(NOBRIDGE) DEBUG [AmazonIAPSDK] GetPurchaseUpdates Model V2 Constructor invoked
(NOBRIDGE) DEBUG [AmazonIAPSDK] GetPurchaseUpdates Base Model Constructor invoked
(NOBRIDGE) DEBUG [AmazonIAPSDK] API Base Model Constructor invoked
(NOBRIDGE) INFO [AmazonIAPSDK] getPurchaseUpdates start time : 1777877377785
(NOBRIDGE) DEBUG [AmazonIAPSDK] Executing the GetPurchaseUpdates operation
(NOBRIDGE) DEBUG [AmazonIAPSDK] Adding request payload for version : V2
(NOBRIDGE) DEBUG [AmazonIAPSDK] Creating the request payload for Model Version V2
(NOBRIDGE) WARN Legacy AsyncStorage is on a deprecation path. Please migrate to using @amzn/react-native-async-storage__async-storage
at App (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:129776:41)
at AppWrapper (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:129324:108)
at RCTView
at View (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:60140:26)
at RCTView
at View (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:60140:26)
at AppContainer (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:59994:36)
at com.zee5.amazon.main(RootComponent) (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:109942:28)
(NOBRIDGE) INFO ChannelServerComponent2::setHandlerForComponent invoked
(NOBRIDGE) LOG [INFO] β Kepler EpgChannelHandlerService Channel handler registered successfully
(NOBRIDGE) LOG Content_Launcher_Sample: AccountLoginWrapper onStart()
(NOBRIDGE) LOG Content_Launcher_Sample::setupAccountLoginServer invoked.
(NOBRIDGE) LOG Content_Launcher_Sample::Creating accountLoginHandler
(NOBRIDGE) LOG AccountLoginServer::setHandlerForComponent invoked.
(NOBRIDGE) LOG Content_Launcher_Sample: login status before fn:: false
(NOBRIDGE) LOG Content_Launcher_Sample: Sending login status in status change >> false
(NOBRIDGE) LOG Content_Launcher_Sample::updateStatus invoked.
(NOBRIDGE) LOG Content_Launcher_Sample::updateStatus: - SIGNED_OUT
(NOBRIDGE) LOG AccountLoginServer::updateStatus invoked. status: 1
(NOBRIDGE) LOG Content_Launcher_Sample: Sending login status after status change false
(NOBRIDGE) LOG curl -X GET 'https://xtra.zee5.com/country'
(NOBRIDGE) LOG curl -X POST 'https://useraction.zee5.com/user/' --data '{"user":{"apikey":"AIzaSyBLwxQDIY2ZyVX3NOdLbFWb2P0Se0uavdo","aid":"AFTCA002_1777877378224"}}'
(NOBRIDGE) DEBUG [AmazonIAPSDK] useIapPurchaseUpdates: App state change ignored: active
(NOBRIDGE) WARN Legacy AsyncStorage is on a deprecation path. Please migrate to using @amzn/react-native-async-storage__async-storage
(NOBRIDGE) LOG Content_Launcher_Sample: Login status fetched on App start: null
(NOBRIDGE) LOG Content_Launcher_Sample::updateStatus invoked.
(NOBRIDGE) LOG Content_Launcher_Sample::updateStatus: - SIGNED_OUT
(NOBRIDGE) LOG AccountLoginServer::updateStatus invoked. status: 1
(NOBRIDGE) INFO MediaPlayer: initialize: audioType = 3, audioUsage = 1
(NOBRIDGE) ERROR Warning: forwardRef render functions accept exactly two parameters: props and ref. Did you forget to use the ref parameter?
in SplashScreenWithVideo (created by SplashScreenZee5LogoWithLoader)
in RCTView (created by View)
in View (created by SplashScreenZee5LogoWithLoader)
in RCTView (created by View)
in View (created by emotion(View))
in emotion(View) (created by SplashScreenZee5LogoWithLoader)
in SplashScreenZee5LogoWithLoader (created by App)
in RCTView (created by View)
in View (created by GestureHandlerRootView)
in GestureHandlerRootView (created by App)
in TranslationProvider (created by App)
in App (created by AppWrapper)
in AppWrapper
in RCTView (created by View)
in View (created by AppContainer)
in RCTView (created by View)
in View (created by AppContainer)
in AppContainer
in com.zee5.amazon.main(RootComponent)
(NOBRIDGE) INFO render KeplerVideoSurfaceView
(NOBRIDGE) INFO render KeplerVideoSurfaceView
(NOBRIDGE) ERROR Invariant Violation: View config getter callback for component `KeplerVideoSurfaceViewStable` must be a function (received `undefined`).
This error is located at:
in KeplerVideoSurfaceViewStable (created by KeplerVideoSurfaceView)
in KeplerVideoSurfaceView (created by KeplerVideoView)
in KeplerVideoView (created by SplashScreenWithVideo)
in RCTView (created by View)
in View (created by SplashScreenWithVideo)
in SplashScreenWithVideo (created by SplashScreenZee5LogoWithLoader)
in RCTView (created by View)
in View (created by SplashScreenZee5LogoWithLoader)
in RCTView (created by View)
in View (created by emotion(View))
in emotion(View) (created by SplashScreenZee5LogoWithLoader)
in SplashScreenZee5LogoWithLoader (created by App)
in RCTView (created by View)
in View (created by GestureHandlerRootView)
in GestureHandlerRootView (created by App)
in TranslationProvider (created by App)
in App (created by AppWrapper)
in AppWrapper
in RCTView (created by View)
in View (created by AppContainer)
in RCTView (created by View)
in View (created by AppContainer)
in AppContainer
in com.zee5.amazon.main(RootComponent), js engine: hermes
(NOBRIDGE) ERROR Invariant Violation: View config getter callback for component `KeplerVideoSurfaceViewStable` must be a function (received `undefined`).
This error is located at:
in KeplerVideoSurfaceViewStable (created by KeplerVideoSurfaceView)
in KeplerVideoSurfaceView (created by KeplerVideoView)
in KeplerVideoView (created by SplashScreenWithVideo)
in RCTView (created by View)
in View (created by SplashScreenWithVideo)
in SplashScreenWithVideo (created by SplashScreenZee5LogoWithLoader)
in RCTView (created by View)
in View (created by SplashScreenZee5LogoWithLoader)
in RCTView (created by View)
in View (created by emotion(View))
in emotion(View) (created by SplashScreenZee5LogoWithLoader)
in SplashScreenZee5LogoWithLoader (created by App)
in RCTView (created by View)
in View (created by GestureHandlerRootView)
in GestureHandlerRootView (created by App)
in TranslationProvider (created by App)
in App (created by AppWrapper)
in AppWrapper
in RCTView (created by View)
in View (created by AppContainer)
in RCTView (created by View)
in View (created by AppContainer)
in AppContainer
in com.zee5.amazon.main(RootComponent), js engine: hermes
(NOBRIDGE) DEBUG [AmazonIAPSDK] Reset value present in request payload: false
(NOBRIDGE) WARN Legacy AsyncStorage is on a deprecation path. Please migrate to using @amzn/react-native-async-storage__async-storage
(NOBRIDGE) INFO MediaPlayer: Native Media Element Created
(NOBRIDGE) INFO MediaPlayer: Native Media Element Resolve now..
(NOBRIDGE) DEBUG [AmazonIAPSDK] Component unmounted. Removing AppState listener
(NOBRIDGE) LOG Content_Launcher_Sample: AccountLoginWrapper onStop()
(NOBRIDGE) LOG App.tsx is unmounted
(NOBRIDGE) INFO MediaPlayer: pause
(NOBRIDGE) WARN Legacy AsyncStorage is on a deprecation path. Please migrate to using @amzn/react-native-async-storage__async-storage
(NOBRIDGE) INFO EncryptedMediaImpl: MediaKeysSystemAccessImpl::ctor key system = com.widevine.alpha
(NOBRIDGE) INFO EncryptedMediaImpl: MediaKeysSystemAccessImpl::ctor native config = null
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) INFO MediaSource: isTypeSupported audio/mp4; codecs="ac-3"
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) ERROR ac-3 is not supported by platform
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) INFO MediaSource: isTypeSupported audio/mp4; codecs="mp4a.a5"
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) ERROR mp4a.a5 is not supported by platform
(NOBRIDGE) ERROR invalid audio mime type video/mp2t; codecs="ac-3"
(NOBRIDGE) ERROR isValidMediaConfigurationForDecoding failed
(NOBRIDGE) ERROR decodingInfoImpl invalid config
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp2t; codecs="ac-3"
(NOBRIDGE) ERROR The requested combination of container video/mp2t and codec ac-3 is not supported
(NOBRIDGE) ERROR invalid audio mime type video/mp2t; codecs="mp4a.a5"
(NOBRIDGE) ERROR isValidMediaConfigurationForDecoding failed
(NOBRIDGE) ERROR decodingInfoImpl invalid config
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp2t; codecs="mp4a.a5"
(NOBRIDGE) ERROR The requested combination of container video/mp2t and codec mp4a.a5 is not supported
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) INFO MediaSource: isTypeSupported audio/mp4; codecs="ec-3"
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) ERROR ec-3 is not supported by platform
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) INFO MediaSource: isTypeSupported audio/mp4; codecs="mp4a.a6"
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) ERROR mp4a.a6 is not supported by platform
(NOBRIDGE) ERROR invalid audio mime type video/mp2t; codecs="ec-3"
(NOBRIDGE) ERROR isValidMediaConfigurationForDecoding failed
(NOBRIDGE) ERROR decodingInfoImpl invalid config
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp2t; codecs="ec-3"
(NOBRIDGE) ERROR The requested combination of container video/mp2t and codec ec-3 is not supported
(NOBRIDGE) ERROR invalid audio mime type audio/mp4; codecs="ec-3"; spatialRendering=true
(NOBRIDGE) ERROR isValidMediaConfigurationForDecoding failed
(NOBRIDGE) ERROR decodingInfoImpl invalid config
(NOBRIDGE) INFO MediaSource: isTypeSupported audio/mp4; codecs="ec-3"; spatialRendering=true
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) ERROR ec-3 is not supported by platform
(NOBRIDGE) ERROR invalid audio mime type video/mp2t; codecs="ec-3"; spatialRendering=true
(NOBRIDGE) ERROR isValidMediaConfigurationForDecoding failed
(NOBRIDGE) ERROR decodingInfoImpl invalid config
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp2t; codecs="ec-3"; spatialRendering=true
(NOBRIDGE) ERROR The requested combination of container video/mp2t and codec ec-3 is not supported
(NOBRIDGE) DEBUG js queryMediaCapabilities: [{"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2522500560", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2522500604", "resolutions": [Array]}}]
(NOBRIDGE) DEBUG result length: 1
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp4; codecs="avc1.42E01E"
(NOBRIDGE) DEBUG js queryMediaCapabilities: [{"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466541832", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466541876", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466430304", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466430348", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466892896", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466892940", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466895592", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466895636", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": false}, "mID": "2466898400", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466898444", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": false}, "mID": "2466901032", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466901076", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466904720", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466904764", "resolutions": [Array]}}]
(NOBRIDGE) DEBUG result length: 7
(NOBRIDGE) INFO avc1.42E01E is supported
(NOBRIDGE) DEBUG js queryMediaCapabilities: [{"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466866304", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466866348", "resolutions": [Array]}}]
(NOBRIDGE) DEBUG result length: 1
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp4; codecs="hev1.1.6.L93.90"
(NOBRIDGE) DEBUG js queryMediaCapabilities: [{"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2686432192", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2686432236", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466991200", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466991244", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466920768", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466920812", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466923464", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466923508", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": false}, "mID": "2466926272", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466926316", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": false}, "mID": "2466928904", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466928948", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466932592", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466932636", "resolutions": [Array]}}]
(NOBRIDGE) DEBUG result length: 7
(NOBRIDGE) INFO hev1.1.6.L93.90 is supported
(NOBRIDGE) DEBUG js queryMediaCapabilities: [{"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2467122896", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2467122940", "resolutions": [Array]}}]
(NOBRIDGE) DEBUG result length: 1
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp4; codecs="vp8"
(NOBRIDGE) ERROR The requested combination of container video/mp4 and codec vp8 is not supported
(NOBRIDGE) DEBUG js queryMediaCapabilities: [{"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2467029208", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2467029252", "resolutions": [Array]}}]
(NOBRIDGE) DEBUG result length: 1
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp4; codecs="vp9"
(NOBRIDGE) ERROR The requested combination of container video/mp4 and codec vp9 is not supported
(NOBRIDGE) DEBUG js queryMediaCapabilities: [{"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466954664", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466954708", "resolutions": [Array]}}]
(NOBRIDGE) DEBUG result length: 1
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp4; codecs="avc1.42E01E"
(NOBRIDGE) DEBUG js queryMediaCapabilities: [{"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2667170168", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2667170212", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466749584", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466749628", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466948472", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466948516", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2467127496", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2467127540", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": false}, "mID": "2491752792", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2491752836", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": false}, "mID": "2467029880", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2467029924", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466949880", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466949924", "resolutions": [Array]}}]
(NOBRIDGE) DEBUG result length: 7
(NOBRIDGE) INFO avc1.42E01E is supported
(NOBRIDGE) DEBUG js queryMediaCapabilities: [{"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2521596024", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2521596068", "resolutions": [Array]}}]
(NOBRIDGE) DEBUG result length: 1
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp2t; codecs="avc1.42E01E"
(NOBRIDGE) DEBUG js queryMediaCapabilities: [{"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466854096", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466854140", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2467054208", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2467054252", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466874656", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466874700", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2466877352", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466877396", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": false}, "mID": "2466880160", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2466880204", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": false}, "mID": "2467135816", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2467135860", "resolutions": [Array]}}, {"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2467139504", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2467139548", "resolutions": [Array]}}]
(NOBRIDGE) DEBUG result length: 7
(NOBRIDGE) INFO avc1.42E01E is supported
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) DEBUG js queryMediaCapabilities: [{"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2467211112", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2467211156", "resolutions": [Array]}}]
(NOBRIDGE) DEBUG result length: 1
(NOBRIDGE) DEBUG js queryMediaCapabilities: [{"decoderFeaturesCapabilities": {"decryptionSupported": true}, "mID": "2467082976", "mediaCodecFeaturesCapabilities": {"hardwareBacked": true}, "mediaFormatProfileLevelCapabilities": {"codecParams": [Array], "profileLevels": [Array]}, "videoFormatCapabilities": {"colorFormats": [Array], "mID": "2467083020", "resolutions": [Array]}}]
(NOBRIDGE) DEBUG result length: 1
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) DEBUG js queryMediaCapabilities: []
(NOBRIDGE) DEBUG result length: 0
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp4; codecs="dvhe.05.06"
(NOBRIDGE) ERROR The requested combination of container video/mp4 and codec dvhe.05.06 is not supported
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp4; codecs="dvhe.05.07"
(NOBRIDGE) ERROR The requested combination of container video/mp4 and codec dvhe.05.07 is not supported
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp4; codecs="dvhe.08.06"
(NOBRIDGE) ERROR The requested combination of container video/mp4 and codec dvhe.08.06 is not supported
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp4; codecs="dvhe.08.07"
(NOBRIDGE) ERROR The requested combination of container video/mp4 and codec dvhe.08.07 is not supported
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp2t; codecs="dvhe.05.06"
(NOBRIDGE) ERROR The requested combination of container video/mp2t and codec dvhe.05.06 is not supported
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp2t; codecs="dvhe.05.07"
(NOBRIDGE) ERROR The requested combination of container video/mp2t and codec dvhe.05.07 is not supported
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp2t; codecs="dvhe.08.06"
(NOBRIDGE) ERROR The requested combination of container video/mp2t and codec dvhe.08.06 is not supported
(NOBRIDGE) INFO MediaSource: isTypeSupported video/mp2t; codecs="dvhe.08.07"
(NOBRIDGE) ERROR The requested combination of container video/mp2t and codec dvhe.08.07 is not supported
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 0):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275507:142)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at addChannelIfSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275515:32)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275518:38)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at getAudioChannelsSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275528:50)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275787:76)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 1):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275507:142)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 2):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275507:142)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 3):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275507:142)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 4):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275507:142)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at addChannelIfSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275515:32)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275519:38)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 5):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275507:142)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 6):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275507:142)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 7):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275507:142)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at addChannelIfSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275515:32)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275520:38)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 8):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275507:142)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 9):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275565:142)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at addIfCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275573:33)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275576:36)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at getVideoCodecsSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275586:48)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275788:72)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 10):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275565:142)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at addIfCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275573:33)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275577:36)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 11):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275565:142)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at addIfCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275573:33)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275578:36)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 12):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275565:142)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at addIfCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275573:33)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275579:36)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 13):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275598:142)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at addIfCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275606:33)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275609:36)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at getContainersSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275614:47)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275789:70)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 14):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275598:142)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at addIfCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275606:33)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275610:36)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 15):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275622:118)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at canDecodeVideo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275634:39)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275643:54)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at getMaxDecodeTier (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275657:41)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275677:68)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at getMaxResolutionSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275683:50)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275790:73)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 16):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275622:118)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at canDecodeVideo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275634:39)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275647:54)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 17):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275710:138)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at getVideoRangesSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275733:48)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275792:73)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 18):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275696:116)
at map (native)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275695:64)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at getDolbyVisionSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275701:46)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275724:75)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 19):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275696:116)
at map (native)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275695:64)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at getDolbyVisionSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275701:46)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275724:75)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 20):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275696:116)
at map (native)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275695:64)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at getDolbyVisionSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275701:46)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275724:75)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 21):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275696:116)
at map (native)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275695:64)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at getDolbyVisionSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275701:46)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275724:75)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 22):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275696:116)
at map (native)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275695:64)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at getDolbyVisionSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275701:46)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275724:75)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 23):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275696:116)
at map (native)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275695:64)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at getDolbyVisionSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275701:46)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275724:75)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 24):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275696:116)
at map (native)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275695:64)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at getDolbyVisionSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275701:46)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275724:75)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) WARN Possible Unhandled Promise Rejection (id: 25):
TypeError: default reject
TypeError: default reject
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271929:27)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at decodingInfo (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:271928:26)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275876:121)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at checkDecodingSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275883:45)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275918:66)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at isCodecSupported (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275923:41)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275696:116)
at map (native)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275695:64)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28776:14)
at tryCallTwo (InternalBytecode.js:61:9)
at doResolve (InternalBytecode.js:216:25)
at Promise (InternalBytecode.js:82:14)
at anonymous (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28768:25)
at apply (native)
at getDolbyVisionSupport (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275701:46)
at ?anon_0_ (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:275724:75)
at next (native)
at asyncGeneratorStep (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28757:19)
at _next (http://localhost:8081/index.bundle//&platform=kepler&dev=true&minify=false:28771:29)
at tryCallOne (InternalBytecode.js:53:16)
at anonymous (InternalBytecode.js:139:27)
(NOBRIDGE) INFO EncryptedMediaImpl: MediaKeysSystemAccessImpl::ctor key system = com.widevine.alpha
(NOBRIDGE) INFO EncryptedMediaImpl: MediaKeysSystemAccessImpl::ctor native config = null
(NOBRIDGE) DEBUG [AmazonIAPSDK] Received the response
(NOBRIDGE) DEBUG [AmazonIAPSDK] Response version : V2
(NOBRIDGE) DEBUG [AmazonIAPSDK] Parsing the response object received for getPurchaseUpdates operation......
(NOBRIDGE) ERROR [AmazonIAPSDK] Response status for GetPurchaseUpdates : FAILED
(NOBRIDGE) DEBUG [AmazonIAPSDK] Creating a null response for GetPurchaseUpdates with response status : FAILED
(NOBRIDGE) INFO [AmazonIAPSDK] getPurchaseUpdates end time : 1777877380236
(NOBRIDGE) INFO [AmazonIAPSDK] getPurchaseUpdates total time : 2451 ms
(NOBRIDGE) DEBUG [AmazonIAPSDK] Async sending the acknowldgement for getPurchaseUpdates operation
(NOBRIDGE) DEBUG [AmazonIAPSDK] Extracting the receipt ids present in the getPurchaseUpdates response...
(NOBRIDGE) DEBUG [AmazonIAPSDK] Acknowledgment sent failed with error : TypeError: Cannot convert null value to object
(NOBRIDGE) INFO EncryptedMediaImpl: MediaKeysSystemAccessImpl::ctor key system = com.widevine.alpha
(NOBRIDGE) INFO EncryptedMediaImpl: MediaKeysSystemAccessImpl::ctor native config = null
(NOBRIDGE) DEBUG override KeplerHorizontalScrollContentView to set native flag to false
(NOBRIDGE) DEBUG override KeplerHorizontalScrollView to set native flag to false
(NOBRIDGE) DEBUG override RCTScrollView to set native flag to false
(NOBRIDGE) INFO EncryptedMediaImpl: MediaKeysSystemAccessImpl::ctor key system = com.widevine.alpha
(NOBRIDGE) INFO EncryptedMediaImpl: MediaKeysSystemAccessImpl::ctor native config = null
(NOBRIDGE) INFO EncryptedMediaImpl: MediaKeysSystemAccessImpl::ctor key system = com.widevine.alpha
(NOBRIDGE) INFO EncryptedMediaImpl: MediaKeysSystemAccessImpl::ctor native config = null
(NOBRIDGE) INFO EncryptedMediaImpl: MediaKeysSystemAccessImpl::ctor key system = com.widevine.alpha
(NOBRIDGE) INFO EncryptedMediaImpl: MediaKeysSystemAccessImpl::ctor native config = null
(NOBRIDGE) LOG Audio Channels: ["STEREO"]
(NOBRIDGE) LOG Video Codecs: ["H264", "HEVC"]
(NOBRIDGE) LOG Containers: ["FMP4", "TS"]
(NOBRIDGE) LOG Resolution:>>>>> ["FHD"]
(NOBRIDGE) LOG Dynamic Range: ["SDR", "HDR"]
(NOBRIDGE) LOG Widevine Security Levels: ["L3", "L2", "L1"]
(NOBRIDGE) LOG curl -X GET 'https://cerberus.zee5.com/cerberus/platform/amazonfire_tv_kepler/v1/config?state=TN&city=CHENNAI&country=IN&userType=GUEST' -H 'x-z5-device-id: AFTCA002' -H 'x-z5-appversion: 1.1.3 - RC2' -H 'x-user-type: GUEST' -H 'x-z5-dd-info: eyJzY2hlbWFfdmVyc2lvbiI6IjEiLCJvc19uYW1lIjoiS2VwbGVyIiwib3NfdmVyc2lvbiI6IjEuMSIsImRldmljZV9uYW1lIjoiQUZUQ0EwMDIiLCJwbGF0Zm9ybV9uYW1lIjoiYW1hem9uZmlyZV90dl9rZXBsZXIiLCJwbGF0Zm9ybV92ZXJzaW9uIjoiMS4xIiwiYXBwX25hbWUiOiJhbWF6b25maXJlX3R2X2tlcGxlciIsImFwcF92ZXJzaW9uIjoiMS4xIiwicGxheWVyX2NhcGFiaWxpdGllcyI6eyJhdWRpb19jaGFubmVsIjpbIlNURVJFTyJdLCJ2aWRlb19jb2RlYyI6WyJIMjY0IiwiSEVWQyJdLCJjb250YWluZXIiOlsiRk1QNCIsIlRTIl0sInJlc29sdXRpb24iOlsiRkhEIl0sImR5bmFtaWNfcmFuZ2UiOlsiU0RSIiwiSERSIl19LCJzZWN1cml0eV9jYXBhYmlsaXRpZXMiOnsiZW5jcnlwdGlvbiI6WyJXSURFVklORV9BRVNfQ0JDUyIsIldJREVWSU5FX0FFU19DVFIiXSwid2lkZXZpbmVfc2VjdXJpdHlfbGV2ZWwiOlsiTDMiLCJMMiIsIkwxIl0sImhkY3BfdmVyc2lvbiI6IkhEQ1BfVjcifX0=' -H 'x-z5-guest-token: bearer Z5X_61650fd0207aca99745e07fbc2ed1b32b128d423153aaef33822ea798f0c156e'
(NOBRIDGE) LOG [INFO] RemoteConfigResponse:: {"primary_languages_config":{"is_player_language_logo_enabled":false,"language_logo_url":"frontend/language_icons_v2/Z5_{language_code}_Default.png","primary_languages":["hi","kn","te","ta","ml","mr","bn"]},"profile_config_v3":{"isEnabled":true,"maxProfileAllowed":6,"pin":{"hash":{"name":"MD5","salt":"PR0F1LE_P1N_SA7T"}},"upcomingContentCollection":{"adult":"0-8-3z5560094","kid":"0-8-3z5840923"},"kids":{"is_download_enabled":false,"is_search_nav_restricted":false,"menu_configs":[{"name":"all","id":"0-8-3673","icons":{"selected":"navigation/all/home/selected/all_selected","unselected":"navigation/all/home/unselected/all"}}]}},"splash_screen_config":{"splash_video":{"is_splash_video_enabled":true,"video_url":"https://mediacloudfront.zee5.com/splash/ZEE5_for_CTV_v2.mp4"}}}
(NOBRIDGE) LOG Reset start
(NOBRIDGE) LOG [INFO] β NpawPlugin initialized successfully
(NOBRIDGE) LOG [INFO] β npaw provider initialized
(NOBRIDGE) LOG [INFO] β Analytics ready
(NOBRIDGE) LOG curl -X GET 'https://launchapi.zee5.com/appconfig?state=TN&ccode=IN&country=IN&translation=en&platform_name=amazonfire_tv_kepler&userType=GUE'
(NOBRIDGE) LOG curl -X GET 'https://launchapi.zee5.com/appconfig?state=TN&ccode=IN&country=IN&translation=en&platform_name=amazonfire_tv_kepler&userType=GUE'
(NOBRIDGE) LOG π EPG Sync Task Started
(NOBRIDGE) LOG [INFO] EPG system initialization completed
(NOBRIDGE) LOG Fetching channels...
(NOBRIDGE) LOG curl -X GET 'https://gwapi.zee5.com/content/collection/0-8-6544?country=IN&languages=en,ta&translation=en&version=12&limit=50&page=1' -H 'X-ACCESS-TOKEN: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwbGF0Zm9ybV9jb2RlIjoidHZAYXBwbGljYXRpb24iLCJpc3N1ZWRBdCI6IjIwMjYtMDUtMDRUMDQ6MDI6NTAuNzY2WiIsInByb2R1Y3RfY29kZSI6IkBtYXpvbmZpcmVfdHZfa2VwbGVyIiwidHRsIjo4NjQwMDAwMCwiaWF0IjoxNzc3ODY3MzcwfQ.C7sN9HV5A9BL394s5ojQBNplJBloJi9XuyJCFJBuLec'
(NOBRIDGE) LOG Successfully fetched 10 channels
(NOBRIDGE) LOG curl -X GET 'https://gwapi.zee5.com/content/collection/0-8-6544?country=IN&languages=en,ta&translation=en&version=12&limit=50&page=2' -H 'X-ACCESS-TOKEN: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwbGF0Zm9ybV9jb2RlIjoidHZAYXBwbGljYXRpb24iLCJpc3N1ZWRBdCI6IjIwMjYtMDUtMDRUMDQ6MDI6NTAuNzY2WiIsInByb2R1Y3RfY29kZSI6IkBtYXpvbmZpcmVfdHZfa2VwbGVyIiwidHRsIjo4NjQwMDAwMCwiaWF0IjoxNzc3ODY3MzcwfQ.C7sN9HV5A9BL394s5ojQBNplJBloJi9XuyJCFJBuLec'
(NOBRIDGE) LOG No channels at page=2, stopping fetchChannels api
(NOBRIDGE) LOG Fetched total 10 channels
(NOBRIDGE) LOG getChannels 4 filteredChannels 1777877383622
(NOBRIDGE) LOG Built channel: ZEE News Tamil (1)
(NOBRIDGE) LOG Built channel: India Today (2)
(NOBRIDGE) LOG Built channel: News 9 (3)
(NOBRIDGE) LOG Built channel: WION (4)
(NOBRIDGE) LOG Generated 4 channels
(NOBRIDGE) LOG Processing 4 channels
(NOBRIDGE) LOG β Successfully added 4 channels {"version": "channels_1777877383877"}
(NOBRIDGE) LOG EPG: Parsed 4 channelIds
(NOBRIDGE) LOG EPG: Created 1 batches (batchSize=15)
(NOBRIDGE) LOG started fetching EPG programs 1777877383932
(NOBRIDGE) LOG curl -X GET 'https://gwapi.zee5.com/v1/epg?country=IN&end=2&offset=%2B05%3A30&page_size=100&channels=0-9-9z583533,0-9-indiatoday,0-9-261,0-9-wion' -H 'X-ACCESS-TOKEN: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwbGF0Zm9ybV9jb2RlIjoidHZAYXBwbGljYXRpb24iLCJpc3N1ZWRBdCI6IjIwMjYtMDUtMDRUMDQ6MDI6NTAuNzY2WiIsInByb2R1Y3RfY29kZSI6IkBtYXpvbmZpcmVfdHZfa2VwbGVyIiwidHRsIjo4NjQwMDAwMCwiaWF0IjoxNzc3ODY3MzcwfQ.C7sN9HV5A9BL394s5ojQBNplJBloJi9XuyJCFJBuLec'
(NOBRIDGE) LOG β EPG: Batch success [0-9-9z583533...(+3)] channels=4 time=310ms
(NOBRIDGE) LOG EPG: Merged 4 items β 4 unique channels
(NOBRIDGE) LOG EPG: Fetch completed. Requested=4, Returned=4, TotalTime=321ms
(NOBRIDGE) LOG Generated 313 programs across 4 channels
(NOBRIDGE) LOG Processing 313 programs
(NOBRIDGE) LOG β Successfully upserted 313 programs {"version": "programs_1777877384687"}
(NOBRIDGE) LOG β EPG Sync Task completed successfully
All media services mentioned are there in manifest.toml file.
babel config:
/*
* Copyright (c) 2022 Amazon.com, Inc. or its affiliates. All rights reserved.
*
* PROPRIETARY/CONFIDENTIAL. USE IS SUBJECT TO LICENSE TERMS.
*/
// api.cache(false);
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: [
[
'module:react-native-dotenv',
{
moduleName: '@env',
path: '.env',
allowlist: null,
safe: false,
allowUndefined: true,
verbose: false,
},
],
[
'@babel/plugin-transform-react-jsx',
{
runtime: 'automatic',
},
],
'@amzn/react-native-reanimated/plugin',
],
};
OS version- OS 1.1 (1401010446050).
Below you can find how we are using KeplerVideoSurfaceView.
did you only move react-native-w3cmedia to the @amazon-devices/ or the other packages too?
with sdk0.22 we move to 2.2.x react-native-w3cmedia and it must run on OS 1.1 (1001010012520) or later.
Can you use v2.2.11 instead and see if the issue is still there?
Can you also help provide the outputs of these commands:
for f in /usr/local/share/bundles/*w3cmedia*; do echo "=== $f ==="; strings "$f" | grep "KeplerVideoSurfaceViewStable"; done
for f in /usr/local/share/bundles/*w3cmedia*; do echo "=== $f ==="; strings "$f" | grep "react-native-w3cmedia"; done