I have a HomeAssistant Server running HAOS and then a mini PC running windows. I want to be able to use SSH on the HA server to send a command to the mini PC to open up my network camera stream on VLC.
I can successfully ssh into the mini pc from the HA server. I set it up so no password is needed; it just goes right in.
I can also successfully open up the Network Stream on VLC via a command in the Mini PC's powershell:
start vlc "rtsp://admin:admin@ip_address:554/cam/realmonitor?channel=1&subtype=1"
However, combining those is where I'm getting the issue. I run the below command in the HA terminal and nothing happens (I don't get any errors in the log either):
ssh user@ip_address 'start vlc "rtsp://admin:admin@ip_address:554/cam/realmonitor?channel=1&subtype=1"'
Not sure if my formatting is off or if this is just simply not possible. Any suggestions?