Configuration interface for remote control of Google Cast (e.g. Chromecast) receivers.

Example (enable casting with Bitmovin receiver app and custom style):

{
type: 'googlecast',
customReceiverConfig: {
receiverStylesheetUrl: 'https://mycdn.com/mycustomreceiverstyle.css',
},
}

Example (custom receiver):

{
type: 'googlecast',
receiverApplicationId: '1234ABCD',
customReceiverConfig: {
customPropertyName: 'customValue',
},
}
interface GoogleCastRemoteControlConfig {
    type: "googlecast";
}

Hierarchy

  • GoogleCastRemoteControlConfig
    • GoogleCastRemoteControlConfig

Properties

Properties

type: "googlecast"