From: J. Alexander Treuman Date: Mon, 13 Dec 2010 22:53:48 +0000 (-0500) Subject: adding mixrampdb and mixrampdelay commands X-Git-Tag: v0.3.0~7 X-Git-Url: http://git.kaliko.me/?p=python-musicpd.git;a=commitdiff_plain;h=a299df609a97947e767e721e0623442b64705ac9 adding mixrampdb and mixrampdelay commands --- diff --git a/doc/commands.txt b/doc/commands.txt index 278f859..969990c 100644 --- a/doc/commands.txt +++ b/doc/commands.txt @@ -9,6 +9,8 @@ stats -> fetch_object == Playback Option Commands consume -> fetch_nothing crossfade -> fetch_nothing +mixrampdb -> fetch_nothing +mixrampdelay -> fetch_nothing random -> fetch_nothing repeat -> fetch_nothing setvol -> fetch_nothing diff --git a/mpd.py b/mpd.py index 9494b0e..d40b5fa 100644 --- a/mpd.py +++ b/mpd.py @@ -67,6 +67,8 @@ class MPDClient(object): # Playback Option Commands "consume": self._fetch_nothing, "crossfade": self._fetch_nothing, + "mixrampdb": self._fetch_nothing, + "mixrampdelay": self._fetch_nothing, "random": self._fetch_nothing, "repeat": self._fetch_nothing, "setvol": self._fetch_nothing,