´wp run´ not working?
juanRabaa opened this issue · 3 comments
I'm trying to run the example from the README, but its not working. MPV works fine on its own.
With wp run mpv args videoPath
, nothing seems to happen. If a do mpv args videoPath
instead, MPV starts correctly, and then I can run wp add --wait --class mpv
.
I followed the installation intructions. Don't know if I can give you more info, but let me know. Thanks!
Are you trying to run wp run mpv args videoPath
as written, or are you substituting args
and videoPath
with your arguments and a path to a video file on your system?
Are you trying to run
wp run mpv args videoPath
as written, or are you substitutingargs
andvideoPath
with your arguments and a path to a video file on your system?
Im replacing those values, should have been more clear sorry. Im running the exact example from the git.
@echo off
wp run mpv ^
--player-operation-mode=pseudo-gui ^
--force-window=yes ^
--terminal=no ^
--no-audio ^
--loop=inf ^
--loop-playlist=inf ^
--input-ipc-server=\\.\pipe\mpvsocket ^
%USERPROFILE%\Videos\wallpapers
wp mv --wait --class mpv -x 1920
wp add --wait --fullscreen --class mpv
Running that exact script worked on my machine (with a different path to my videos).
Make sure that the directory %USERPROFILE%\Videos\wallpapers exists on your machine and has video files in it.
(mp4's worked in my case) Also remove the @echo off
to see where/if it's getting stuck