openlp/openlp/plugins/media/lib/mediaitem.py

231 lines
10 KiB
Python
Raw Normal View History

2009-05-15 05:15:53 +00:00
# -*- coding: utf-8 -*-
# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4
###############################################################################
# OpenLP - Open Source Lyrics Projection #
# --------------------------------------------------------------------------- #
2010-12-26 11:04:47 +00:00
# Copyright (c) 2008-2011 Raoul Snyman #
2011-05-26 16:25:54 +00:00
# Portions copyright (c) 2008-2011 Tim Bentley, Gerald Britton, Jonathan #
# Corwin, Michael Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, #
2011-05-26 17:11:22 +00:00
# Armin Köhler, Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias #
2011-06-12 16:02:52 +00:00
# Põldaru, Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, #
2011-06-12 15:41:01 +00:00
# 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 #
###############################################################################
2009-05-15 05:15:53 +00:00
2011-03-17 18:40:21 +00:00
from datetime import datetime
2009-05-15 05:15:53 +00:00
import logging
import os
2011-05-26 04:48:13 +00:00
import locale
2009-05-15 05:15:53 +00:00
from PyQt4 import QtCore, QtGui
2011-02-10 18:38:03 +00:00
from openlp.core.lib import MediaManagerItem, build_icon, ItemCapabilities, \
2011-02-14 16:08:17 +00:00
SettingsManager, translate, check_item_selected, Receiver
2011-02-10 00:36:00 +00:00
from openlp.core.lib.ui import UiStrings, critical_error_message_box
2011-02-14 17:54:09 +00:00
from PyQt4.phonon import Phonon
2010-02-27 09:55:44 +00:00
log = logging.getLogger(__name__)
2011-03-24 19:04:02 +00:00
2009-05-15 05:15:53 +00:00
class MediaMediaItem(MediaManagerItem):
"""
This is the custom media manager item for Media Slides.
2009-05-15 05:15:53 +00:00
"""
2010-02-27 09:55:44 +00:00
log.info(u'%s MediaMediaItem loaded', __name__)
2009-05-15 05:15:53 +00:00
2010-09-15 17:55:27 +00:00
def __init__(self, parent, plugin, icon):
self.IconPath = u'images/image'
2010-04-30 16:30:25 +00:00
self.background = False
2010-04-27 16:27:57 +00:00
self.PreviewFunction = QtGui.QPixmap(
u':/media/media_video.png').toImage()
2011-05-28 09:53:37 +00:00
MediaManagerItem.__init__(self, parent, plugin, icon)
2010-04-06 19:16:14 +00:00
self.singleServiceItem = False
self.hasSearch = True
2011-04-29 11:21:14 +00:00
self.mediaObject = None
QtCore.QObject.connect(Receiver.get_receiver(),
QtCore.SIGNAL(u'video_background_replaced'),
self.videobackgroundReplaced)
2011-04-29 16:41:26 +00:00
QtCore.QObject.connect(Receiver.get_receiver(),
QtCore.SIGNAL(u'openlp_phonon_creation'),
self.createPhonon)
2009-05-15 05:15:53 +00:00
2009-10-31 16:17:26 +00:00
def retranslateUi(self):
2011-02-17 02:33:12 +00:00
self.onNewPrompt = translate('MediaPlugin.MediaItem', 'Select Media')
self.onNewFileMasks = unicode(translate('MediaPlugin.MediaItem',
'Videos (%s);;Audio (%s);;%s (*)')) % (
2011-05-28 09:53:37 +00:00
u' '.join(self.plugin.video_extensions_list),
u' '.join(self.plugin.audio_extensions_list), UiStrings().AllFiles)
self.replaceAction.setText(UiStrings().ReplaceBG)
self.replaceAction.setToolTip(UiStrings().ReplaceLiveBG)
self.resetAction.setText(UiStrings().ResetBG)
self.resetAction.setToolTip(UiStrings().ResetLiveBG)
2009-09-26 09:11:39 +00:00
def requiredIcons(self):
MediaManagerItem.requiredIcons(self)
self.hasFileIcon = True
self.hasNewIcon = False
self.hasEditIcon = False
2010-06-30 16:30:25 +00:00
def addListViewToToolBar(self):
MediaManagerItem.addListViewToToolBar(self)
self.listView.addAction(self.replaceAction)
2010-04-30 16:30:25 +00:00
def addEndHeaderBar(self):
2010-12-29 09:14:13 +00:00
# Replace backgrounds do not work at present so remove functionality.
self.replaceAction = self.addToolbarButton(u'', u'',
u':/slides/slide_blank.png', self.onReplaceClick, False)
self.resetAction = self.addToolbarButton(u'', u'',
u':/system/system_close.png', self.onResetClick, False)
self.resetAction.setVisible(False)
2010-04-30 16:30:25 +00:00
def onResetClick(self):
"""
Called to reset the Live backgound with the media selected,
"""
self.resetAction.setVisible(False)
2011-05-28 09:53:37 +00:00
self.plugin.liveController.display.resetVideo()
2010-07-02 18:21:45 +00:00
def videobackgroundReplaced(self):
"""
Triggered by main display on change of serviceitem
"""
self.resetAction.setVisible(False)
def onReplaceClick(self):
"""
Called to replace Live backgound with the media selected.
"""
2010-07-07 16:03:30 +00:00
if check_item_selected(self.listView,
translate('MediaPlugin.MediaItem',
'You must select a media file to replace the background with.')):
2010-07-07 16:03:30 +00:00
item = self.listView.currentItem()
2010-06-30 17:05:12 +00:00
filename = unicode(item.data(QtCore.Qt.UserRole).toString())
if os.path.exists(filename):
(path, name) = os.path.split(filename)
if self.plugin.liveController.display.video(filename, 0, True):
self.resetAction.setVisible(True)
else:
critical_error_message_box(UiStrings().LiveBGError,
translate('MediaPlugin.MediaItem',
'There was no display item to amend.'))
else:
critical_error_message_box(UiStrings().LiveBGError,
2011-02-16 03:06:34 +00:00
unicode(translate('MediaPlugin.MediaItem',
'There was a problem replacing your background, '
'the media file "%s" no longer exists.')) % filename)
2010-04-30 16:30:25 +00:00
def generateSlideData(self, service_item, item=None, xmlVersion=False):
2010-04-05 07:22:21 +00:00
if item is None:
2010-07-07 16:03:30 +00:00
item = self.listView.currentItem()
2010-04-05 07:22:21 +00:00
if item is None:
return False
filename = unicode(item.data(QtCore.Qt.UserRole).toString())
if not os.path.exists(filename):
# File is no longer present
critical_error_message_box(
2011-01-15 19:24:50 +00:00
translate('MediaPlugin.MediaItem', 'Missing Media File'),
unicode(translate('MediaPlugin.MediaItem',
'The file %s no longer exists.')) % filename)
return False
self.mediaObject.stop()
self.mediaObject.clearQueue()
self.mediaObject.setCurrentSource(Phonon.MediaSource(filename))
if not self.mediaStateWait(Phonon.StoppedState):
critical_error_message_box(UiStrings().UnsupportedFile,
UiStrings().UnsupportedFile)
return False
# File too big for processing
if os.path.getsize(filename) <= 52428800: # 50MiB
self.mediaObject.play()
if not self.mediaStateWait(Phonon.PlayingState) \
or self.mediaObject.currentSource().type() \
== Phonon.MediaSource.Invalid:
2011-03-19 22:52:56 +00:00
self.mediaObject.stop()
critical_error_message_box(UiStrings().UnsupportedFile,
UiStrings().UnsupportedFile)
return False
self.mediaObject.stop()
service_item.media_length = self.mediaObject.totalTime() / 1000
service_item.add_capability(
ItemCapabilities.AllowsVariableStartTime)
service_item.title = unicode(self.plugin.nameStrings[u'singular'])
service_item.add_capability(ItemCapabilities.RequiresMedia)
# force a non-existent theme
service_item.theme = -1
frame = u':/media/image_clapperboard.png'
(path, name) = os.path.split(filename)
service_item.add_from_command(path, name, frame)
return True
def mediaStateWait(self, mediaState):
"""
Wait for the video to change its state
2011-03-24 19:04:02 +00:00
Wait no longer than 5 seconds.
"""
start = datetime.now()
while self.mediaObject.state() != mediaState:
if self.mediaObject.state() == Phonon.ErrorState:
return False
Receiver.send_message(u'openlp_process_events')
if (datetime.now() - start).seconds > 5:
return False
return True
2011-03-24 19:04:02 +00:00
def initialise(self):
self.listView.clear()
2010-07-07 16:03:30 +00:00
self.listView.setIconSize(QtCore.QSize(88, 50))
2011-06-12 13:01:46 +00:00
self.loadList(SettingsManager.load_list(self.settingsSection, u'media'))
def onDeleteClick(self):
"""
Remove a media item from the list
"""
2010-07-07 16:03:30 +00:00
if check_item_selected(self.listView, translate('MediaPlugin.MediaItem',
'You must select a media file to delete.')):
2010-07-07 16:03:30 +00:00
row_list = [item.row() for item in self.listView.selectedIndexes()]
row_list.sort(reverse=True)
for row in row_list:
2010-07-07 16:03:30 +00:00
self.listView.takeItem(row)
2010-06-28 20:00:35 +00:00
SettingsManager.set_list(self.settingsSection,
2011-06-12 13:01:46 +00:00
u'media', self.getFileList())
def loadList(self, files):
2011-05-26 04:48:13 +00:00
# Sort the themes by its filename considering language specific
# characters. lower() is needed for windows!
files.sort(cmp=locale.strcoll,
2011-05-26 04:48:13 +00:00
key=lambda filename: os.path.split(unicode(filename))[1].lower())
for file in files:
2010-05-27 14:41:47 +00:00
filename = os.path.split(unicode(file))[1]
item_name = QtGui.QListWidgetItem(filename)
img = QtGui.QPixmap(u':/media/media_video.png').toImage()
item_name.setIcon(build_icon(img))
item_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(file))
2011-04-29 11:21:14 +00:00
self.listView.addItem(item_name)
2011-04-29 16:41:26 +00:00
def createPhonon(self):
2011-04-30 05:43:41 +00:00
log.debug(u'CreatePhonon')
2011-04-29 16:41:26 +00:00
if not self.mediaObject:
self.mediaObject = Phonon.MediaObject(self)
def search(self, string):
2011-06-12 13:01:46 +00:00
files = SettingsManager.load_list(self.settingsSection, u'media')
results = []
string = string.lower()
for file in files:
filename = os.path.split(unicode(file))[1]
if filename.lower().find(string) > -1:
results.append([file, filename])
return results