VLC does support wva

This commit is contained in:
Tim Bentley 2012-08-05 19:17:52 +01:00
parent 5c6b61c819
commit 9813e45bde
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'
]