forked from openlp/openlp
126 lines
6.1 KiB
Python
126 lines
6.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
|
|
|
|
###############################################################################
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
# --------------------------------------------------------------------------- #
|
|
# Copyright (c) 2008-2011 Raoul Snyman #
|
|
# Portions copyright (c) 2008-2011 Tim Bentley, Gerald Britton, Jonathan #
|
|
# Corwin, Michael Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, #
|
|
# Armin Köhler, Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias #
|
|
# Põldaru, Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, #
|
|
# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund #
|
|
# --------------------------------------------------------------------------- #
|
|
# This program is free software; you can redistribute it and/or modify it #
|
|
# under the terms of the GNU General Public License as published by the Free #
|
|
# Software Foundation; version 2 of the License. #
|
|
# #
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT #
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or #
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for #
|
|
# more details. #
|
|
# #
|
|
# You should have received a copy of the GNU General Public License along #
|
|
# with this program; if not, write to the Free Software Foundation, Inc., 59 #
|
|
# Temple Place, Suite 330, Boston, MA 02111-1307 USA #
|
|
###############################################################################
|
|
|
|
import logging
|
|
import mimetypes
|
|
|
|
from PyQt4.phonon import Phonon
|
|
|
|
from openlp.core.lib import Plugin, StringContent, build_icon, translate
|
|
from openlp.plugins.media.lib import MediaMediaItem, MediaTab
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
class MediaPlugin(Plugin):
|
|
log.info(u'%s MediaPlugin loaded', __name__)
|
|
|
|
def __init__(self, plugin_helpers):
|
|
Plugin.__init__(self, u'media', plugin_helpers,
|
|
MediaMediaItem, MediaTab)
|
|
self.weight = -6
|
|
self.icon_path = u':/plugins/plugin_media.png'
|
|
self.icon = build_icon(self.icon_path)
|
|
# passed with drag and drop messages
|
|
self.dnd_id = u'Media'
|
|
self.additional_extensions = {
|
|
u'audio/ac3': [u'.ac3'],
|
|
u'audio/flac': [u'.flac'],
|
|
u'audio/x-m4a': [u'.m4a'],
|
|
u'audio/midi': [u'.mid', u'.midi'],
|
|
u'audio/x-mp3': [u'.mp3'],
|
|
u'audio/mpeg': [u'.mp3', u'.mp2', u'.mpga', u'.mpega', u'.m4a'],
|
|
u'audio/qcelp': [u'.qcp'],
|
|
u'audio/x-wma': [u'.wma'],
|
|
u'audio/x-ms-wma': [u'.wma'],
|
|
u'video/x-flv': [u'.flv'],
|
|
u'video/x-matroska': [u'.mpv', u'.mkv'],
|
|
u'video/x-wmv': [u'.wmv'],
|
|
u'video/x-ms-wmv': [u'.wmv']}
|
|
self.audio_extensions_list = []
|
|
self.video_extensions_list = []
|
|
mimetypes.init()
|
|
for mimetype in Phonon.BackendCapabilities.availableMimeTypes():
|
|
mimetype = unicode(mimetype)
|
|
if mimetype.startswith(u'audio/'):
|
|
self._addToList(self.audio_extensions_list, mimetype)
|
|
elif mimetype.startswith(u'video/'):
|
|
self._addToList(self.video_extensions_list, mimetype)
|
|
|
|
def _addToList(self, list, mimetype):
|
|
# Add all extensions which mimetypes provides us for supported types.
|
|
extensions = mimetypes.guess_all_extensions(unicode(mimetype))
|
|
for extension in extensions:
|
|
ext = u'*%s' % extension
|
|
if ext not in list:
|
|
list.append(ext)
|
|
self.serviceManager.supportedSuffixes(extension[1:])
|
|
log.info(u'MediaPlugin: %s extensions: %s' % (mimetype,
|
|
u' '.join(extensions)))
|
|
# Add extensions for this mimetype from self.additional_extensions.
|
|
# This hack clears mimetypes' and operating system's shortcomings
|
|
# by providing possibly missing extensions.
|
|
if mimetype in self.additional_extensions.keys():
|
|
for extension in self.additional_extensions[mimetype]:
|
|
ext = u'*%s' % extension
|
|
if ext not in list:
|
|
list.append(ext)
|
|
self.serviceManager.supportedSuffixes(extension[1:])
|
|
log.info(u'MediaPlugin: %s additional extensions: %s' % (mimetype,
|
|
u' '.join(self.additional_extensions[mimetype])))
|
|
|
|
def about(self):
|
|
about_text = translate('MediaPlugin', '<strong>Media Plugin</strong>'
|
|
'<br />The media plugin provides playback of audio and video.')
|
|
return about_text
|
|
|
|
def setPluginTextStrings(self):
|
|
"""
|
|
Called to define all translatable texts of the plugin
|
|
"""
|
|
## Name PluginList ##
|
|
self.textStrings[StringContent.Name] = {
|
|
u'singular': translate('MediaPlugin', 'Media', 'name singular'),
|
|
u'plural': translate('MediaPlugin', 'Media', 'name plural')
|
|
}
|
|
## Name for MediaDockManager, SettingsManager ##
|
|
self.textStrings[StringContent.VisibleName] = {
|
|
u'title': translate('MediaPlugin', 'Media', 'container title')
|
|
}
|
|
# Middle Header Bar
|
|
tooltips = {
|
|
u'load': translate('MediaPlugin', 'Load new media.'),
|
|
u'import': u'',
|
|
u'new': translate('MediaPlugin', 'Add new media.'),
|
|
u'edit': translate('MediaPlugin', 'Edit the selected media.'),
|
|
u'delete': translate('MediaPlugin', 'Delete the selected media.'),
|
|
u'preview': translate('MediaPlugin', 'Preview the selected media.'),
|
|
u'live': translate('MediaPlugin', 'Send the selected media live.'),
|
|
u'service': translate('MediaPlugin',
|
|
'Add the selected media to the service.')
|
|
}
|
|
self.setPluginUiTextStrings(tooltips)
|