diff options
author | shadlaws <shad@shadlaws.com> | 2013-03-02 23:56:13 +0100 |
---|---|---|
committer | shadlaws <shad@shadlaws.com> | 2013-03-02 23:56:13 +0100 |
commit | 384bc7afc86be706bf61def09afc8306cdad2443 (patch) | |
tree | b61f715d052556d8a735517a53f73bd599efd2e5 /modules/gallery | |
parent | d213ef3d3f79819571d42c69a75307dc7e19aaa7 (diff) |
#2033 - Add Flowplayer 5 to play HTML5 videos.
- add Flowplayer 5 to lib/flowplayer-html5
- move existing Flash Flowplayer to lib/flowplayer-flash
- update page.html.php and movieplayer.html.php
--HG--
rename : lib/flowplayer.controls.swf => lib/flowplayer-flash/flowplayer.controls.swf
rename : lib/flowplayer.js => lib/flowplayer-flash/flowplayer.js
rename : lib/flowplayer.pseudostreaming-byterange.swf => lib/flowplayer-flash/flowplayer.pseudostreaming-byterange.swf
rename : lib/flowplayer.pseudostreaming.swf => lib/flowplayer-flash/flowplayer.pseudostreaming.swf
rename : lib/flowplayer.swf => lib/flowplayer-flash/flowplayer.swf
Diffstat (limited to 'modules/gallery')
-rw-r--r-- | modules/gallery/views/movieplayer.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/views/movieplayer.html.php b/modules/gallery/views/movieplayer.html.php index edb5184c..6d3cee2a 100644 --- a/modules/gallery/views/movieplayer.html.php +++ b/modules/gallery/views/movieplayer.html.php @@ -20,14 +20,14 @@ // setup flowplayer flowplayer(id, $.extend(true, { - "src": "<?= url::abs_file("lib/flowplayer.swf") ?>", + "src": "<?= url::abs_file("lib/flowplayer-flash/flowplayer.swf") ?>", "wmode": "transparent", "provider": "pseudostreaming" }, <?= json_encode($fp_params) ?>), $.extend(true, { "plugins": { "pseudostreaming": { - "url": "<?= url::abs_file("lib/flowplayer.pseudostreaming-byterange.swf") ?>" + "url": "<?= url::abs_file("lib/flowplayer-flash/flowplayer.pseudostreaming-byterange.swf") ?>" }, "controls": { "autoHide": "always", |