I'm trying to run a bat from Linux via ssh to open a video in the mpv player on Windows 10:
video.bat
u/echo off
mpv c:\video.mp4
pause
If I run this .bat from the windows machine itself it runs it fine and opens the mpv player window and shows the video, but when I try to run it via ssh from the linux machine it doesn't open any windows and just shows the sound of the video. In the console it shows this message:
[vo/gpu/d3d11] Failed to create swapchain: A resource is not available at the time of the call, but may be later. (0x887a0022)
That could be happening?