aboutsummaryrefslogtreecommitdiff
path: root/pydora/audio_backend.py
diff options
context:
space:
mode:
Diffstat (limited to 'pydora/audio_backend.py')
-rw-r--r--pydora/audio_backend.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/pydora/audio_backend.py b/pydora/audio_backend.py
index 949301e..d39bb9b 100644
--- a/pydora/audio_backend.py
+++ b/pydora/audio_backend.py
@@ -232,6 +232,12 @@ class MPG123Player(BasePlayer):
232 def _player_stopped(self, value): 232 def _player_stopped(self, value):
233 return value.startswith(b"@P") and value.decode("utf-8")[3] == "0" 233 return value.startswith(b"@P") and value.decode("utf-8")[3] == "0"
234 234
235 def raise_volume(self):
236 return
237
238 def lower_volume(self):
239 return
240
235 241
236class VLCPlayer(BasePlayer): 242class VLCPlayer(BasePlayer):
237 243