Chromecast binding stream URI

I am running 2.5.3 on a pi 3. My setup is working great for years. Trying to add the chromecast binding and having a little trouble with setup. I can connect to the chromcast and initiate a URI, but I only get some flickers and 1 icon on the screen of the TV. I never get video.

Any tips on things to try is appreciated. Here is my things file, items, and rule. I have no errors in the openhab.log and I see that the rule is running based on my tv changins and my log messages to the log file. I have restarted openhab as well as cleared cache.

Things:

Thing chromecast:chromecast:FamilyRoomTV "Family Room TV" [ipAddress="192.168.1.215", port=8009]

Items:

Player TurnOnTV "Turn ON TV" { channel="chromecast:chromecast:FamilyRoomTV:control" }
String Playit "PlayIt" {channel="chromecast:chromecast:FamilyRoomTV:playuri"}
Switch Stopit "Stop it" {channel="chromecast:chromecast:FamilyRoomTV:stop"}
Switch Play "Play" 

Rules:

rule "Chromecast Playit 1"
when 
    Item Play changed
then 
    Playit.sendCommand("https://www.youtube.com/watch?v=qN2hM9haZkY")
    TurnOnTV.sendCommand("PLAY")
    logWarn("Logging Playit", Playit.state.toString)
    logWarn("Logging Play", Play.state.toString)  

end 

same here :pensive: