python-mpv
python-mpv copied to clipboard
Python interface to the awesome mpv media player
**Operating System**: Windows 10 Home (1909) **Python Version**: 3.8 **MPV Version**: 0.45 ### Description Cannot find mpv-1.dll but the file is in the same directory of the script. ### Folder...
I'm not in a position to be certain whether this is a python-mpv issue or a libmpv issue, but I thought it'd be better to have you close it than...
Hi, using python 3.7 on High Sierra (mac). Have installed mpv , python-mpv and adlib, tried running the test script: import mpv player = mpv.MPV(ytdl=True) player.play('/Applications/thehandle/Japaneasy.mp4') I get no errors...
I have a program where mpv is called multiple times, like, every minute, but the previous playback is always done before a new one is started. After about 16 times...
In the "Advanced Usage" example, you talk about core reinitialization. Can this be achieved without destroying and creating a new Mpv object?
To avoid embarrassing things like #38 .
I want to use this library on my headless Raspberry Pi, which has no GUI (also I want to test the code on WSL). When I install one of the...
It seems to boil down to this: either the libmpv dylib or the python wrapper cannot establish a VO on macOS, although mpv-player can. The fact that mpv-player can do...
Hello, I installed mpv using Homebrew and tested if it is working with the command `mpv {filename}` but it doesn't work using this Python library: ``` player.play(video_file) player.wait_until_playing() // or...