0

I have an Image with 3840x2160px resolution which is identically maximum for 4K screens and I want to cast it on my TV screen through chromecast.

I have read plenty of solutions and documentation on Stackoverflow and developer.google but I couldn't identified the one what I need.

Looking in Here : Cast Image to Chromecast

accepted answer says that one can "simply send a url to the Chromecast device and grab it from your sever inside the receiver app. This the the recommended way to send photos across to the Chromecast"

I will give it a try but what should be the type for my receiver app when registering my cast application for above described scenario.

  1. Custom Receiver or 2. Styled Media Receiver.

Remote Display Receiver is not supported for Chrome so it is excluded from list.

Kara
  • 6,115
  • 16
  • 50
  • 57

1 Answers1

1

If you simply want to show an image, Default/Styled receiver would do, no additional receiver work is needed. If you want to show a slide show with some more advanced features, then you need to write a custom receiver.

Ali Naddaf
  • 16,951
  • 2
  • 21
  • 28
  • Great.. Thank You.. One last thing, am I able to send an image URL to chromcast device from chrome (Chromecast extension installed) without registering an app? – Arth Thakkar Mar 16 '16 at 19:48
  • If you use the Default Receiver, then no registration is required – Ali Naddaf Mar 16 '16 at 21:04
  • I am facing an issue again.. On the call of chrome.cast.requestSession() method the chrome should open the dialog box to choose device which is now leading to the failure callback. What should be the possible reason for this – Arth Thakkar Oct 11 '16 at 19:55