I'm trying to cast videos from a web application using JW Player 8 to a Custom Cast Receiver App. I've registered the receiver app, whitelisted the device that I'm casting to (the app isn't yet published), and I'm passing in the following when initializing the JW Player:
let player = jwplayer('video-player');
player.setup({
file: 'video.mp4',
cast: {
appid: MY_CUSTOM_APP_ID
}
});
Every time I go to cast, it casts to "Default Media Receiver". I can't seem to get it to cast to my custom app.
Has anyone else encountered this issue? It appears to be JW Player-related, as the player has a built-in sender app that doesn't look to be requesting the custom receiver.