This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-debian/modules/gallery/views/movieplayer.html.php

50 lines
1.7 KiB
PHP
Raw Normal View History

2013-04-04 09:26:00 +00:00
<?php defined("SYSPATH") or die("No direct script access.") ?>
2013-04-04 09:26:06 +00:00
<?= html::anchor($url, "", $attrs) ?>
2013-04-04 09:26:00 +00:00
<script type="text/javascript">
2013-04-04 09:26:06 +00:00
var id = "<?= $attrs["id"] ?>";
var max_size = <?= $max_size ?>;
// set the size of the movie html anchor, taking into account max_size and height of control bar
function set_movie_size(width, height) {
if((width > max_size) || (height > max_size)) {
if (width > height) {
height = Math.ceil(height * max_size / width);
width = max_size;
} else {
width = Math.ceil(width * max_size / height);
height = max_size;
}
}
height += flowplayer(id).getConfig().plugins.controls.height;
$("#" + id).css({width: width, height: height});
};
// setup flowplayer
flowplayer(id,
$.extend(true, {
"src": "<?= url::abs_file("lib/flowplayer.swf") ?>",
"wmode": "transparent",
"provider": "pseudostreaming"
}, <?= json_encode($fp_params) ?>),
$.extend(true, {
"plugins": {
"pseudostreaming": {
"url": "<?= url::abs_file("lib/flowplayer.pseudostreaming-byterange.swf") ?>"
2013-04-04 09:26:00 +00:00
},
2013-04-04 09:26:06 +00:00
"controls": {
"autoHide": "always",
"hideDelay": 2000,
"height": 24
}
},
"clip": {
"scaling": "fit",
"onMetaData": function(clip) {
// set movie size a second time using actual size from metadata
set_movie_size(parseInt(clip.metaData.width), parseInt(clip.metaData.height));
2013-04-04 09:26:00 +00:00
}
}
2013-04-04 09:26:06 +00:00
}, <?= json_encode($fp_config) ?>)
2013-04-04 09:26:02 +00:00
).ipad();
2013-04-04 09:26:06 +00:00
// set movie size using width and height passed from movie_img function
$("document").ready(set_movie_size(<?= $width ?>, <?= $height ?>));
2013-04-04 09:26:00 +00:00
</script>