Kaltura Media Player
Migration to new JavaScript Bridge Interface
We have made it easier for you to interact with Kaltura via the GoNative JavaScript Bridge.
Previously, you would call the bridge using:
window.location.href = 'gonative://kaltura/play?key=value'
Now you can do the same using:
gonative.kaltura.play({key: value});
Overview
Play live and recorded video natively in your app using the Kaltura Player. Includes support for AirPlay and Chromecast streaming to compatible devices.
Implementation Guide
Once the premium module has been added to your app, you may use the following GoNative JavaScript Bridge commands to access its functionality.
↔️GoNative JavaScript Bridge
To play a video, run the JavaScript function:
gonative.kaltura.play({'entryId': 'entry_id', 'onError': 'on_error', 'callback': callback_function});
Updated 14 days ago