1
0
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-contrib/web_client/application/views/movie_detail.html.php

26 lines
611 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="movie">
<a id="movie-link" href="<?= $resource->url ?>" title="<?= $resource->title ?>" />
</div>
<script type="text/javascript">
flowplayer(
"movie-link",
{
src: "http://sandbox.timalmdal.com/g3_client/lib/flowplayer.swf",
wmode: "transparent"
},
{
plugins: {
h264streaming: {
url: "http://sandbox.timalmdal.com/g3_client/lib/flowplayer.h264streaming.swf"
},
controls: {
autoHide: 'always',
hideDelay: 2000
}
}
}
)
</script>