0

When using the Styled Media Receiver with a queue, is it possible to add QUEUE_NEXT and QUEUE_PREV to the supported media commands? If so, how?

Brad
  • 159,648
  • 54
  • 349
  • 530

1 Answers1

1

You can only customize via CSS. For the supported media commands you would need a custom receiver. By default the supported commands would be:

ALL_BASIC_MEDIA

https://developers.google.com/cast/docs/reference/web_receiver/cast.framework.messages#.ALL_BASIC_MEDIA

All basic media. Includes the mandatory commands and PAUSE, SEEK, STREAM_VOLUME, STREAM_MUTE. EDIT_TRACKS, PLAYBACK_RATE

  • Thanks for the info. It looks like the most straightforward path to do what I need is to build out a basic web receiver (as shown at https://developers.google.com/cast/docs/web_receiver/basic), and in the call to `.start()`, specify `supportedCommands` (as shown at https://developers.google.com/cast/docs/web_receiver/core_features). Does that sound accurate? I'll experiment this weekend, thanks! – Brad Oct 23 '20 at 23:46