VLC plays wma files

bzr-revno: 2042
This commit is contained in:
Tim Bentley 2012-08-05 22:10:31 +01:00
commit 8b6c2d0024
2 changed files with 2 additions and 1 deletions

View File

@ -43,7 +43,7 @@ log = logging.getLogger(__name__)
class MediaController(object):
"""
The implementation of the Media Controller. The Media Controller adds an own
class for every Player. Currently these are QtWebkit, Phonon and planed Vlc.
class for every Player. Currently these are QtWebkit, Phonon and Vlc.
"""
def __init__(self, parent):

View File

@ -66,6 +66,7 @@ if VLC_AVAILABLE:
AUDIO_EXT = [
u'*.mp3'
, u'*.wav'
, u'*.wma'
, u'*.ogg'
]