music-dl/src/controller/player.py

134 lines
3.3 KiB
Python
Raw Normal View History

2018-01-24 17:43:35 -06:00
# -*- coding: utf-8 -*-
import random
import sound_lib
import logging
from sound_lib.stream import URLStream
from sound_lib.main import BassError
from sound_lib.output import Output
from pubsub import pub
from utils import RepeatingTimer
player = None
log = logging.getLogger("player")
def setup():
global player
if player == None:
Output()
player = audioPlayer()
class audioPlayer(object):
def __init__(self):
self.is_playing = False
self.stream = None
2018-01-26 12:11:14 -06:00
self.vol = 50
2018-01-24 17:43:35 -06:00
self.is_working = False
self.queue = []
self.stopped = True
2018-01-26 11:52:49 -06:00
self.queue_pos = 0
2018-01-26 12:03:07 -06:00
self.shuffle = False
2018-01-24 17:43:35 -06:00
2018-01-25 17:18:51 -06:00
def play(self, item):
2018-01-24 17:43:35 -06:00
if self.stream != None and self.stream.is_playing == True:
try:
self.stream.stop()
except BassError:
log.exception("error when stopping the file")
self.stopped = True
# Make sure there are no other sounds trying to be played.
if self.is_working == False:
self.is_working = True
2018-01-26 11:52:49 -06:00
if item.download_url == "":
item.get_download_url()
2018-01-24 17:43:35 -06:00
try:
2018-01-25 17:18:51 -06:00
self.stream = URLStream(url=item.download_url)
2018-01-26 11:52:49 -06:00
except BassError as e:
2018-01-25 17:18:51 -06:00
log.debug("Error when playing the file {0}".format(item.title,))
2018-01-26 11:52:49 -06:00
pub.sendMessage("change_status", status=_("Error playing {0}. {1}.").format(item.title, e.description))
self.stopped = True
self.is_working = False
self.next()
2018-01-24 17:43:35 -06:00
return
self.stream.volume = self.vol/100.0
self.stream.play()
2018-01-25 17:18:51 -06:00
pub.sendMessage("change_status", status=_("Playing {0}.").format(item.title))
2018-01-24 17:43:35 -06:00
self.stopped = False
self.is_working = False
2018-01-26 11:52:49 -06:00
def next(self):
if len(self.queue) > 0:
if self.shuffle:
self.queue_pos = random.randint(0, len(self.queue)-1)
else:
if self.queue_pos < len(self.queue)-1:
self.queue_pos += 1
else:
self.queue_pos = 0
self.play(self.queue[self.queue_pos])
def previous(self):
if len(self.queue) > 0:
if self.shuffle:
self.queue_pos = random.randint(0, len(self.queue)-1)
else:
if self.queue_pos > 0:
self.queue_pos -= 1
else:
self.queue_pos = len(self.queue)-1
self.play(self.queue[self.queue_pos])
2018-01-24 17:43:35 -06:00
def stop(self):
if self.stream != None and self.stream.is_playing == True:
self.stream.stop()
self.stopped = True
def pause(self):
if self.stream != None:
if self.stream.is_playing == True:
self.stream.pause()
self.stopped = True
else:
try:
self.stream.play()
self.stopped = False
except BassError:
pass
@property
def volume(self):
2018-01-25 17:18:51 -06:00
# if self.stream != None:
return self.vol
2018-01-24 17:43:35 -06:00
@volume.setter
def volume(self, vol):
if vol <= 100 and vol >= 0:
self.vol = vol
if self.stream != None:
self.stream.volume = self.vol/100.0
2018-01-26 11:52:49 -06:00
def play_all(self, list_of_items, playing=0, shuffle=False):
if list_of_items != self.queue:
self.queue = list_of_items
self.shuffle = shuffle
self.queue_pos = playing
self.play(self.queue[self.queue_pos])
if not hasattr(self, "worker"):
self.worker = RepeatingTimer(5, self.player_function)
self.worker.start()
2018-01-24 17:43:35 -06:00
def player_function(self):
if self.stream != None and self.stream.is_playing == False and self.stopped == False and len(self.stream) == self.stream.position:
if len(self.queue) == 0:
return
2018-01-26 11:52:49 -06:00
self.next()
2018-01-24 17:43:35 -06:00
def check_is_playing(self):
if self.stream == None:
return False
if self.stream != None and self.stream.is_playing == False:
return False
else:
return True