openlp/openlp/core/ui/media/webkitapi.py

384 lines
15 KiB
Python
Raw Normal View History

2011-04-18 19:50:12 +00:00
# -*- 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 #
2011-06-14 16:10:20 +00:00
# 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, #
2011-04-18 19:50:12 +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 #
###############################################################################
2011-05-21 08:18:52 +00:00
import logging
2011-05-17 19:50:00 +00:00
from PyQt4 import QtCore, QtGui, QtWebKit
2011-06-05 21:10:49 +00:00
from openlp.core.lib import OpenLPToolbar, translate
2011-07-10 21:43:07 +00:00
from openlp.core.ui.media import MediaAPI, MediaState
2011-04-18 19:50:12 +00:00
2011-05-21 08:18:52 +00:00
log = logging.getLogger(__name__)
2011-06-05 21:10:49 +00:00
class WebkitAPI(MediaAPI):
2011-04-18 19:50:12 +00:00
"""
2011-06-05 21:10:49 +00:00
Specialiced MediaAPI class
to reflect Features of the QtWebkit API
2011-04-18 19:50:12 +00:00
"""
2011-05-10 20:39:17 +00:00
2011-04-18 19:50:12 +00:00
def __init__(self, parent):
2011-06-08 13:18:05 +00:00
MediaAPI.__init__(self, parent, u'Webkit')
2011-05-10 20:39:17 +00:00
self.parent = parent
2011-05-23 19:37:44 +00:00
self.canBackground = True
self.video_extensions_list = [
u'*.3gp'
, u'*.3gpp'
, u'*.3g2'
, u'*.3gpp2'
, u'*.aac'
, u'*.flv'
, u'*.f4a'
, u'*.f4b'
, u'*.f4p'
, u'*.f4v'
, u'*.mov'
, u'*.m4a'
, u'*.m4b'
, u'*.m4p'
, u'*.m4v'
, u'*.mkv'
, u'*.mp4'
, u'*.mp3'
, u'*.ogg'
, u'*.ogv'
, u'*.webm'
2011-05-24 20:03:57 +00:00
, u'*.swf', u'*.mpg', u'*.wmv', u'*.mpeg', u'*.avi'
2011-05-23 19:37:44 +00:00
]
2011-04-18 19:50:12 +00:00
2011-06-05 21:10:49 +00:00
def setup_controls(self, controller, control_panel):
# no special controls
pass
2011-06-14 16:10:20 +00:00
def getDisplayCss(self):
2011-06-08 13:18:05 +00:00
"""
Add css style sheets to htmlbuilder
"""
css = u'''
2011-06-14 16:10:20 +00:00
#video1 {
z-index:3;
}
#video2 {
z-index:3;
}
#flash {
z-index:4;
}
2011-06-08 13:18:05 +00:00
'''
return css
2011-06-14 16:10:20 +00:00
def getDisplayJavascript(self):
2011-06-08 13:18:05 +00:00
"""
Add javascript functions to htmlbuilder
"""
js = u'''
var video_timer = null;
var current_video = '1';
function show_video(state, path, volume, loop, seekVal){
// Note, the preferred method for looping would be to use the
// video tag loop attribute.
// But QtWebKit doesn't support this. Neither does it support the
// onended event, hence the setInterval()
// In addition, setting the currentTime attribute to zero to restart
// the video raises an INDEX_SIZE_ERROR: DOM Exception 1
// To complicate it further, sometimes vid.currentTime stops
// slightly short of vid.duration and vid.ended is intermittent!
//
// Note, currently the background may go black between loops. Not
// desirable. Need to investigate using two <video>'s, and hiding/
// preloading one, and toggle between the two when looping.
if(current_video=='1'){
var vid = document.getElementById('video1');
var vid2 = document.getElementById('video2');
} else {
var vid = document.getElementById('video2');
var vid2 = document.getElementById('video1');
}
if(volume != null){
vid.volume = volume;
vid2.volume = volume;
}
switch(state){
case 'init':
vid.src = path;
vid2.src = path;
if(loop == null) loop = false;
vid.looping = loop;
vid2.looping = loop;
vid.load();
break;
case 'load':
vid2.style.visibility = 'hidden';
vid2.load();
break;
case 'play':
vid.play();
vid.style.visibility = 'visible';
if(vid.looping){
video_timer = setInterval(
function() {
show_video('poll');
}, 200);
}
break;
case 'pause':
if(video_timer!=null){
clearInterval(video_timer);
video_timer = null;
}
vid.pause();
break;
case 'stop':
show_video('pause');
vid.style.visibility = 'hidden';
break;
case 'poll':
if(vid.ended||vid.currentTime+0.2>vid.duration)
show_video('swap');
break;
case 'swap':
show_video('pause');
if(current_video=='1')
current_video = '2';
else
current_video = '1';
show_video('play');
show_video('load');
break;
case 'close':
show_video('stop');
vid.src = '';
vid2.src = '';
break;
case 'length':
return vid.duration;
case 'currentTime':
return vid.currentTime;
case 'seek':
2011-07-18 21:25:10 +00:00
// doesnt work currently
2011-06-08 13:18:05 +00:00
//vid.currentTime = seekVal;
break;
}
}
function getFlashMovieObject(movieName)
{
if (window.document[movieName])
{
return window.document[movieName];
}
if (document.embeds && document.embeds[movieName])
return document.embeds[movieName];
}
// http://www.adobe.com/support/flash/publishexport/scriptingwithflash/scriptingwithflash_03.html
function show_flash(state, path, volume, seekVal){
var text = document.getElementById('flash');
var flashMovie = getFlashMovieObject("OpenLPFlashMovie");
var src = "src = 'file:///" + path + "'";
var view_parm = " wmode='opaque'" +
" width='" + window.innerWidth + "'" +
" height='" + window.innerHeight + "'";
var swf_parm = " name='OpenLPFlashMovie'" +
" autostart='true' loop='false' play='true'" +
" hidden='false' swliveconnect='true' allowscriptaccess='always'" +
" volume='" + volume + "'";
switch(state){
case 'load':
text.innerHTML = "<embed " + src + view_parm + swf_parm + "/>";
flashMovie = getFlashMovieObject("OpenLPFlashMovie");
text.style.visibility = 'visible';
flashMovie.Play();
break;
case 'play':
text.style.visibility = 'visible';
flashMovie.Play();
break;
case 'pause':
flashMovie.StopPlay();
text.style.visibility = 'hidden';
break;
case 'stop':
flashMovie.StopPlay();
text.style.visibility = 'hidden';
tempHtml = text.innerHTML;
text.innerHTML = '';
text.innerHTML = tempHtml;
break;
case 'close':
flashMovie.StopPlay();
text.style.visibility = 'hidden';
text.innerHTML = '';
break;
case 'length':
return flashMovie.TotalFrames();
case 'currentTime':
return flashMovie.CurrentFrame();
case 'seek':
// flashMovie.GotoFrame(seekVal);
break;
}
}
'''
return js
2011-06-14 16:10:20 +00:00
def getDisplayHtml(self):
2011-06-08 13:18:05 +00:00
"""
Add html code to htmlbuilder
"""
html = u'''
<video id="video1" class="size" style="visibility:hidden" autobuffer preload>
</video>
<video id="video2" class="size" style="visibility:hidden" autobuffer preload>
</video>
<div id="flash" class="size" style="visibility:hidden"></div>
'''
return html
2011-06-05 21:10:49 +00:00
def setup(self, display):
2011-06-08 13:18:05 +00:00
display.webView.resize(display.size())
2011-05-17 19:50:00 +00:00
display.webView.raise_()
self.hasOwnWidget = False
2011-07-10 21:43:07 +00:00
#display.webView.hide()
2011-05-17 19:50:00 +00:00
2011-06-08 13:18:05 +00:00
def check_available(self):
2011-05-17 19:50:00 +00:00
return True
2011-06-05 21:10:49 +00:00
def load(self, display):
2011-05-21 08:18:52 +00:00
log.debug(u'load vid in Webkit Controller')
2011-06-06 19:12:14 +00:00
controller = display.controller
2011-06-05 21:10:49 +00:00
volume = controller.media_info.volume
vol = float(volume) / float(100)
path = controller.media_info.file_info.absoluteFilePath()
if controller.media_info.is_background:
2011-05-24 20:03:57 +00:00
loop = u'true'
else:
loop = u'false'
2011-04-18 19:50:12 +00:00
display.webView.setVisible(True)
2011-06-05 21:10:49 +00:00
if controller.media_info.file_info.suffix() == u'swf':
controller.media_info.isFlash = True
2011-04-18 19:50:12 +00:00
js = u'show_flash("load","%s");' % \
(path.replace(u'\\', u'\\\\'))
else:
2011-05-24 20:03:57 +00:00
js = u'show_video("init", "%s", %s, %s);' % \
(path.replace(u'\\', u'\\\\'), str(vol), loop)
2011-04-18 19:50:12 +00:00
display.frame.evaluateJavaScript(js)
2011-05-21 08:18:52 +00:00
return True
2011-05-10 20:39:17 +00:00
2011-06-05 21:10:49 +00:00
def resize(self, display):
2011-06-06 19:12:14 +00:00
controller = display.controller
display.webView.resize(display.size())
2011-04-18 19:50:12 +00:00
def play(self, display):
2011-06-06 19:12:14 +00:00
controller = display.controller
2011-05-24 20:03:57 +00:00
display.webLoaded = True
2011-07-25 20:56:39 +00:00
length = 0
2011-05-17 19:50:00 +00:00
self.set_visible(display, True)
2011-06-05 21:10:49 +00:00
if controller.media_info.isFlash:
display.frame.evaluateJavaScript(u'show_flash("play");')
2011-04-18 19:50:12 +00:00
else:
display.frame.evaluateJavaScript(u'show_video("play");')
2011-07-25 20:56:39 +00:00
#TODO add playing check and get the correct media length
controller.media_info.length = length
2011-05-10 20:39:17 +00:00
self.state = MediaState.Playing
2011-04-18 19:50:12 +00:00
def pause(self, display):
2011-06-06 19:12:14 +00:00
controller = display.controller
2011-06-05 21:10:49 +00:00
if controller.media_info.isFlash:
display.frame.evaluateJavaScript(u'show_flash("pause");')
2011-04-18 19:50:12 +00:00
else:
display.frame.evaluateJavaScript(u'show_video("pause");')
2011-05-10 20:39:17 +00:00
self.state = MediaState.Paused
2011-04-18 19:50:12 +00:00
def stop(self, display):
2011-06-06 19:12:14 +00:00
controller = display.controller
2011-06-05 21:10:49 +00:00
if controller.media_info.isFlash:
display.frame.evaluateJavaScript(u'show_flash("stop");')
2011-04-18 19:50:12 +00:00
else:
display.frame.evaluateJavaScript(u'show_video("stop");')
2011-05-10 20:39:17 +00:00
self.state = MediaState.Stopped
def volume(self, display, vol):
2011-06-06 19:12:14 +00:00
controller = display.controller
2011-06-05 21:10:49 +00:00
# 1.0 is the highest value
2011-06-14 16:10:20 +00:00
if display.hasVolume:
vol = float(vol) / float(100)
if not controller.media_info.isFlash:
display.frame.evaluateJavaScript(
u'show_video(null, null, %s);' % str(vol))
2011-04-18 19:50:12 +00:00
2011-04-19 12:03:36 +00:00
def seek(self, display, seekVal):
2011-06-06 19:12:14 +00:00
controller = display.controller
2011-06-05 21:10:49 +00:00
if controller.media_info.isFlash:
seek = seekVal
display.frame.evaluateJavaScript( \
u'show_flash("seek", null, null, "%s");' % (seek))
else:
2011-05-17 19:50:00 +00:00
seek = float(seekVal)/1000
2011-05-21 08:18:52 +00:00
display.frame.evaluateJavaScript( \
u'show_video("seek", null, null, null, "%f");' % (seek))
2011-04-18 19:50:12 +00:00
def reset(self, display):
2011-06-06 19:12:14 +00:00
controller = display.controller
2011-06-05 21:10:49 +00:00
if controller.media_info.isFlash:
display.frame.evaluateJavaScript(u'show_flash("close");')
2011-05-10 20:39:17 +00:00
else:
display.frame.evaluateJavaScript(u'show_video("close");')
2011-05-17 19:50:00 +00:00
self.state = MediaState.Off
def set_visible(self, display, status):
if self.hasOwnWidget:
display.webView.setVisible(status)
2011-04-19 12:03:36 +00:00
2011-06-05 21:10:49 +00:00
def update_ui(self, display):
2011-06-06 19:12:14 +00:00
controller = display.controller
2011-06-05 21:10:49 +00:00
if controller.media_info.isFlash:
2011-05-21 08:18:52 +00:00
currentTime = display.frame.evaluateJavaScript( \
2011-06-05 21:10:49 +00:00
u'show_flash("currentTime");').toInt()[0]
length = display.frame.evaluateJavaScript( \
u'show_flash("length");').toInt()[0]
else:
(currentTime, ok) = display.frame.evaluateJavaScript( \
u'show_video("currentTime");').toFloat()
2011-06-06 19:12:14 +00:00
# check if conversion was ok and value is not 'NaN'
if ok and currentTime == currentTime:
2011-06-05 21:10:49 +00:00
currentTime = int(currentTime*1000)
(length, ok) = display.frame.evaluateJavaScript( \
u'show_video("length");').toFloat()
2011-06-06 19:12:14 +00:00
# check if conversion was ok and value is not 'NaN'
if ok and length == length:
2011-06-05 21:10:49 +00:00
length = int(length*1000)
if currentTime > 0:
2011-07-25 20:56:39 +00:00
controller.media_info.length = length
2011-06-05 21:10:49 +00:00
controller.seekSlider.setMaximum(length)
if not controller.seekSlider.isSliderDown():
controller.seekSlider.setSliderPosition(currentTime)