From a299df609a97947e767e721e0623442b64705ac9 Mon Sep 17 00:00:00 2001 From: "J. Alexander Treuman" Date: Mon, 13 Dec 2010 17:53:48 -0500 Subject: [PATCH] adding mixrampdb and mixrampdelay commands --- doc/commands.txt | 2 ++ mpd.py | 2 ++ 2 files changed, 4 insertions(+) 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, -- 2.39.2