Browse Source

Misc fixes (#53)

* Fix a Python3 compatibility

* Small fixes

* [requirements] bump to youtube-dl 2017.8.23
pull/55/head
Alex 8 years ago
committed by Andrei Zbikowski
parent
commit
c00befeb10
  1. 2
      disco/bot/parser.py
  2. 2
      disco/voice/playable.py
  3. 7
      disco/voice/player.py
  4. 2
      disco/voice/queue.py
  5. 2
      setup.py

2
disco/bot/parser.py

@ -11,7 +11,7 @@ BOOL_OPTS = {'yes': True, 'no': False, 'true': True, 'False': False, '1': True,
TYPE_MAP = { TYPE_MAP = {
'str': lambda ctx, data: str(data) if six.PY3 else unicode(data), 'str': lambda ctx, data: str(data) if six.PY3 else unicode(data),
'int': lambda ctx, data: int(data), 'int': lambda ctx, data: int(data),
'float': lambda ctx, data: int(data), 'float': lambda ctx, data: float(data),
'snowflake': lambda ctx, data: int(data), 'snowflake': lambda ctx, data: int(data),
} }

2
disco/voice/playable.py

@ -163,7 +163,7 @@ class YoutubeDLInput(FFmpegInput):
if self._url: if self._url:
obj = ydl.extract_info(self._url, download=False, process=False) obj = ydl.extract_info(self._url, download=False, process=False)
if 'entries' in obj: if 'entries' in obj:
self._ie_info = obj['entries'][0] self._ie_info = list(obj['entries'])[0]
else: else:
self._ie_info = obj self._ie_info = obj

7
disco/voice/player.py

@ -60,9 +60,10 @@ class Player(object):
self.events.emit(self.Events.PAUSE_PLAY) self.events.emit(self.Events.PAUSE_PLAY)
def resume(self): def resume(self):
self.paused.set() if self.paused:
self.paused = None self.paused.set()
self.events.emit(self.Events.RESUME_PLAY) self.paused = None
self.events.emit(self.Events.RESUME_PLAY)
def play(self, item): def play(self, item):
# Grab the first frame before we start anything else, sometimes playables # Grab the first frame before we start anything else, sometimes playables

2
disco/voice/queue.py

@ -48,3 +48,5 @@ class PlayableQueue(BaseQueue):
def __nonzero__(self): def __nonzero__(self):
return True return True
__bool__ = __nonzero__

2
setup.py

@ -13,7 +13,7 @@ extras_require = {
'voice': ['pynacl==1.1.2'], 'voice': ['pynacl==1.1.2'],
'http': ['flask==0.12.2'], 'http': ['flask==0.12.2'],
'yaml': ['pyyaml==3.12'], 'yaml': ['pyyaml==3.12'],
'music': ['youtube_dl==2017.4.26'], 'music': ['youtube_dl>=2017.8.23'],
'performance': ['erlpack==0.3.2', 'ujson==1.35'], 'performance': ['erlpack==0.3.2', 'ujson==1.35'],
'sharding': ['gipc==0.6.0'], 'sharding': ['gipc==0.6.0'],
'docs': ['biblio==0.0.4'], 'docs': ['biblio==0.0.4'],

Loading…
Cancel
Save