diff --git a/platypush/plugins/media/mplayer.py b/platypush/plugins/media/mplayer.py index 05afe608..a6018ec9 100644 --- a/platypush/plugins/media/mplayer.py +++ b/platypush/plugins/media/mplayer.py @@ -253,12 +253,12 @@ class MediaMplayerPlugin(MediaPlugin): self._exec('quit') @action - def voldown(self, step=10.0): + def voldown(self, step=100.0): """ Volume down by (default: 10)% """ return self.step_property('volume', -step) @action - def volup(self, step=10.0): + def volup(self, step=100.0): """ Volume up by (default: 10)% """ return self.step_property('volume', step)