mirror of
https://github.com/moodle/moodle.git
synced 2025-04-22 17:02:03 +02:00
Merge branch 'wip-MDL-57608-master-3' of git://github.com/marinaglancy/moodle
This commit is contained in:
commit
4a237e932a
@ -56,7 +56,8 @@ lib/amd/src/chartjs-lazy.js
|
||||
lib/maxmind/GeoIp2/
|
||||
lib/maxmind/MaxMind/
|
||||
lib/ltiprovider/
|
||||
media/player/videojs/amd/src/
|
||||
media/player/videojs/amd/src/video-lazy.js
|
||||
media/player/videojs/amd/src/Youtube-lazy.js
|
||||
media/player/videojs/videojs/
|
||||
mod/assign/feedback/editpdf/fpdi/
|
||||
repository/s3/S3.php
|
||||
|
@ -57,7 +57,8 @@ lib/amd/src/chartjs-lazy.js
|
||||
lib/maxmind/GeoIp2/
|
||||
lib/maxmind/MaxMind/
|
||||
lib/ltiprovider/
|
||||
media/player/videojs/amd/src/
|
||||
media/player/videojs/amd/src/video-lazy.js
|
||||
media/player/videojs/amd/src/Youtube-lazy.js
|
||||
media/player/videojs/videojs/
|
||||
mod/assign/feedback/editpdf/fpdi/
|
||||
repository/s3/S3.php
|
||||
|
1
media/player/videojs/amd/build/Youtube-lazy.min.js
vendored
Normal file
1
media/player/videojs/amd/build/Youtube-lazy.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
media/player/videojs/amd/build/loader.min.js
vendored
2
media/player/videojs/amd/build/loader.min.js
vendored
@ -1 +1 @@
|
||||
define(["jquery","media_videojs/video","core/event"],function(a,b,c){var d=function(){c.getLegacyEvents().done(function(b){a(document).on(b.FILTER_CONTENT_UPDATED,e)})},e=function(c,d){var e=".mediaplugin_videojs";d.find(e).addBack(e).find("audio, video").each(function(){var c=a(this).attr("id"),d=a(this).data("setup");b(c,d)})};return{setUp:d}});
|
||||
define(["jquery","core/event"],function(a,b){var c,d=function(d){c=d,e(null,a("body")),b.getLegacyEvents().done(function(b){a(document).on(b.FILTER_CONTENT_UPDATED,e)})},e=function(b,d){var e=".mediaplugin_videojs";d.find(e).addBack(e).find("audio, video").each(function(){var b=a(this).attr("id"),d=a(this).data("setup"),e=["media_videojs/video-lazy"];d.techOrder&&d.techOrder.indexOf("youtube")!==-1&&e.push("media_videojs/Youtube-lazy"),require(e,function(a){c&&(c(a),c=null),a(b,d)})})};return{setUp:d}});
|
@ -24,7 +24,7 @@ THE SOFTWARE. */
|
||||
if(typeof exports==='object' && typeof module!=='undefined') {
|
||||
module.exports = factory(require('video.js'));
|
||||
} else if(typeof define === 'function' && define.amd) {
|
||||
define(['media_videojs/video'], function(videojs){
|
||||
define(['media_videojs/video-lazy'], function(videojs){
|
||||
return (root.Youtube = factory(videojs));
|
||||
});
|
||||
} else {
|
@ -22,14 +22,23 @@
|
||||
* @copyright 2016 Frédéric Massart - FMCorz.net
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
define(['jquery', 'media_videojs/video', 'core/event'], function($, videojs, Event) {
|
||||
define(['jquery', 'core/event'], function($, Event) {
|
||||
|
||||
/**
|
||||
* Stores the method we need to execute on the first load of videojs module.
|
||||
*/
|
||||
var onload;
|
||||
|
||||
/**
|
||||
* Set-up.
|
||||
*
|
||||
* Adds the listener for the event to then notify video.js.
|
||||
* @param {Function} executeonload function to execute when media_videojs/video is loaded
|
||||
*/
|
||||
var setUp = function() {
|
||||
var setUp = function(executeonload) {
|
||||
onload = executeonload;
|
||||
// Notify Video.js about the nodes already present on the page.
|
||||
notifyVideoJS(null, $('body'));
|
||||
// We need to call popover automatically if nodes are added to the page later.
|
||||
Event.getLegacyEvents().done(function(events) {
|
||||
$(document).on(events.FILTER_CONTENT_UPDATED, notifyVideoJS);
|
||||
@ -53,9 +62,20 @@ define(['jquery', 'media_videojs/video', 'core/event'], function($, videojs, Eve
|
||||
.addBack(selector)
|
||||
.find('audio, video').each(function() {
|
||||
var id = $(this).attr('id'),
|
||||
config = $(this).data('setup');
|
||||
config = $(this).data('setup'),
|
||||
modules = ['media_videojs/video-lazy'];
|
||||
|
||||
videojs(id, config);
|
||||
if (config.techOrder && config.techOrder.indexOf('youtube') !== -1) {
|
||||
// Add YouTube to the list of modules we require.
|
||||
modules.push('media_videojs/Youtube-lazy');
|
||||
}
|
||||
require(modules, function(videojs) {
|
||||
if (onload) {
|
||||
onload(videojs);
|
||||
onload = null;
|
||||
}
|
||||
videojs(id, config);
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
|
@ -334,21 +334,19 @@ class media_videojs_plugin extends core_media_player_native {
|
||||
*/
|
||||
public function setup($page) {
|
||||
|
||||
// Load core video JS.
|
||||
// Load dynamic loader. It will scan page for videojs media and load necessary modules.
|
||||
// Loader will be loaded on absolutely every page, however the videojs will only be loaded
|
||||
// when video is present on the page or added later to it in AJAX.
|
||||
$path = new moodle_url('/media/player/videojs/videojs/video-js.swf');
|
||||
$contents = 'videojs.options.flash.swf = "' . $path . '";' . "\n";
|
||||
$contents .= $this->find_language(current_language());
|
||||
$page->requires->js_amd_inline(<<<EOT
|
||||
require(["media_videojs/video"], function(videojs) {
|
||||
$contents
|
||||
require(["media_videojs/loader"], function(loader) {
|
||||
loader.setUp(function(videojs) {
|
||||
$contents
|
||||
});
|
||||
});
|
||||
EOT
|
||||
);
|
||||
|
||||
// Load Youtube JS.
|
||||
$page->requires->js_amd_inline('require(["media_videojs/Youtube"])');
|
||||
|
||||
// Load dynamic loader.
|
||||
$page->requires->js_call_amd('media_videojs/loader', 'setUp');
|
||||
}
|
||||
}
|
||||
|
@ -5,7 +5,7 @@ https://github.com/videojs/video.js
|
||||
Instructions to import VideoJS player into Moodle:
|
||||
|
||||
1. Download the latest release from https://github.com/videojs/video.js/releases in a separate directory
|
||||
2. copy 'dist/video.js' into 'amd/src/video.js'
|
||||
2. copy 'dist/video.js' into 'amd/src/video-lazy.js'
|
||||
3. copy 'dist/font/' into 'fonts/' folder
|
||||
4. copy 'dist/video-js.css' into 'styles.css'
|
||||
Replace
|
||||
@ -21,8 +21,8 @@ Instructions to import VideoJS player into Moodle:
|
||||
|
||||
Import plugins:
|
||||
|
||||
1. Copy https://github.com/videojs/videojs-youtube/blob/master/dist/Youtube.js into 'amd/src/Youtube.js'
|
||||
1. Copy https://github.com/videojs/videojs-youtube/blob/master/dist/Youtube.js into 'amd/src/Youtube-lazy.js'
|
||||
In the beginning of the js file replace
|
||||
define(['videojs']
|
||||
with
|
||||
define(['media_videojs/video']
|
||||
define(['media_videojs/video-lazy']
|
||||
|
@ -1,12 +1,19 @@
|
||||
<?xml version="1.0"?>
|
||||
<libraries>
|
||||
<library>
|
||||
<location>amd/src</location>
|
||||
<location>amd/src/video-lazy.js</location>
|
||||
<name>VideoJS</name>
|
||||
<license>Apache</license>
|
||||
<version>5.12.6</version>
|
||||
<licenseversion></licenseversion>
|
||||
</library>
|
||||
<library>
|
||||
<location>amd/src/Youtube-lazy.js</location>
|
||||
<name>YouTube Playback Technology for Video.js</name>
|
||||
<license>MIT</license>
|
||||
<version>2.1.1</version>
|
||||
<licenseversion></licenseversion>
|
||||
</library>
|
||||
<library>
|
||||
<location>videojs</location>
|
||||
<name>VideoJS support files</name>
|
||||
|
Loading…
x
Reference in New Issue
Block a user