CastV2inPHP
CastV2inPHP copied to clipboard
Chromecast CastV2 implementation in PHP - control Chromecasts
Here is an example of how to stream a MP3 to your Google Home: ```php require_once("Chromecast.php"); // Use the local IP of your Google Home, and the port is 8009...
"urn:x-cast:com.google.cast.media" supports including images with the message: https://developers.google.com/cast/docs/reference/messages#GenericMediaMetadata It should be added here: https://github.com/ChrisRidings/CastV2inPHP/blob/master/CCDefaultMediaPlayer.php#L15 But I'm not quite sure on the correct syntax... Would it be something like this? $json...
Would it be possible to screen a Desktop or web page perhaps in linux? I've done this with an AppleTV open source implementation before.
Tracing into the problem with the DMP, it looks like the library never gets past `Chromecast->launch()`. The `LAUNCH` message is sent but the response does not include a transportId. This...