From 9813e45bde60b3511c5b51740ad40c89eef87c83 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 5 Aug 2012 19:17:52 +0100 Subject: [PATCH] VLC does support wva --- openlp/core/ui/media/mediacontroller.py | 2 +- openlp/core/ui/media/vlcplayer.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/openlp/core/ui/media/mediacontroller.py b/openlp/core/ui/media/mediacontroller.py index 937c2a3e8..94c148912 100644 --- a/openlp/core/ui/media/mediacontroller.py +++ b/openlp/core/ui/media/mediacontroller.py @@ -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): diff --git a/openlp/core/ui/media/vlcplayer.py b/openlp/core/ui/media/vlcplayer.py index 27dd06a62..bf1e7a920 100644 --- a/openlp/core/ui/media/vlcplayer.py +++ b/openlp/core/ui/media/vlcplayer.py @@ -66,6 +66,7 @@ if VLC_AVAILABLE: AUDIO_EXT = [ u'*.mp3' , u'*.wav' + , u'*.wma' , u'*.ogg' ]