Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/hopeinstoughton_www/wp-content/plugins/video-archive/ |
Upload File : |
use_html5 = 0;
meta_loaded = 0;
function setValue(name, key, value) {
var tmp = jQuery('[name="' + name + '"]');
tmp[0].SetVariable(key, value);
}
function setVideo(video, thumbnail) {
if (use_html5) {
meta_loaded = 0;
html5_loadvideo('thevideo', video, thumbnail);
} else {
setValue('thevideo', 'player:jsStop', '');
setValue('thevideo', 'player:jsUrl', video);
setValue('thevideo', 'player:jsStartImage', thumbnail);
setValue('thevideo', 'player:jsPlay', '');
}
}
function vseek(element, position) {
if (!use_html5) {
setValue('thevideo', 'player:jsStop', '');
setValue('thevideo', 'player:jsSetPosition', position);
setValue('thevideo', 'player:jsPlay', '');
} else if (meta_loaded) {
var v = jQuery('#' + element);
v[0].currentTime = position;
}
return false;
}
function html5_loadvideo(name, filename, thumbnail) {
var v = jQuery('#_' + name);
v.replaceWith('<video id="_' + name + '" src="' + filename + '" controls width="' + main_wd + '" height="' + main_ht+ '" poster="' + thumbnail + '"></video>');
use_html5 = 1;
$('#_' + name).on('loadedmetadata',function(){
meta_loaded = 1;
});
}
function select(id, name, date, duration, video, audio) {
var t = jQuery('#summary');
t.html('Speaker: <b>' + name + '</b><br>Date: <b>' + date + '</b><br>Duration: <b>' + duration + '</b><br>' +
'Audio: <a href="http://biblealive.us/stoughton/audio/' + audio + '">download mp3</a>');
setVideo('http://biblealive.us/stoughton/' + video, 'http://hopeinstoughton.org/thumbnail/' + id);
}