diff options
author | friendica <info@friendica.com> | 2014-10-05 01:18:50 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-10-05 01:18:50 -0700 |
commit | 82ba42586cc9427b8a118c30462fc66d92cffecd (patch) | |
tree | 6b8866b0f357a4e7cff3b6c80f42c56ad44376c9 /library/blueimp_upload/js/jquery.fileupload-video.js | |
parent | 191ef124cf6f6ec3978eededba13bd13463140a1 (diff) | |
download | volse-hubzilla-82ba42586cc9427b8a118c30462fc66d92cffecd.tar.gz volse-hubzilla-82ba42586cc9427b8a118c30462fc66d92cffecd.tar.bz2 volse-hubzilla-82ba42586cc9427b8a118c30462fc66d92cffecd.zip |
add blueimp-jquery-file-upload library
Diffstat (limited to 'library/blueimp_upload/js/jquery.fileupload-video.js')
-rw-r--r-- | library/blueimp_upload/js/jquery.fileupload-video.js | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/library/blueimp_upload/js/jquery.fileupload-video.js b/library/blueimp_upload/js/jquery.fileupload-video.js new file mode 100644 index 000000000..3764b27a2 --- /dev/null +++ b/library/blueimp_upload/js/jquery.fileupload-video.js @@ -0,0 +1,106 @@ +/* + * jQuery File Upload Video Preview Plugin 1.0.3 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/* jshint nomen:false */ +/* global define, window, document */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define([ + 'jquery', + 'load-image', + './jquery.fileupload-process' + ], factory); + } else { + // Browser globals: + factory( + window.jQuery, + window.loadImage + ); + } +}(function ($, loadImage) { + 'use strict'; + + // Prepend to the default processQueue: + $.blueimp.fileupload.prototype.options.processQueue.unshift( + { + action: 'loadVideo', + // Use the action as prefix for the "@" options: + prefix: true, + fileTypes: '@', + maxFileSize: '@', + disabled: '@disableVideoPreview' + }, + { + action: 'setVideo', + name: '@videoPreviewName', + disabled: '@disableVideoPreview' + } + ); + + // The File Upload Video Preview plugin extends the fileupload widget + // with video preview functionality: + $.widget('blueimp.fileupload', $.blueimp.fileupload, { + + options: { + // The regular expression for the types of video files to load, + // matched against the file type: + loadVideoFileTypes: /^video\/.*$/ + }, + + _videoElement: document.createElement('video'), + + processActions: { + + // Loads the video file given via data.files and data.index + // as video element if the browser supports playing it. + // Accepts the options fileTypes (regular expression) + // and maxFileSize (integer) to limit the files to load: + loadVideo: function (data, options) { + if (options.disabled) { + return data; + } + var file = data.files[data.index], + url, + video; + if (this._videoElement.canPlayType && + this._videoElement.canPlayType(file.type) && + ($.type(options.maxFileSize) !== 'number' || + file.size <= options.maxFileSize) && + (!options.fileTypes || + options.fileTypes.test(file.type))) { + url = loadImage.createObjectURL(file); + if (url) { + video = this._videoElement.cloneNode(false); + video.src = url; + video.controls = true; + data.video = video; + return data; + } + } + return data; + }, + + // Sets the video element as a property of the file object: + setVideo: function (data, options) { + if (data.video && !options.disabled) { + data.files[data.index][options.name || 'preview'] = data.video; + } + return data; + } + + } + + }); + +})); |