aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2017-06-18 19:57:50 -0700
committerMike Crute <mike@crute.us>2017-06-18 19:57:50 -0700
commit998f6fd2fd89219d4f75c38f8fe77dc3866c2276 (patch)
tree2495f0d12ac749d347abc2989c8af0c26c094cd8
parent30467005d2acb210f2bdf00488cb410b9a9258d1 (diff)
downloadpydora-998f6fd2fd89219d4f75c38f8fe77dc3866c2276.tar.bz2
pydora-998f6fd2fd89219d4f75c38f8fe77dc3866c2276.tar.xz
pydora-998f6fd2fd89219d4f75c38f8fe77dc3866c2276.zip
Rename mpg123 module
-rw-r--r--pydora/audio_backend.py (renamed from pydora/mpg123.py)0
-rw-r--r--[-rwxr-xr-x]pydora/player.py6
2 files changed, 3 insertions, 3 deletions
diff --git a/pydora/mpg123.py b/pydora/audio_backend.py
index 9599771..9599771 100644
--- a/pydora/mpg123.py
+++ b/pydora/audio_backend.py
diff --git a/pydora/player.py b/pydora/player.py
index 32853d8..653fb35 100755..100644
--- a/pydora/player.py
+++ b/pydora/player.py
@@ -3,7 +3,7 @@
3Sample Barebones Pandora Player 3Sample Barebones Pandora Player
4 4
5This is a very simple Pandora player that streams music from Pandora. It 5This is a very simple Pandora player that streams music from Pandora. It
6requires mpg123 to function. No songs are downloaded, they are streamed 6requires mpg123 or VLC to function. No songs are downloaded, they are streamed
7directly from Pandora's servers. 7directly from Pandora's servers.
8""" 8"""
9from __future__ import print_function 9from __future__ import print_function
@@ -13,8 +13,8 @@ import sys
13from pandora import clientbuilder 13from pandora import clientbuilder
14 14
15from .utils import Colors, Screen 15from .utils import Colors, Screen
16from .mpg123 import MPG123Player, VLCPlayer 16from .audio_backend import MPG123Player, VLCPlayer
17from .mpg123 import UnsupportedEncoding, PlayerUnusable 17from .audio_backend import UnsupportedEncoding, PlayerUnusable
18 18
19 19
20class PlayerCallbacks(object): 20class PlayerCallbacks(object):