python-mpd2 icon indicating copy to clipboard operation
python-mpd2 copied to clipboard

Python library which provides a client interface for the Music Player Daemon.

Results 30 python-mpd2 issues
Sort by recently updated
recently updated
newest added

It Would Be Nice If (ie. wishlist-level issue here) mpd commands came with argument and doc strings; mock example in ipython3 syntax: ```ipython In [5]: mpc.albumart? Signature: mpc.albumart(url: str) Docstring:...

Is the new “albumart” command (see [The music database](https://www.musicpd.org/doc/html/protocol.html#the-music-database)) already supported or are there any plans to do so?

I try to call a song from playlist by using the function MPDClient.playid() but it throws an error: ` File "/usr/local/lib/python3.8/dist-packages/mpd/base.py", line 527, in _read_line raise CommandError(error) mpd.base.CommandError: [50@0] {}...

These two commands are essential when issuing multiple commands (like adding 2000 sogs to a playlist). But I was not able to find any mention of them in the documentation...

I'm fairly new to python and want to code an app that will control mpd via keyboard (and later GPIO) input on a Raspberry Pi 3. I got the code...

The documentation for commands() states that it returns "commands the current user has access to." However, after initiating an MPDClient object, I get several commands which have not been bound...

Hi, I'm trying to use send_ and fetch_ to access a huge music library. If I use ncmpccpp I can easily and quickly list and browse my artists list. However,...

Hi, i found a strange problem, here below is the info: OS: Windows 10 Pro MPD: 0.20.16 https://www.musicpd.org/download/win32/0.20.16/mpd.exe python: 2.7.14 64bit python-mpd2: 0.5.5 ``` handler = mpd.MPDClient(use_unicode=True) handler.timeout = 10...

The grouping version of count command behave unexpectedly IMHO: ``` python >>> cli = mpd.MPDClient() >>> cli.connect(host='/run/mpd/socket', port=42) >>> cli.count('group', 'albumartist') {'albumartist': ['art00', 'art01',…], 'playtime': ['123', '321', …], 'songs': ['1',...

enhancement