Questions tagged [custom-receiver]

50 questions
1
vote
2 answers

Unable to cast to a Custom Receiver App from JW Player 8

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…
Leigh F
  • 146
  • 6
1
vote
0 answers

Getting error while trying to debug chrome cast custom receiver

I am getting an error below while trying to debug the custom receiver. cast.receiver.logger.setLevelValue(cast.receiver.LoggerLevel.DEBUG); This is the error when I execute the up statement; VM213:1 Uncaught TypeError: Cannot read property…
Cassin
  • 11
  • 4
1
vote
0 answers

Issue in cast_receiver.js prevents Custom Chromecast Receiver from running on Chromecast fw 1.26

As the title suggests, since the FW update, i'm getting a very strange error with my Custom Chromecast Receiver. Uncaught TypeError: Cannot read property 'decrypt' of undefined at cast_receiver.js:130 at cast_receiver.js:236 Basically…
1
vote
0 answers

Where can I find sample chromecast receiver application using expressplay?

I've been looking for sample receiver application for chromecast using expressplay for encrypted contents but cannot find one. Can anyone refer a link to it ? Thanks in advance for any help.
Ibrahim Iqbal
  • 600
  • 3
  • 23
1
vote
2 answers

IntentService doesn't work with resultreceiver

I'm having trouble passing an object back after the intentservice is completed. My goal is to send the currentCharacter object back to the Mainactivity after the notification has been sent. I tried it with an onResult but the intentservice doesn't…
1
vote
1 answer

Chromecast custom receiver doesn't pause audio element

Right now I'm developing a sender on iOS, it's playing an audio correctly on my custom receiver but when I send a pause message on sender self.mediaControlChannel.pause; I can see(from debug) that custom receiver receives a message [ 22.169s]…
Ana Paula
  • 8,733
  • 3
  • 16
  • 16
1
vote
2 answers

Chromecast send metadata to receiver

I need help, in my custome receiver Chromecast app, I can not fetch media metadata with which the app was initialized. I loaded media like this, after sucesful session request: var mediaInfo = new…
MIslavMIslav
  • 93
  • 1
  • 8
1
vote
0 answers

Missing MediaManager debugging messages on receiver

After load is completed, i try to send the new status to the sender (an Android app). I try the following: mediaManager.broadcastStatus(true, '', {media}, true); mediaManager.sendStatus(senderId, requestId, true, {media},…
1
vote
1 answer

Unexpected connected message for already connected sender

I'm developing a custom cast receiver based on Cast-Player-Sample. I'm getting "Unexpected connected message for already connected sender" and "Unexpected sender already registered". Why? I can't figure it out why I'm getting this. How can I track…
JobaDiniz
  • 862
  • 1
  • 14
  • 32
1
vote
2 answers

Chromecast debugger unavailable

I'm trying to develop a new application for Chromecast device. However I can't access to Chromecast Debugger by the URL http://[CHROMECAST-IP]:9222 after I've launched my receiver app in Chrome (OS X 10.10.4 / version 45.0.2454.15 dev (64-bit), but…
1
vote
2 answers

Custom Receiver and Cookies from Akamai

I'm experiencing problem with HLS from Akamai. I'm using HLS from Akamai with tokens, in order to start stream, Cookies should be set after master m3u8 playlist response. Response from…
0
votes
1 answer

Chromecast Google Cast SDK custom receiver is not getting detected

I am just starting implementing chrome cast , I started working on custom receiver app and i copy pasted code from google documentation and hosted on free web hosting : https://thirsty-roentgen-206e45.netlify.com, I registered my chrome-cast device…
0
votes
0 answers

How can I receive messages as RDD instead of DStream from a realtime source with a custom receiver?

I want to get RDD from a realtime message source (currently socket) to replace the line of code that is used to read from a local file sc.newAPIHadoopFile(). In order to maintain the structure of the project, I have to get RDD instead of DStream…
0
votes
2 answers

How do I do basic customization of a custom Chromecast Receiver app? Like setting the background image while loading?

I have a custom Chromecast receiver app with the most basic code:
Doug Smith
  • 29,668
  • 57
  • 204
  • 388
0
votes
1 answer

CAF Receiver: Positioning of subtitles

I've created a custom CAF receiver for playing back MPEG-DASH content which is encrypted using Widewine. My content also has TTML subtitles embedded in the manifest which can be changed dynamically. Playing my encrypted content works like a charm -…