import glob import urllib.request import kode256 import requests import gi from gi.repository import TotemPlParser from gsp import GstreamerPlayer from tinytag import TinyTag from bureau import Bureau, add_command, add_webview, add_api class Audio(Bureau): """ The Audio Services department provides for playback and recording of sound within the office environment. """ name = "Audio Services Dept." prefix = "AU" version = 0 def __init__(self): Bureau.__init__(self) self.urldb = self.open_db("urldb") self.player = GstreamerPlayer(None) self.current_uri = None @add_command("p", "Play an album, track or a live stream.") def play(self, data): """ Initiates playback of a media reference. This could be a song or album stored on the local office or remote URLs for live playback. Currently, only supports line-out signals on the default DAC. """ self.stop() shortcode, _ = data.split(".") self.log.debug("looking up shortcode " + shortcode) pl_url = self.urldb.get(shortcode) self.log.debug(" playing url " + pl_url) pl_file, _ = urllib.request.urlretrieve(pl_url) pl_file = "file://" + pl_file parser = TotemPlParser.Parser() urls = [] def parsercb(parser, uri, metadata, urls): #TODO: would be nice to use the metadata when adding the station # and for now-playing urls.append(uri) parser.connect("entry-parsed", parsercb, urls) parser.parse(pl_file, False) for url in urls: self.player.queue(url) self.current_uri = urls[0] @add_command("stop", "Halt audio playback.") def stop(self): """ Stops all audio currently playing audio output. """ self.player.stop() @add_command("resu", "Resume playback.") def resume(self): """ Resume playback of paused audio. """ if self.current_uri: self.player.queue(self.current_uri) @add_command("next", "Play the next song.") def play_next(self): """ Skip to the next song in the playlist or album. """ #subprocess.call(["mocp", "-f"]) # TODO self.print_small("SORRY! playlist->next is not yet implemented.") @add_command("prev", "Play the previous song.") def play_prev(self): """ Skip to the previous song in the playlist or album. """ #subprocess.call(["mocp", "-r"]) # TODO self.print_small("SORRY! playlist->prev is not yet implemented.") @add_command("nowp", "Now Playing") def now_playing(self): """ Prints the currently playing song or stream on the small printer. """ out = "Now Playing: " if self.player.title: out += self.player.title + "\n" if self.player.artist: out += "by " + self.player.artist + "\n" if self.player.album: out += "from the album '" + self.player.album + "'\n" # TODO: add fields for "organization" and "location" for gstreamer-player # so we can get the station ID stuff self.log.debug("info output:" + out) self.print_small(out) @add_webview("radio", "radio") def radio_webview(self, data=None): """ Edit internet radio stations. """ #TODO: allow deletes #TODO: print out any new station #TODO: use some kind of nicer templates? ret = """