From 85687969a1084f157cefb19117a1312c7e61a802 Mon Sep 17 00:00:00 2001 From: lbrun <leo@sandbox.pergame.net> Date: Thu, 24 Mar 2016 12:33:10 +0100 Subject: [PATCH] hotline#37504 : update audiojs version --- VERSIONS_HOTLINE/37504 | 1 + public/admin/js/audiojs/LICENSE | 0 public/admin/js/audiojs/Manifest | 0 public/admin/js/audiojs/README.md | 18 +- public/admin/js/audiojs/Rakefile | 4 +- public/admin/js/audiojs/audiojs/audio.cmd.js | 711 ++++++++++++++++++ public/admin/js/audiojs/audiojs/audio.js | 195 +++-- public/admin/js/audiojs/audiojs/audio.min.js | 48 +- public/admin/js/audiojs/audiojs/audiojs.as | 0 public/admin/js/audiojs/audiojs/audiojs.swf | Bin 1733 -> 1735 bytes public/admin/js/audiojs/audiojs/audiojs2.swf | Bin 1733 -> 0 bytes .../js/audiojs/audiojs/player-graphics.gif | Bin .../admin/js/audiojs/audiojs/style-light.css | 3 +- public/admin/js/audiojs/demos/test1.html | 42 +- public/admin/js/audiojs/demos/test2.html | 131 ++++ public/admin/js/audiojs/demos/test3.html | 27 + public/admin/js/audiojs/demos/test4.html | 5 +- public/admin/js/audiojs/demos/test5.html | 114 +++ public/admin/js/audiojs/demos/test6.html | 4 +- public/admin/js/audiojs/includes/divider.png | Bin public/admin/js/audiojs/includes/index.css | 4 +- public/admin/js/audiojs/index.html | 59 +- 22 files changed, 1190 insertions(+), 176 deletions(-) create mode 100644 VERSIONS_HOTLINE/37504 mode change 100755 => 100644 public/admin/js/audiojs/LICENSE mode change 100755 => 100644 public/admin/js/audiojs/Manifest mode change 100755 => 100644 public/admin/js/audiojs/README.md mode change 100755 => 100644 public/admin/js/audiojs/Rakefile create mode 100644 public/admin/js/audiojs/audiojs/audio.cmd.js mode change 100755 => 100644 public/admin/js/audiojs/audiojs/audio.js mode change 100755 => 100644 public/admin/js/audiojs/audiojs/audio.min.js mode change 100755 => 100644 public/admin/js/audiojs/audiojs/audiojs.as mode change 100755 => 100644 public/admin/js/audiojs/audiojs/audiojs.swf delete mode 100755 public/admin/js/audiojs/audiojs/audiojs2.swf mode change 100755 => 100644 public/admin/js/audiojs/audiojs/player-graphics.gif mode change 100755 => 100644 public/admin/js/audiojs/demos/test1.html create mode 100644 public/admin/js/audiojs/demos/test2.html create mode 100644 public/admin/js/audiojs/demos/test3.html mode change 100755 => 100644 public/admin/js/audiojs/demos/test4.html create mode 100644 public/admin/js/audiojs/demos/test5.html mode change 100755 => 100644 public/admin/js/audiojs/demos/test6.html mode change 100755 => 100644 public/admin/js/audiojs/includes/divider.png mode change 100755 => 100644 public/admin/js/audiojs/includes/index.css mode change 100755 => 100644 public/admin/js/audiojs/index.html diff --git a/VERSIONS_HOTLINE/37504 b/VERSIONS_HOTLINE/37504 new file mode 100644 index 00000000000..bc5beb9d96c --- /dev/null +++ b/VERSIONS_HOTLINE/37504 @@ -0,0 +1 @@ + - ticket #37504 : Lors d'une erreur de lecture d'un fichier audio le lecteur disparaît \ No newline at end of file diff --git a/public/admin/js/audiojs/LICENSE b/public/admin/js/audiojs/LICENSE old mode 100755 new mode 100644 diff --git a/public/admin/js/audiojs/Manifest b/public/admin/js/audiojs/Manifest old mode 100755 new mode 100644 diff --git a/public/admin/js/audiojs/README.md b/public/admin/js/audiojs/README.md old mode 100755 new mode 100644 index 9eae82aae50..6bc95fdcbd4 --- a/public/admin/js/audiojs/README.md +++ b/public/admin/js/audiojs/README.md @@ -11,17 +11,13 @@ Hopefully they can add mp3 support soon. ## Usage -1. Put `audio.js`, `style-light.css`, `player-graphics.gif` & `audiojs.swf` in the same folder. +1. Put `audio.js`, `player-graphics.gif` & `audiojs.swf` in the same folder. -2. Include `style-light.css`: - - <link rel="stylesheet" href="style-light.css" media="screen"> - -3. Include `audio.js`: +2. Include `audio.js`: <script src="/audiojs/audio.js"></script> -4. Initialise audiojs: +3. Initialise audiojs: <script> audiojs.events.ready(function() { @@ -29,7 +25,7 @@ Hopefully they can add mp3 support soon. }); </script> -5. Then you can use `<audio>` wherever you like in your HTML: +4. Then you can use `<audio>` wherever you like in your HTML: <audio src="/mp3/juicy.mp3" preload="auto" /> @@ -67,4 +63,8 @@ directly from the command line. It makes life that little bit less painful. Run the following command from within the `audiojs` folder. - mxmlc audiojs.as \ No newline at end of file + mxmlc audiojs.as + +### License + +audio.js is released under the MIT license. Included MP3 and Ogg files are Creative Commons licensed tracks from [Bensound.com](http://www.bensound.com/) \ No newline at end of file diff --git a/public/admin/js/audiojs/Rakefile b/public/admin/js/audiojs/Rakefile old mode 100755 new mode 100644 index 9924df3cd6b..249405c1ad6 --- a/public/admin/js/audiojs/Rakefile +++ b/public/admin/js/audiojs/Rakefile @@ -7,7 +7,7 @@ task :compile do end task :commit_build do - `git commit audiojs/audio.min.js -m "Closure compiled \`git rev-parse HEAD\`"` + `git commit audiojs/audio.js -m "Closure compiled \`git rev-parse HEAD\`"` end desc "Zip up a release" @@ -18,4 +18,4 @@ end #desc "Run the test suite" #task :test do # `open -a Safari test/suite.html` -#end +#end \ No newline at end of file diff --git a/public/admin/js/audiojs/audiojs/audio.cmd.js b/public/admin/js/audiojs/audiojs/audio.cmd.js new file mode 100644 index 00000000000..3c06f391b5e --- /dev/null +++ b/public/admin/js/audiojs/audiojs/audio.cmd.js @@ -0,0 +1,711 @@ +// A cross-browser javascript shim for html5 audio +(function(root, factory){ + if (typeof define === 'function' && define.cmd) { + define(factory); + } + else { + root.audiojs = factory(); + } +}(this, function(require, exports, module) { + + var container = {}, audiojsInstance = "audiojsInstance", audiojs = "audiojs"; + // Use the path to the audio.js file to create relative paths to the swf and player graphics + // Remember that some systems (e.g. ruby on rails) append strings like '?1301478336' to asset paths + var path = (function() { + var re = new RegExp('audio(\.min)?\.js.*'), + scripts = document.getElementsByTagName('script'); + for (var i = 0, ii = scripts.length; i < ii; i++) { + var path = scripts[i].getAttribute('src'); + if(re.test(path)) return path.replace(re, ''); + } + })(); + + // ##The audiojs interface + // This is the global object which provides an interface for creating new `audiojs` instances. + // It also stores all of the construction helper methods and variables. + container[audiojs] = { + instanceCount: 0, + instances: {}, + // The markup for the swf. It is injected into the page if there is not support for the `<audio>` element. The `$n`s are placeholders. + // `$1` The name of the flash movie + // `$2` The path to the swf + // `$3` Cache invalidation + flashSource: '\ + <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="$1" width="1" height="1" name="$1" style="position: absolute; left: -1px;"> \ + <param name="movie" value="$2?playerInstance='+audiojs+'.instances[\'$1\']&datetime=$3"> \ + <param name="allowscriptaccess" value="always"> \ + <embed name="$1" src="$2?playerInstance='+audiojs+'.instances[\'$1\']&datetime=$3" width="1" height="1" allowscriptaccess="always"> \ + </object>', + + // ### The main settings object + // Where all the default settings are stored. Each of these variables and methods can be overwritten by the user-provided `options` object. + settings: { + autoplay: false, + loop: false, + preload: true, + imageLocation: path + 'player-graphics.gif', + swfLocation: path + 'audiojs.swf', + useFlash: (function() { + var a = document.createElement('audio'); + return !(a.canPlayType && a.canPlayType('audio/mpeg;').replace(/no/, '')); + })(), + hasFlash: (function() { + if (navigator.plugins && navigator.plugins.length && navigator.plugins['Shockwave Flash']) { + return true; + } else if (navigator.mimeTypes && navigator.mimeTypes.length) { + var mimeType = navigator.mimeTypes['application/x-shockwave-flash']; + return mimeType && mimeType.enabledPlugin; + } else { + try { + var ax = new ActiveXObject('ShockwaveFlash.ShockwaveFlash'); + return true; + } catch (e) {} + } + return false; + })(), + // The default markup and classes for creating the player: + createPlayer: { + markup: '\ + <div class="play-pause"> \ + <p class="play"></p> \ + <p class="pause"></p> \ + <p class="loading"></p> \ + <p class="error"></p> \ + </div> \ + <div class="scrubber"> \ + <div class="progress"></div> \ + <div class="loaded"></div> \ + </div> \ + <div class="time"> \ + <em class="played">00:00</em>/<strong class="duration">00:00</strong> \ + </div> \ + <div class="error-message"></div>', + playPauseClass: 'play-pause', + scrubberClass: 'scrubber', + progressClass: 'progress', + loaderClass: 'loaded', + timeClass: 'time', + durationClass: 'duration', + playedClass: 'played', + errorMessageClass: 'error-message', + playingClass: 'playing', + loadingClass: 'loading', + errorClass: 'error' + }, + // The css used by the default player. This is is dynamically injected into a `<style>` tag in the top of the head. + css: '\ + .audiojs audio { position: absolute; left: -1px; } \ + .audiojs { width: 460px; height: 36px; background: #404040; overflow: hidden; font-family: monospace; font-size: 12px; \ + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #444), color-stop(0.5, #555), color-stop(0.51, #444), color-stop(1, #444)); \ + background-image: -moz-linear-gradient(center top, #444 0%, #555 50%, #444 51%, #444 100%); \ + -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); -moz-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); \ + -o-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); } \ + .audiojs .play-pause { width: 25px; height: 40px; padding: 4px 6px; margin: 0px; float: left; overflow: hidden; border-right: 1px solid #000; } \ + .audiojs p { display: none; width: 25px; height: 40px; margin: 0px; cursor: pointer; } \ + .audiojs .play { display: block; } \ + .audiojs .scrubber { position: relative; float: left; width: 280px; background: #5a5a5a; height: 14px; margin: 10px; border-top: 1px solid #3f3f3f; border-left: 0px; border-bottom: 0px; overflow: hidden; } \ + .audiojs .progress { position: absolute; top: 0px; left: 0px; height: 14px; width: 0px; background: #ccc; z-index: 1; \ + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ccc), color-stop(0.5, #ddd), color-stop(0.51, #ccc), color-stop(1, #ccc)); \ + background-image: -moz-linear-gradient(center top, #ccc 0%, #ddd 50%, #ccc 51%, #ccc 100%); } \ + .audiojs .loaded { position: absolute; top: 0px; left: 0px; height: 14px; width: 0px; background: #000; \ + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #222), color-stop(0.5, #333), color-stop(0.51, #222), color-stop(1, #222)); \ + background-image: -moz-linear-gradient(center top, #222 0%, #333 50%, #222 51%, #222 100%); } \ + .audiojs .time { float: left; height: 36px; line-height: 36px; margin: 0px 0px 0px 6px; padding: 0px 6px 0px 12px; border-left: 1px solid #000; color: #ddd; text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5); } \ + .audiojs .time em { padding: 0px 2px 0px 0px; color: #f9f9f9; font-style: normal; } \ + .audiojs .time strong { padding: 0px 0px 0px 2px; font-weight: normal; } \ + .audiojs .error-message { float: left; display: none; margin: 0px 10px; height: 36px; width: 400px; overflow: hidden; line-height: 36px; white-space: nowrap; color: #fff; \ + text-overflow: ellipsis; -o-text-overflow: ellipsis; -icab-text-overflow: ellipsis; -khtml-text-overflow: ellipsis; -moz-text-overflow: ellipsis; -webkit-text-overflow: ellipsis; } \ + .audiojs .error-message a { color: #eee; text-decoration: none; padding-bottom: 1px; border-bottom: 1px solid #999; white-space: wrap; } \ + \ + .audiojs .play { background: url("$1") -2px -1px no-repeat; } \ + .audiojs .loading { background: url("$1") -2px -31px no-repeat; } \ + .audiojs .error { background: url("$1") -2px -61px no-repeat; } \ + .audiojs .pause { background: url("$1") -2px -91px no-repeat; } \ + \ + .playing .play, .playing .loading, .playing .error { display: none; } \ + .playing .pause { display: block; } \ + \ + .loading .play, .loading .pause, .loading .error { display: none; } \ + .loading .loading { display: block; } \ + \ + .error .time, .error .play, .error .pause, .error .scrubber, .error .loading { display: none; } \ + .error .error { display: block; } \ + .error .play-pause p { cursor: auto; } \ + .error .error-message { display: block; }', + // The default event callbacks: + trackEnded: function(e) {}, + flashError: function() { + var player = this.settings.createPlayer, + errorMessage = getByClass(player.errorMessageClass, this.wrapper), + html = 'Missing <a href="http://get.adobe.com/flashplayer/">flash player</a> plugin.'; + if (this.mp3) html += ' <a href="'+this.mp3+'">Download audio file</a>.'; + container[audiojs].helpers.removeClass(this.wrapper, player.loadingClass); + container[audiojs].helpers.addClass(this.wrapper, player.errorClass); + errorMessage.innerHTML = html; + }, + loadError: function(e) { + var player = this.settings.createPlayer, + errorMessage = getByClass(player.errorMessageClass, this.wrapper); + container[audiojs].helpers.removeClass(this.wrapper, player.loadingClass); + container[audiojs].helpers.addClass(this.wrapper, player.errorClass); + errorMessage.innerHTML = 'Error loading: "'+this.mp3+'"'; + }, + init: function() { + var player = this.settings.createPlayer; + container[audiojs].helpers.addClass(this.wrapper, player.loadingClass); + }, + loadStarted: function() { + var player = this.settings.createPlayer, + duration = getByClass(player.durationClass, this.wrapper), + m = Math.floor(this.duration / 60), + s = Math.floor(this.duration % 60); + container[audiojs].helpers.removeClass(this.wrapper, player.loadingClass); + duration.innerHTML = ((m<10?'0':'')+m+':'+(s<10?'0':'')+s); + }, + loadProgress: function(percent) { + var player = this.settings.createPlayer, + loaded = getByClass(player.loaderClass, this.wrapper); + loaded.style.width = (100 * percent) + '%'; + }, + playPause: function() { + if (this.playing) this.settings.play(); + else this.settings.pause(); + }, + play: function() { + var player = this.settings.createPlayer; + container[audiojs].helpers.addClass(this.wrapper, player.playingClass); + }, + pause: function() { + var player = this.settings.createPlayer; + container[audiojs].helpers.removeClass(this.wrapper, player.playingClass); + }, + updatePlayhead: function(percent) { + var player = this.settings.createPlayer, + progress = getByClass(player.progressClass, this.wrapper); + progress.style.width = (100 * percent) + '%'; + + var played = getByClass(player.playedClass, this.wrapper), + p = this.duration * percent, + m = Math.floor(p / 60), + s = Math.floor(p % 60); + played.innerHTML = ((m<10?'0':'')+m+':'+(s<10?'0':'')+s); + } + }, + + // ### Contructor functions + + // `create()` + // Used to create a single `audiojs` instance. + // If an array is passed then it calls back to `createAll()`. + // Otherwise, it creates a single instance and returns it. + create: function(element, options) { + var options = options || {} + if (element.length) { + return this.createAll(options, element); + } else { + return this.newInstance(element, options); + } + }, + + // `createAll()` + // Creates multiple `audiojs` instances. + // If `elements` is `null`, then automatically find any `<audio>` tags on the page and create `audiojs` instances for them. + createAll: function(options, elements) { + var audioElements = elements || document.getElementsByTagName('audio'), + instances = [] + options = options || {}; + for (var i = 0, ii = audioElements.length; i < ii; i++) { + instances.push(this.newInstance(audioElements[i], options)); + } + return instances; + }, + + // ### Creating and returning a new instance + // This goes through all the steps required to build out a usable `audiojs` instance. + newInstance: function(element, options) { + var element = element, + s = this.helpers.clone(this.settings), + id = 'audiojs'+this.instanceCount, + wrapperId = 'audiojs_wrapper'+this.instanceCount, + instanceCount = this.instanceCount++; + + // Check for `autoplay`, `loop` and `preload` attributes and write them into the settings. + if (element.getAttribute('autoplay') != null) s.autoplay = true; + if (element.getAttribute('loop') != null) s.loop = true; + if (element.getAttribute('preload') == 'none') s.preload = false; + // Merge the default settings with the user-defined `options`. + if (options) this.helpers.merge(s, options); + + // Inject the player html if required. + if (s.createPlayer.markup) element = this.createPlayer(element, s.createPlayer, wrapperId); + else element.parentNode.setAttribute('id', wrapperId); + + // Return a new `audiojs` instance. + var audio = new container[audiojsInstance](element, s); + + // If css has been passed in, dynamically inject it into the `<head>`. + if (s.css) this.helpers.injectCss(audio, s.css); + + // If `<audio>` or mp3 playback isn't supported, insert the swf & attach the required events for it. + if (s.useFlash && s.hasFlash) { + this.injectFlash(audio, id); + this.attachFlashEvents(audio.wrapper, audio); + } else if (s.useFlash && !s.hasFlash) { + this.settings.flashError.apply(audio); + } + + // Attach event callbacks to the new audiojs instance. + if (!s.useFlash || (s.useFlash && s.hasFlash)) this.attachEvents(audio.wrapper, audio); + + // Store the newly-created `audiojs` instance. + this.instances[id] = audio; + return audio; + }, + + // ### Helper methods for constructing a working player + // Inject a wrapping div and the markup for the html player. + createPlayer: function(element, player, id) { + var wrapper = document.createElement('div'), + newElement = element.cloneNode(true); + wrapper.setAttribute('class', 'audiojs'); + wrapper.setAttribute('className', 'audiojs'); + wrapper.setAttribute('id', id); + + // Fix IE's broken implementation of `innerHTML` & `cloneNode` for HTML5 elements. + if (newElement.outerHTML && !document.createElement('audio').canPlayType) { + newElement = this.helpers.cloneHtml5Node(element); + wrapper.innerHTML = player.markup; + wrapper.appendChild(newElement); + element.outerHTML = wrapper.outerHTML; + wrapper = document.getElementById(id); + } else { + wrapper.appendChild(newElement); + wrapper.innerHTML = wrapper.innerHTML + player.markup; + element.parentNode.replaceChild(wrapper, element); + } + return wrapper.getElementsByTagName('audio')[0]; + }, + + // Attaches useful event callbacks to an `audiojs` instance. + attachEvents: function(wrapper, audio) { + if (!audio.settings.createPlayer) return; + var player = audio.settings.createPlayer, + playPause = getByClass(player.playPauseClass, wrapper), + scrubber = getByClass(player.scrubberClass, wrapper), + leftPos = function(elem) { + var curleft = 0; + if (elem.offsetParent) { + do { curleft += elem.offsetLeft; } while (elem = elem.offsetParent); + } + return curleft; + }; + + container[audiojs].events.addListener(playPause, 'click', function(e) { + audio.playPause.apply(audio); + }); + + container[audiojs].events.addListener(scrubber, 'click', function(e) { + var relativeLeft = e.clientX - leftPos(this); + audio.skipTo(relativeLeft / scrubber.offsetWidth); + }); + + // _If flash is being used, then the following handlers don't need to be registered._ + if (audio.settings.useFlash) return; + + // Start tracking the load progress of the track. + container[audiojs].events.trackLoadProgress(audio); + + container[audiojs].events.addListener(audio.element, 'timeupdate', function(e) { + audio.updatePlayhead.apply(audio); + }); + + container[audiojs].events.addListener(audio.element, 'ended', function(e) { + audio.trackEnded.apply(audio); + }); + + container[audiojs].events.addListener(audio.source, 'error', function(e) { + // on error, cancel any load timers that are running. + clearInterval(audio.readyTimer); + clearInterval(audio.loadTimer); + audio.settings.loadError.apply(audio); + }); + + }, + + // Flash requires a slightly different API to the `<audio>` element, so this method is used to overwrite the standard event handlers. + attachFlashEvents: function(element, audio) { + audio['swfReady'] = false; + audio['load'] = function(mp3) { + // If the swf isn't ready yet then just set `audio.mp3`. `init()` will load it in once the swf is ready. + audio.mp3 = mp3; + if (audio.swfReady) audio.element.load(mp3); + } + audio['loadProgress'] = function(percent, duration) { + audio.loadedPercent = percent; + audio.duration = duration; + audio.settings.loadStarted.apply(audio); + audio.settings.loadProgress.apply(audio, [percent]); + } + audio['skipTo'] = function(percent) { + if (percent > audio.loadedPercent) return; + audio.updatePlayhead.call(audio, [percent]) + audio.element.skipTo(percent); + } + audio['updatePlayhead'] = function(percent) { + audio.settings.updatePlayhead.apply(audio, [percent]); + } + audio['play'] = function() { + // If the audio hasn't started preloading, then start it now. + // Then set `preload` to `true`, so that any tracks loaded in subsequently are loaded straight away. + if (!audio.settings.preload) { + audio.settings.preload = true; + audio.element.init(audio.mp3); + } + audio.playing = true; + // IE doesn't allow a method named `play()` to be exposed through `ExternalInterface`, so lets go with `pplay()`. + // <http://dev.nuclearrooster.com/2008/07/27/externalinterfaceaddcallback-can-cause-ie-js-errors-with-certain-keyworkds/> + audio.element.pplay(); + audio.settings.play.apply(audio); + } + audio['pause'] = function() { + audio.playing = false; + // Use `ppause()` for consistency with `pplay()`, even though it isn't really required. + audio.element.ppause(); + audio.settings.pause.apply(audio); + } + audio['setVolume'] = function(v) { + audio.element.setVolume(v); + } + audio['loadStarted'] = function() { + // Load the mp3 specified by the audio element into the swf. + audio.swfReady = true; + if (audio.settings.preload) audio.element.init(audio.mp3); + if (audio.settings.autoplay) audio.play.apply(audio); + } + }, + + // ### Injecting an swf from a string + // Build up the swf source by replacing the `$keys` and then inject the markup into the page. + injectFlash: function(audio, id) { + var flashSource = this.flashSource.replace(/\$1/g, id); + flashSource = flashSource.replace(/\$2/g, audio.settings.swfLocation); + // `(+new Date)` ensures the swf is not pulled out of cache. The fixes an issue with Firefox running multiple players on the same page. + flashSource = flashSource.replace(/\$3/g, (+new Date + Math.random())); + // Inject the player markup using a more verbose `innerHTML` insertion technique that works with IE. + var html = audio.wrapper.innerHTML, + div = document.createElement('div'); + div.innerHTML = flashSource + html; + audio.wrapper.innerHTML = div.innerHTML; + audio.element = this.helpers.getSwf(id); + }, + + // ## Helper functions + helpers: { + // **Merge two objects, with `obj2` overwriting `obj1`** + // The merge is shallow, but that's all that is required for our purposes. + merge: function(obj1, obj2) { + for (attr in obj2) { + if (obj1.hasOwnProperty(attr) || obj2.hasOwnProperty(attr)) { + obj1[attr] = obj2[attr]; + } + } + }, + // **Clone a javascript object (recursively)** + clone: function(obj){ + if (obj == null || typeof(obj) !== 'object') return obj; + var temp = new obj.constructor(); + for (var key in obj) temp[key] = arguments.callee(obj[key]); + return temp; + }, + // **Adding/removing classnames from elements** + addClass: function(element, className) { + var re = new RegExp('(\\s|^)'+className+'(\\s|$)'); + if (re.test(element.className)) return; + element.className += ' ' + className; + }, + removeClass: function(element, className) { + var re = new RegExp('(\\s|^)'+className+'(\\s|$)'); + element.className = element.className.replace(re,' '); + }, + // **Dynamic CSS injection** + // Takes a string of css, inserts it into a `<style>`, then injects it in at the very top of the `<head>`. This ensures any user-defined styles will take precedence. + injectCss: function(audio, string) { + + // If an `audiojs` `<style>` tag already exists, then append to it rather than creating a whole new `<style>`. + var prepend = '', + styles = document.getElementsByTagName('style'), + css = string.replace(/\$1/g, audio.settings.imageLocation); + + for (var i = 0, ii = styles.length; i < ii; i++) { + var title = styles[i].getAttribute('title'); + if (title && ~title.indexOf('audiojs')) { + style = styles[i]; + if (style.innerHTML === css) return; + prepend = style.innerHTML; + break; + } + }; + + var head = document.getElementsByTagName('head')[0], + firstchild = head.firstChild, + style = document.createElement('style'); + + if (!head) return; + + style.setAttribute('type', 'text/css'); + style.setAttribute('title', 'audiojs'); + + if (style.styleSheet) style.styleSheet.cssText = prepend + css; + else style.appendChild(document.createTextNode(prepend + css)); + + if (firstchild) head.insertBefore(style, firstchild); + else head.appendChild(styleElement); + }, + // **Handle all the IE6+7 requirements for cloning `<audio>` nodes** + // Create a html5-safe document fragment by injecting an `<audio>` element into the document fragment. + cloneHtml5Node: function(audioTag) { + var fragment = document.createDocumentFragment(), + doc = fragment.createElement ? fragment : document; + doc.createElement('audio'); + var div = doc.createElement('div'); + fragment.appendChild(div); + div.innerHTML = audioTag.outerHTML; + return div.firstChild; + }, + // **Cross-browser `<object>` / `<embed>` element selection** + getSwf: function(name) { + var swf = document[name] || window[name]; + return swf.length > 1 ? swf[swf.length - 1] : swf; + } + }, + // ## Event-handling + events: { + memoryLeaking: false, + listeners: [], + // **A simple cross-browser event handler abstraction** + addListener: function(element, eventName, func) { + // For modern browsers use the standard DOM-compliant `addEventListener`. + if (element.addEventListener) { + element.addEventListener(eventName, func, false); + // For older versions of Internet Explorer, use `attachEvent`. + // Also provide a fix for scoping `this` to the calling element and register each listener so the containing elements can be purged on page unload. + } else if (element.attachEvent) { + this.listeners.push(element); + if (!this.memoryLeaking) { + window.attachEvent('onunload', function() { + if(this.listeners) { + for (var i = 0, ii = this.listeners.length; i < ii; i++) { + container[audiojs].events.purge(this.listeners[i]); + } + } + }); + this.memoryLeaking = true; + } + element.attachEvent('on' + eventName, function() { + func.call(element, window.event); + }); + } + }, + + trackLoadProgress: function(audio) { + // If `preload` has been set to `none`, then we don't want to start loading the track yet. + if (!audio.settings.preload) return; + + var readyTimer, + loadTimer, + audio = audio, + ios = (/(ipod|iphone|ipad)/i).test(navigator.userAgent); + + // Use timers here rather than the official `progress` event, as Chrome has issues calling `progress` when loading mp3 files from cache. + readyTimer = setInterval(function() { + if (audio.element.readyState > -1) { + // iOS doesn't start preloading the mp3 until the user interacts manually, so this stops the loader being displayed prematurely. + if (!ios) audio.init.apply(audio); + } + if (audio.element.readyState > 1) { + if (audio.settings.autoplay) audio.play.apply(audio); + clearInterval(readyTimer); + // Once we have data, start tracking the load progress. + loadTimer = setInterval(function() { + audio.loadProgress.apply(audio); + if (audio.loadedPercent >= 1) clearInterval(loadTimer); + }, 200); + } + }, 200); + audio.readyTimer = readyTimer; + audio.loadTimer = loadTimer; + }, + + // **Douglas Crockford's IE6 memory leak fix** + // <http://javascript.crockford.com/memory/leak.html> + // This is used to release the memory leak created by the circular references created when fixing `this` scoping for IE. It is called on page unload. + purge: function(d) { + var a = d.attributes, i; + if (a) { + for (i = 0; i < a.length; i += 1) { + if (typeof d[a[i].name] === 'function') d[a[i].name] = null; + } + } + a = d.childNodes; + if (a) { + for (i = 0; i < a.length; i += 1) purge(d.childNodes[i]); + } + }, + + // **DOMready function** + // As seen here: <https://github.com/dperini/ContentLoaded/>. + ready: (function() { return function(fn) { + var win = window, done = false, top = true, + doc = win.document, root = doc.documentElement, + add = doc.addEventListener ? 'addEventListener' : 'attachEvent', + rem = doc.addEventListener ? 'removeEventListener' : 'detachEvent', + pre = doc.addEventListener ? '' : 'on', + init = function(e) { + if (e.type == 'readystatechange' && doc.readyState != 'complete') return; + (e.type == 'load' ? win : doc)[rem](pre + e.type, init, false); + if (!done && (done = true)) fn.call(win, e.type || e); + }, + poll = function() { + try { root.doScroll('left'); } catch(e) { setTimeout(poll, 50); return; } + init('poll'); + }; + if (doc.readyState == 'complete') fn.call(win, 'lazy'); + else { + if (doc.createEventObject && root.doScroll) { + try { top = !win.frameElement; } catch(e) { } + if (top) poll(); + } + doc[add](pre + 'DOMContentLoaded', init, false); + doc[add](pre + 'readystatechange', init, false); + win[add](pre + 'load', init, false); + } + } + })() + + } + } + + // ## The audiojs class + // We create one of these per `<audio>` and then push them into `audiojs['instances']`. + container[audiojsInstance] = function(element, settings) { + // Each audio instance returns an object which contains an API back into the `<audio>` element. + this.element = element; + this.wrapper = element.parentNode; + this.source = element.getElementsByTagName('source')[0] || element; + // First check the `<audio>` element directly for a src and if one is not found, look for a `<source>` element. + this.mp3 = (function(element) { + var source = element.getElementsByTagName('source')[0]; + return element.getAttribute('src') || (source ? source.getAttribute('src') : null); + })(element); + this.settings = settings; + this.loadStartedCalled = false; + this.loadedPercent = 0; + this.duration = 1; + this.playing = false; + } + + container[audiojsInstance].prototype = { + // API access events: + // Each of these do what they need do and then call the matching methods defined in the settings object. + updatePlayhead: function() { + var percent = this.element.currentTime / this.duration; + this.settings.updatePlayhead.apply(this, [percent]); + }, + skipTo: function(percent) { + if (percent > this.loadedPercent) return; + this.element.currentTime = this.duration * percent; + this.updatePlayhead(); + }, + load: function(mp3) { + this.loadStartedCalled = false; + this.source.setAttribute('src', mp3); + // The now outdated `load()` method is required for Safari 4 + this.element.load(); + this.mp3 = mp3; + container[audiojs].events.trackLoadProgress(this); + }, + loadError: function() { + this.settings.loadError.apply(this); + }, + init: function() { + this.settings.init.apply(this); + }, + loadStarted: function() { + // Wait until `element.duration` exists before setting up the audio player. + if (!this.element.duration) return false; + + this.duration = this.element.duration; + this.updatePlayhead(); + this.settings.loadStarted.apply(this); + }, + loadProgress: function() { + if (this.element.buffered != null && this.element.buffered.length) { + // Ensure `loadStarted()` is only called once. + if (!this.loadStartedCalled) { + this.loadStartedCalled = this.loadStarted(); + } + var durationLoaded = this.element.buffered.end(this.element.buffered.length - 1); + this.loadedPercent = durationLoaded / this.duration; + + this.settings.loadProgress.apply(this, [this.loadedPercent]); + } + }, + playPause: function() { + if (this.playing) this.pause(); + else this.play(); + }, + play: function() { + var ios = (/(ipod|iphone|ipad)/i).test(navigator.userAgent); + // On iOS this interaction will trigger loading the mp3, so run `init()`. + if (ios && this.element.readyState == 0) this.init.apply(this); + // If the audio hasn't started preloading, then start it now. + // Then set `preload` to `true`, so that any tracks loaded in subsequently are loaded straight away. + if (!this.settings.preload) { + this.settings.preload = true; + this.element.setAttribute('preload', 'auto'); + container[audiojs].events.trackLoadProgress(this); + } + this.playing = true; + this.element.play(); + this.settings.play.apply(this); + }, + pause: function() { + this.playing = false; + this.element.pause(); + this.settings.pause.apply(this); + }, + setVolume: function(v) { + this.element.volume = v; + }, + trackEnded: function(e) { + this.skipTo.apply(this, [0]); + if (!this.settings.loop) this.pause.apply(this); + this.settings.trackEnded.apply(this); + } + } + + // **getElementsByClassName** + // Having to rely on `getElementsByTagName` is pretty inflexible internally, so a modified version of Dustin Diaz's `getElementsByClassName` has been included. + // This version cleans things up and prefers the native DOM method if it's available. + var getByClass = function(searchClass, node) { + var matches = []; + node = node || document; + + if (node.getElementsByClassName) { + matches = node.getElementsByClassName(searchClass); + } else { + var i, l, + els = node.getElementsByTagName("*"), + pattern = new RegExp("(^|\\s)"+searchClass+"(\\s|$)"); + + for (i = 0, l = els.length; i < l; i++) { + if (pattern.test(els[i].className)) { + matches.push(els[i]); + } + } + } + return matches.length > 1 ? matches : matches[0]; + }; +// The global variable names are passed in here and can be changed if they conflict with anything else. + return container[audiojs]; +})); \ No newline at end of file diff --git a/public/admin/js/audiojs/audiojs/audio.js b/public/admin/js/audiojs/audiojs/audio.js old mode 100755 new mode 100644 index 29b5d76512d..f3c487998b3 --- a/public/admin/js/audiojs/audiojs/audio.js +++ b/public/admin/js/audiojs/audiojs/audio.js @@ -7,8 +7,15 @@ scripts = document.getElementsByTagName('script'); for (var i = 0, ii = scripts.length; i < ii; i++) { var path = scripts[i].getAttribute('src'); - if(re.test(path)) return path.replace(re, ''); + if(re.test(path)) + { + var f = path.split ( '/' ); + f.pop (); + return f.join ( '/' ) + '/'; + } } + // when no script found, an empty string causes the least confusion. + return ''; })(); // ##The audiojs interface @@ -34,8 +41,8 @@ autoplay: false, loop: false, preload: true, - initialVolume: 0.5, imageLocation: path + 'player-graphics.gif', + retinaImageLocation: path + 'player-graphics@2x.gif', swfLocation: path + 'audiojs.swf', useFlash: (function() { var a = document.createElement('audio'); @@ -71,9 +78,6 @@ <div class="time"> \ <em class="played">00:00</em>/<strong class="duration">00:00</strong> \ </div> \ - <div class="volume"> \ - <div class="level"></div> \ - </div> \ <div class="error-message"></div>', playPauseClass: 'play-pause', scrubberClass: 'scrubber', @@ -85,10 +89,62 @@ errorMessageClass: 'error-message', playingClass: 'playing', loadingClass: 'loading', - errorClass: 'error', - volumeClass: 'volume', - levelClass: 'level' + errorClass: 'error' }, + // The css used by the default player. This is is dynamically injected into a `<style>` tag in the top of the head. + css: '\ + .audiojs audio { position: absolute; left: -1px; } \ + .audiojs { width: 460px; height: 36px; background: #404040; overflow: hidden; font-family: monospace; font-size: 12px; \ + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #444), color-stop(0.5, #555), color-stop(0.51, #444), color-stop(1, #444)); \ + background-image: -moz-linear-gradient(center top, #444 0%, #555 50%, #444 51%, #444 100%); \ + -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); -moz-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); \ + -o-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); } \ + .audiojs .play-pause { width: 25px; height: 40px; padding: 4px 6px; margin: 0px; float: left; overflow: hidden; border-right: 1px solid #000; } \ + .audiojs p { display: none; width: 25px; height: 40px; margin: 0px; cursor: pointer; } \ + .audiojs .play { display: block; } \ + .audiojs .scrubber { position: relative; float: left; width: 280px; background: #5a5a5a; height: 14px; margin: 10px; border-top: 1px solid #3f3f3f; border-left: 0px; border-bottom: 0px; overflow: hidden; } \ + .audiojs .progress { position: absolute; top: 0px; left: 0px; height: 14px; width: 0px; background: #ccc; z-index: 1; \ + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ccc), color-stop(0.5, #ddd), color-stop(0.51, #ccc), color-stop(1, #ccc)); \ + background-image: -moz-linear-gradient(center top, #ccc 0%, #ddd 50%, #ccc 51%, #ccc 100%); } \ + .audiojs .loaded { position: absolute; top: 0px; left: 0px; height: 14px; width: 0px; background: #000; \ + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #222), color-stop(0.5, #333), color-stop(0.51, #222), color-stop(1, #222)); \ + background-image: -moz-linear-gradient(center top, #222 0%, #333 50%, #222 51%, #222 100%); } \ + .audiojs .time { float: left; height: 36px; line-height: 36px; margin: 0px 0px 0px 6px; padding: 0px 6px 0px 12px; border-left: 1px solid #000; color: #ddd; text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5); } \ + .audiojs .time em { padding: 0px 2px 0px 0px; color: #f9f9f9; font-style: normal; } \ + .audiojs .time strong { padding: 0px 0px 0px 2px; font-weight: normal; } \ + .audiojs .error-message { float: left; display: none; margin: 0px 10px; height: 36px; width: 400px; overflow: hidden; line-height: 36px; white-space: nowrap; color: #fff; \ + text-overflow: ellipsis; -o-text-overflow: ellipsis; -icab-text-overflow: ellipsis; -khtml-text-overflow: ellipsis; -moz-text-overflow: ellipsis; -webkit-text-overflow: ellipsis; } \ + .audiojs .error-message a { color: #eee; text-decoration: none; padding-bottom: 1px; border-bottom: 1px solid #999; white-space: wrap; } \ + \ + .audiojs .play { background: url("$1") -2px -1px no-repeat; } \ + .audiojs .loading { background: url("$1") -2px -31px no-repeat; } \ + .audiojs .error { background: url("$1") -2px -61px no-repeat; } \ + .audiojs .pause { background: url("$1") -2px -91px no-repeat; } \ + \ + @media only screen and (-webkit-min-device-pixel-ratio: 2), \ + only screen and (min--moz-device-pixel-ratio: 2), \ + only screen and (min-moz-device-pixel-ratio: 2), \ + only screen and (-o-min-device-pixel-ratio: 2/1), \ + only screen and (min-device-pixel-ratio: 2) { \ + .audiojs .play, .audiojs .loading, .audiojs .error, .audiojs .pause { \ + background-image: url("$2"); \ + -webkit-background-size: 30px 120px; \ + -moz-background-size: 30px 120px; \ + -o-background-size: 30px 120px; \ + background-size: 30px 120px; \ + } \ + } \ + \ + .playing .play, .playing .loading, .playing .error { display: none; } \ + .playing .pause { display: block; } \ + \ + .loading .play, .loading .pause, .loading .error { display: none; } \ + .loading .loading { display: block; } \ + \ + .error .time, .error .play, .error .pause, .error .scrubber, .error .loading { display: none; } \ + .error .error { display: block; } \ + .error .play-pause p { cursor: auto; } \ + .error .error-message { display: block; }', // The default event callbacks: trackEnded: function(e) {}, flashError: function() { @@ -105,8 +161,7 @@ errorMessage = getByClass(player.errorMessageClass, this.wrapper); container[audiojs].helpers.removeClass(this.wrapper, player.loadingClass); container[audiojs].helpers.addClass(this.wrapper, player.errorClass); - errorMessage.innerHTML = 'Ressource inconnue: "'+this.mp3+'"'; - errorMessage.parentNode.parentNode.style.display='none'; // MODIF JG + errorMessage.innerHTML = 'Error loading: "'+this.mp3+'"'; }, init: function() { var player = this.settings.createPlayer; @@ -123,7 +178,7 @@ loadProgress: function(percent) { var player = this.settings.createPlayer, loaded = getByClass(player.loaderClass, this.wrapper); - loaded.style.width = (100 * percent) + '%'; + loaded.style.width = Math.round(100 * percent) + '%'; }, playPause: function() { if (this.playing) this.settings.play(); @@ -131,6 +186,7 @@ }, play: function() { var player = this.settings.createPlayer; + container[audiojs].helpers.removeClass(this.wrapper, player.errorClass); container[audiojs].helpers.addClass(this.wrapper, player.playingClass); }, pause: function() { @@ -140,19 +196,13 @@ updatePlayhead: function(percent) { var player = this.settings.createPlayer, progress = getByClass(player.progressClass, this.wrapper); - progress.style.width = (100 * percent) + '%'; + progress.style.width = Math.round(100 * percent) + '%'; var played = getByClass(player.playedClass, this.wrapper), p = this.duration * percent, m = Math.floor(p / 60), s = Math.floor(p % 60); played.innerHTML = ((m<10?'0':'')+m+':'+(s<10?'0':'')+s); - }, - volume: function(percent) { - var player = this.settings.createPlayer, - volume = getByClass(player.volumeClass, this.wrapper), - level = getByClass(player.levelClass, this.wrapper); - level.style.width = (volume.offsetWidth * percent) + 'px'; } }, @@ -174,22 +224,19 @@ // `createAll()` // Creates multiple `audiojs` instances. // If `elements` is `null`, then automatically find any `<audio>` tags on the page and create `audiojs` instances for them. - createAll: function(options, elements) { - var audioElements = elements || document.getElementsByTagName('audio'), - instances = [], - options = options || {}, - re = new RegExp('audiojs_wrapper\\d+'); - for (var i = 0, ii = audioElements.length; i < ii; i++) { - var e = audioElements[i].parentNode, - wrapped = false; - if (e && e.getAttribute) { - var id = e.getAttribute('id'); - if (id != null && re.test(id)) wrapped = true; - } - if (! wrapped) instances.push(this.newInstance(audioElements[i], options)); - } - return instances; - }, + createAll: function(options, elements) { + var audioElements = elements || document.getElementsByTagName('audio'), + instances = [] + options = options || {}; + for (var i = 0, ii = audioElements.length; i < ii; i++) { + + if ((" " + audioElements[i].parentNode.className + " ").replace(/[\n\t]/g, " ").indexOf(" audiojs ") > -1) + continue; + + instances.push(this.newInstance(audioElements[i], options)); + } + return instances; + }, // ### Creating and returning a new instance // This goes through all the steps required to build out a usable `audiojs` instance. @@ -214,22 +261,20 @@ // Return a new `audiojs` instance. var audio = new container[audiojsInstance](element, s); + // If css has been passed in, dynamically inject it into the `<head>`. + if (s.css) this.helpers.injectCss(audio, s.css); + // If `<audio>` or mp3 playback isn't supported, insert the swf & attach the required events for it. if (s.useFlash && s.hasFlash) { this.injectFlash(audio, id); this.attachFlashEvents(audio.wrapper, audio); } else if (s.useFlash && !s.hasFlash) { - this.settings.flashError.apply(audio); + s.flashError.apply(audio); } // Attach event callbacks to the new audiojs instance. if (!s.useFlash || (s.useFlash && s.hasFlash)) this.attachEvents(audio.wrapper, audio); - // Set initial volume to the new audiojs instance. - if (!s.useFlash) { - audio.setVolume.call(audio, s.initialVolume); - } - // Store the newly-created `audiojs` instance. this.instances[id] = audio; return audio; @@ -240,8 +285,7 @@ createPlayer: function(element, player, id) { var wrapper = document.createElement('div'), newElement = element.cloneNode(true); - var divClass = element.getAttribute('class') || 'audiojs'; - wrapper.setAttribute('class', divClass); + wrapper.setAttribute('class', 'audiojs'); wrapper.setAttribute('className', 'audiojs'); wrapper.setAttribute('id', id); @@ -266,29 +310,12 @@ var player = audio.settings.createPlayer, playPause = getByClass(player.playPauseClass, wrapper), scrubber = getByClass(player.scrubberClass, wrapper), - volume = getByClass(player.volumeClass, wrapper), - getOffsetSum = function(elem) { + leftPos = function(elem) { var curleft = 0; if (elem.offsetParent) { do { curleft += elem.offsetLeft; } while (elem = elem.offsetParent); } return curleft; - }, - getOffsetRect = function(elem) { - var box = elem.getBoundingClientRect(), - body = document.body, - docElem = document.documentElement, - scrollLeft = window.pageXOffset || docElem.scrollLeft || body.scrollLeft, - clientLeft = docElem.clientLeft || body.clientLeft || 0; - - return Math.round(box.left + scrollLeft - clientLeft); - }, - getLeftOffset = function(elem) { - if (elem.getBoundingClientRect) { - return getOffsetRect(elem) - } else { - return getOffsetSum(elem) - } }; container[audiojs].events.addListener(playPause, 'click', function(e) { @@ -296,15 +323,10 @@ }); container[audiojs].events.addListener(scrubber, 'click', function(e) { - var relativeLeft = e.clientX - getLeftOffset(this); + var relativeLeft = e.clientX - leftPos(this); audio.skipTo(relativeLeft / scrubber.offsetWidth); }); - container[audiojs].events.addListener(volume, 'click', function(e) { - var relativeLeft = e.clientX - getLeftOffset(this); - audio.setVolume(relativeLeft / volume.offsetWidth); - }); - // _If flash is being used, then the following handlers don't need to be registered._ if (audio.settings.useFlash) return; @@ -371,7 +393,6 @@ } audio['setVolume'] = function(v) { audio.element.setVolume(v); - audio.settings.volume.call(audio, [v]) } audio['loadStarted'] = function() { // Load the mp3 specified by the audio element into the swf. @@ -424,6 +445,41 @@ var re = new RegExp('(\\s|^)'+className+'(\\s|$)'); element.className = element.className.replace(re,' '); }, + // **Dynamic CSS injection** + // Takes a string of css, inserts it into a `<style>`, then injects it in at the very top of the `<head>`. This ensures any user-defined styles will take precedence. + injectCss: function(audio, string) { + + // If an `audiojs` `<style>` tag already exists, then append to it rather than creating a whole new `<style>`. + var prepend = '', + styles = document.getElementsByTagName('style'), + css = string.replace(/\$1/g, audio.settings.imageLocation); + css = css.replace(/\$2/g, audio.settings.retinaImageLocation); + + for (var i = 0, ii = styles.length; i < ii; i++) { + var title = styles[i].getAttribute('title'); + if (title && ~title.indexOf('audiojs')) { + style = styles[i]; + if (style.innerHTML === css) return; + prepend = style.innerHTML; + break; + } + }; + + var head = document.getElementsByTagName('head')[0], + firstchild = head.firstChild, + style = document.createElement('style'); + + if (!head) return; + + style.setAttribute('type', 'text/css'); + style.setAttribute('title', 'audiojs'); + + if (style.styleSheet) style.styleSheet.cssText = prepend + css; + else style.appendChild(document.createTextNode(prepend + css)); + + if (firstchild) head.insertBefore(style, firstchild); + else head.appendChild(style); + }, // **Handle all the IE6+7 requirements for cloning `<audio>` nodes** // Create a html5-safe document fragment by injecting an `<audio>` element into the document fragment. cloneHtml5Node: function(audioTag) { @@ -492,9 +548,9 @@ loadTimer = setInterval(function() { audio.loadProgress.apply(audio); if (audio.loadedPercent >= 1) clearInterval(loadTimer); - }); + }, 200); } - }, 10); + }, 200); audio.readyTimer = readyTimer; audio.loadTimer = loadTimer; }, @@ -639,7 +695,6 @@ }, setVolume: function(v) { this.element.volume = v; - this.settings.volume.apply(this, [v]); }, trackEnded: function(e) { this.skipTo.apply(this, [0]); diff --git a/public/admin/js/audiojs/audiojs/audio.min.js b/public/admin/js/audiojs/audiojs/audio.min.js old mode 100755 new mode 100644 index 3f465e7fed7..83e23812d40 --- a/public/admin/js/audiojs/audiojs/audio.min.js +++ b/public/admin/js/audiojs/audiojs/audio.min.js @@ -1,24 +1,24 @@ -(function(g,n,f){var i;a:{var k=/audio(.min)?.js.*/,m=document.getElementsByTagName("script");i=0;for(var j=m.length;i<j;i++){var o=m[i].getAttribute("src");if(k.test(o)){i=o.replace(k,"");break a}}i=void 0}k=' <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="$1" width="1" height="1" name="$1" style="position: absolute; left: -1px;"> <param name="movie" value="$2?playerInstance='+g+'.instances[\'$1\']&datetime=$3"> <param name="allowscriptaccess" value="always"> <embed name="$1" src="$2?playerInstance='+ -g+'.instances[\'$1\']&datetime=$3" width="1" height="1" allowscriptaccess="always"> </object>';m=i+"player-graphics.gif";i+="audiojs.swf";j=document.createElement("audio");j=!(j.canPlayType&&j.canPlayType("audio/mpeg;").replace(/no/,""));f[g]={instanceCount:0,instances:{},flashSource:k,settings:{autoplay:!1,loop:!1,preload:!0,initialVolume:0.5,imageLocation:m,swfLocation:i,useFlash:j,hasFlash:function(){if(navigator.plugins&&navigator.plugins.length&&navigator.plugins["Shockwave Flash"])return!0; -if(navigator.mimeTypes&&navigator.mimeTypes.length){var a=navigator.mimeTypes["application/x-shockwave-flash"];return a&&a.enabledPlugin}try{return new ActiveXObject("ShockwaveFlash.ShockwaveFlash"),!0}catch(b){}return!1}(),createPlayer:{markup:' <div class="play-pause"> <p class="play"></p> <p class="pause"></p> <p class="loading"></p> <p class="error"></p> </div> <div class="scrubber"> <div class="progress"></div> <div class="loaded"></div> </div> <div class="time"> <em class="played">00:00</em>/<strong class="duration">00:00</strong> </div> <div class="volume"> <div class="level"></div> </div> <div class="error-message"></div>', -playPauseClass:"play-pause",scrubberClass:"scrubber",progressClass:"progress",loaderClass:"loaded",timeClass:"time",durationClass:"duration",playedClass:"played",errorMessageClass:"error-message",playingClass:"playing",loadingClass:"loading",errorClass:"error",volumeClass:"volume",levelClass:"level"},trackEnded:function(){},flashError:function(){var a=this.settings.createPlayer,b=h(a.errorMessageClass,this.wrapper),c='Missing <a href="http://get.adobe.com/flashplayer/">flash player</a> plugin.';this.mp3&& -(c+=' <a href="'+this.mp3+'">Download audio file</a>.');f[g].helpers.removeClass(this.wrapper,a.loadingClass);f[g].helpers.addClass(this.wrapper,a.errorClass);b.innerHTML=c},loadError:function(){var a=this.settings.createPlayer,b=h(a.errorMessageClass,this.wrapper);f[g].helpers.removeClass(this.wrapper,a.loadingClass);f[g].helpers.addClass(this.wrapper,a.errorClass);b.innerHTML='Error loading: "'+this.mp3+'"';b.parentNode.parentNode.style.display='none';},init:function(){f[g].helpers.addClass(this.wrapper,this.settings.createPlayer.loadingClass)}, -loadStarted:function(){var a=this.settings.createPlayer,b=h(a.durationClass,this.wrapper),c=Math.floor(this.duration/60),d=Math.floor(this.duration%60);f[g].helpers.removeClass(this.wrapper,a.loadingClass);b.innerHTML=(10>c?"0":"")+c+":"+(10>d?"0":"")+d},loadProgress:function(a){h(this.settings.createPlayer.loaderClass,this.wrapper).style.width=100*a+"%"},playPause:function(){this.playing?this.settings.play():this.settings.pause()},play:function(){f[g].helpers.addClass(this.wrapper,this.settings.createPlayer.playingClass)}, -pause:function(){f[g].helpers.removeClass(this.wrapper,this.settings.createPlayer.playingClass)},updatePlayhead:function(a){var b=this.settings.createPlayer;h(b.progressClass,this.wrapper).style.width=100*a+"%";var b=h(b.playedClass,this.wrapper),c=this.duration*a,a=Math.floor(c/60),c=Math.floor(c%60);b.innerHTML=(10>a?"0":"")+a+":"+(10>c?"0":"")+c},volume:function(a){var b=this.settings.createPlayer,c=h(b.volumeClass,this.wrapper);h(b.levelClass,this.wrapper).style.width=c.offsetWidth*a+"px"}},create:function(a, -b){b=b||{};return a.length?this.createAll(b,a):this.newInstance(a,b)},createAll:function(a,b){for(var c=b||document.getElementsByTagName("audio"),d=[],a=a||{},e=/audiojs_wrapper\d+/,f=0,g=c.length;f<g;f++){var l=c[f].parentNode,q=!1;l&&l.getAttribute&&(l=l.getAttribute("id"),null!=l&&e.test(l)&&(q=!0));q||d.push(this.newInstance(c[f],a))}return d},newInstance:function(a,b){var c=this.helpers.clone(this.settings),d="audiojs"+this.instanceCount,e="audiojs_wrapper"+this.instanceCount;this.instanceCount++; -null!=a.getAttribute("autoplay")&&(c.autoplay=!0);null!=a.getAttribute("loop")&&(c.loop=!0);"none"==a.getAttribute("preload")&&(c.preload=!1);b&&this.helpers.merge(c,b);c.createPlayer.markup?a=this.createPlayer(a,c.createPlayer,e):a.parentNode.setAttribute("id",e);e=new f[n](a,c);c.useFlash&&c.hasFlash?(this.injectFlash(e,d),this.attachFlashEvents(e.wrapper,e)):c.useFlash&&!c.hasFlash&&this.settings.flashError.apply(e);(!c.useFlash||c.useFlash&&c.hasFlash)&&this.attachEvents(e.wrapper,e);c.useFlash|| -e.setVolume.call(e,c.initialVolume);return this.instances[d]=e},createPlayer:function(a,b,c){var d=document.createElement("div"),e=a.cloneNode(!0);d.setAttribute("class","audiojs");d.setAttribute("className","audiojs");d.setAttribute("id",c);e.outerHTML&&!document.createElement("audio").canPlayType?(e=this.helpers.cloneHtml5Node(a),d.innerHTML=b.markup,d.appendChild(e),a.outerHTML=d.outerHTML,d=document.getElementById(c)):(d.appendChild(e),d.innerHTML+=b.markup,a.parentNode.replaceChild(d,a));return d.getElementsByTagName("audio")[0]}, -attachEvents:function(a,b){if(b.settings.createPlayer){var c=b.settings.createPlayer,d=h(c.playPauseClass,a),e=h(c.scrubberClass,a),i=h(c.volumeClass,a),p=function(b){if(b.getBoundingClientRect){var b=b.getBoundingClientRect(),a=document.body,c=document.documentElement;return Math.round(b.left+(window.pageXOffset||c.scrollLeft||a.scrollLeft)-(c.clientLeft||a.clientLeft||0))}a=0;if(b.offsetParent){do a+=b.offsetLeft;while(b=b.offsetParent)}return a};f[g].events.addListener(d,"click",function(){b.playPause.apply(b)}); -f[g].events.addListener(e,"click",function(a){a=a.clientX-p(this);b.skipTo(a/e.offsetWidth)});f[g].events.addListener(i,"click",function(a){a=a.clientX-p(this);b.setVolume(a/i.offsetWidth)});b.settings.useFlash||(f[g].events.trackLoadProgress(b),f[g].events.addListener(b.element,"timeupdate",function(){b.updatePlayhead.apply(b)}),f[g].events.addListener(b.element,"ended",function(){b.trackEnded.apply(b)}),f[g].events.addListener(b.source,"error",function(){clearInterval(b.readyTimer);clearInterval(b.loadTimer); -b.settings.loadError.apply(b)}))}},attachFlashEvents:function(a,b){b.swfReady=!1;b.load=function(a){b.mp3=a;b.swfReady&&b.element.load(a)};b.loadProgress=function(a,d){b.loadedPercent=a;b.duration=d;b.settings.loadStarted.apply(b);b.settings.loadProgress.apply(b,[a])};b.skipTo=function(a){a>b.loadedPercent||(b.updatePlayhead.call(b,[a]),b.element.skipTo(a))};b.updatePlayhead=function(a){b.settings.updatePlayhead.apply(b,[a])};b.play=function(){b.settings.preload||(b.settings.preload=!0,b.element.init(b.mp3)); -b.playing=!0;b.element.pplay();b.settings.play.apply(b)};b.pause=function(){b.playing=!1;b.element.ppause();b.settings.pause.apply(b)};b.setVolume=function(a){b.element.setVolume(a);b.settings.volume.call(b,[a])};b.loadStarted=function(){b.swfReady=!0;b.settings.preload&&b.element.init(b.mp3);b.settings.autoplay&&b.play.apply(b)}},injectFlash:function(a,b){var c=this.flashSource.replace(/\$1/g,b),c=c.replace(/\$2/g,a.settings.swfLocation),c=c.replace(/\$3/g,+new Date+Math.random()),d=a.wrapper.innerHTML, -e=document.createElement("div");e.innerHTML=c+d;a.wrapper.innerHTML=e.innerHTML;a.element=this.helpers.getSwf(b)},helpers:{merge:function(a,b){for(attr in b)if(a.hasOwnProperty(attr)||b.hasOwnProperty(attr))a[attr]=b[attr]},clone:function(a){if(null==a||"object"!==typeof a)return a;var b=new a.constructor,c;for(c in a)b[c]=arguments.callee(a[c]);return b},addClass:function(a,b){RegExp("(\\s|^)"+b+"(\\s|$)").test(a.className)||(a.className+=" "+b)},removeClass:function(a,b){a.className=a.className.replace(RegExp("(\\s|^)"+ -b+"(\\s|$)")," ")},cloneHtml5Node:function(a){var b=document.createDocumentFragment(),c=b.createElement?b:document;c.createElement("audio");c=c.createElement("div");b.appendChild(c);c.innerHTML=a.outerHTML;return c.firstChild},getSwf:function(a){a=document[a]||window[a];return 1<a.length?a[a.length-1]:a}},events:{memoryLeaking:!1,listeners:[],addListener:function(a,b,c){a.addEventListener?a.addEventListener(b,c,!1):a.attachEvent&&(this.listeners.push(a),this.memoryLeaking||(window.attachEvent("onunload", -function(){if(this.listeners)for(var a=0,b=this.listeners.length;a<b;a++)f[g].events.purge(this.listeners[a])}),this.memoryLeaking=!0),a.attachEvent("on"+b,function(){c.call(a,window.event)}))},trackLoadProgress:function(a){if(a.settings.preload){var b,c,d=/(ipod|iphone|ipad)/i.test(navigator.userAgent);b=setInterval(function(){-1<a.element.readyState&&(d||a.init.apply(a));1<a.element.readyState&&(a.settings.autoplay&&a.play.apply(a),clearInterval(b),c=setInterval(function(){a.loadProgress.apply(a); -1<=a.loadedPercent&&clearInterval(c)}))},10);a.readyTimer=b;a.loadTimer=c}},purge:function(a){var b=a.attributes,c;if(b)for(c=0;c<b.length;c+=1)"function"===typeof a[b[c].name]&&(a[b[c].name]=null);if(b=a.childNodes)for(c=0;c<b.length;c+=1)purge(a.childNodes[c])},ready:function(a){var b=window,c=!1,d=!0,e=b.document,f=e.documentElement,g=e.addEventListener?"addEventListener":"attachEvent",i=e.addEventListener?"removeEventListener":"detachEvent",h=e.addEventListener?"":"on",j=function(d){if(!("readystatechange"== -d.type&&"complete"!=e.readyState)&&(("load"==d.type?b:e)[i](h+d.type,j,!1),!c&&(c=!0)))a.call(b,d.type||d)},k=function(){try{f.doScroll("left")}catch(a){setTimeout(k,50);return}j("poll")};if("complete"==e.readyState)a.call(b,"lazy");else{if(e.createEventObject&&f.doScroll){try{d=!b.frameElement}catch(m){}d&&k()}e[g](h+"DOMContentLoaded",j,!1);e[g](h+"readystatechange",j,!1);b[g](h+"load",j,!1)}}}};f[n]=function(a,b){this.element=a;this.wrapper=a.parentNode;this.source=a.getElementsByTagName("source")[0]|| -a;var c=a.getElementsByTagName("source")[0];this.mp3=a.getAttribute("src")||(c?c.getAttribute("src"):null);this.settings=b;this.loadStartedCalled=!1;this.loadedPercent=0;this.duration=1;this.playing=!1};f[n].prototype={updatePlayhead:function(){this.settings.updatePlayhead.apply(this,[this.element.currentTime/this.duration])},skipTo:function(a){a>this.loadedPercent||(this.element.currentTime=this.duration*a,this.updatePlayhead())},load:function(a){this.loadStartedCalled=!1;this.source.setAttribute("src", -a);this.element.load();this.mp3=a;f[g].events.trackLoadProgress(this)},loadError:function(){this.settings.loadError.apply(this)},init:function(){this.settings.init.apply(this)},loadStarted:function(){if(!this.element.duration)return!1;this.duration=this.element.duration;this.updatePlayhead();this.settings.loadStarted.apply(this)},loadProgress:function(){null!=this.element.buffered&&this.element.buffered.length&&(this.loadStartedCalled||(this.loadStartedCalled=this.loadStarted()),this.loadedPercent= -this.element.buffered.end(this.element.buffered.length-1)/this.duration,this.settings.loadProgress.apply(this,[this.loadedPercent]))},playPause:function(){this.playing?this.pause():this.play()},play:function(){/(ipod|iphone|ipad)/i.test(navigator.userAgent)&&0==this.element.readyState&&this.init.apply(this);this.settings.preload||(this.settings.preload=!0,this.element.setAttribute("preload","auto"),f[g].events.trackLoadProgress(this));this.playing=!0;this.element.play();this.settings.play.apply(this)}, -pause:function(){this.playing=!1;this.element.pause();this.settings.pause.apply(this)},setVolume:function(a){this.element.volume=a;this.settings.volume.apply(this,[a])},trackEnded:function(){this.skipTo.apply(this,[0]);this.settings.loop||this.pause.apply(this);this.settings.trackEnded.apply(this)}};var h=function(a,b){var c=[],b=b||document;if(b.getElementsByClassName)c=b.getElementsByClassName(a);else{var d,e,f=b.getElementsByTagName("*"),g=RegExp("(^|\\s)"+a+"(\\s|$)");d=0;for(e=f.length;d<e;d++)g.test(f[d].className)&& -c.push(f[d])}return 1<c.length?c:c[0]}})("audiojs","audiojsInstance",this); +(function(f,n,g){var i;a:{var l=/audio(.min)?.js.*/,m=document.getElementsByTagName("script"),k=0;for(i=m.length;k<i;k++){var j=m[k].getAttribute("src");if(l.test(j)){i=j.replace(l,"");break a}}i=void 0}l=' <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="$1" width="1" height="1" name="$1" style="position: absolute; left: -1px;"> <param name="movie" value="$2?playerInstance='+f+'.instances[\'$1\']&datetime=$3"> <param name="allowscriptaccess" value="always"> <embed name="$1" src="$2?playerInstance='+ +f+'.instances[\'$1\']&datetime=$3" width="1" height="1" allowscriptaccess="always"> </object>';m=i+"player-graphics.gif";k=i+"player-graphics@2x.gif";i+="audiojs.swf";j=document.createElement("audio");j=!(j.canPlayType&&j.canPlayType("audio/mpeg;").replace(/no/,""));g[f]={instanceCount:0,instances:{},flashSource:l,settings:{autoplay:!1,loop:!1,preload:!0,imageLocation:m,retinaImageLocation:k,swfLocation:i,useFlash:j,hasFlash:function(){if(navigator.plugins&&navigator.plugins.length&&navigator.plugins["Shockwave Flash"])return!0; +if(navigator.mimeTypes&&navigator.mimeTypes.length){var a=navigator.mimeTypes["application/x-shockwave-flash"];return a&&a.enabledPlugin}try{return new ActiveXObject("ShockwaveFlash.ShockwaveFlash"),!0}catch(b){}return!1}(),createPlayer:{markup:' <div class="play-pause"> <p class="play"></p> <p class="pause"></p> <p class="loading"></p> <p class="error"></p> </div> <div class="scrubber"> <div class="progress"></div> <div class="loaded"></div> </div> <div class="time"> <em class="played">00:00</em>/<strong class="duration">00:00</strong> </div> <div class="error-message"></div>', +playPauseClass:"play-pause",scrubberClass:"scrubber",progressClass:"progress",loaderClass:"loaded",timeClass:"time",durationClass:"duration",playedClass:"played",errorMessageClass:"error-message",playingClass:"playing",loadingClass:"loading",errorClass:"error"},css:' .audiojs audio { position: absolute; left: -1px; } .audiojs { width: 460px; height: 36px; background: #404040; overflow: hidden; font-family: monospace; font-size: 12px; background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #444), color-stop(0.5, #555), color-stop(0.51, #444), color-stop(1, #444)); background-image: -moz-linear-gradient(center top, #444 0%, #555 50%, #444 51%, #444 100%); -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); -moz-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); -o-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); } .audiojs .play-pause { width: 25px; height: 40px; padding: 4px 6px; margin: 0px; float: left; overflow: hidden; border-right: 1px solid #000; } .audiojs p { display: none; width: 25px; height: 40px; margin: 0px; cursor: pointer; } .audiojs .play { display: block; } .audiojs .scrubber { position: relative; float: left; width: 280px; background: #5a5a5a; height: 14px; margin: 10px; border-top: 1px solid #3f3f3f; border-left: 0px; border-bottom: 0px; overflow: hidden; } .audiojs .progress { position: absolute; top: 0px; left: 0px; height: 14px; width: 0px; background: #ccc; z-index: 1; background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ccc), color-stop(0.5, #ddd), color-stop(0.51, #ccc), color-stop(1, #ccc)); background-image: -moz-linear-gradient(center top, #ccc 0%, #ddd 50%, #ccc 51%, #ccc 100%); } .audiojs .loaded { position: absolute; top: 0px; left: 0px; height: 14px; width: 0px; background: #000; background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #222), color-stop(0.5, #333), color-stop(0.51, #222), color-stop(1, #222)); background-image: -moz-linear-gradient(center top, #222 0%, #333 50%, #222 51%, #222 100%); } .audiojs .time { float: left; height: 36px; line-height: 36px; margin: 0px 0px 0px 6px; padding: 0px 6px 0px 12px; border-left: 1px solid #000; color: #ddd; text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5); } .audiojs .time em { padding: 0px 2px 0px 0px; color: #f9f9f9; font-style: normal; } .audiojs .time strong { padding: 0px 0px 0px 2px; font-weight: normal; } .audiojs .error-message { float: left; display: none; margin: 0px 10px; height: 36px; width: 400px; overflow: hidden; line-height: 36px; white-space: nowrap; color: #fff; text-overflow: ellipsis; -o-text-overflow: ellipsis; -icab-text-overflow: ellipsis; -khtml-text-overflow: ellipsis; -moz-text-overflow: ellipsis; -webkit-text-overflow: ellipsis; } .audiojs .error-message a { color: #eee; text-decoration: none; padding-bottom: 1px; border-bottom: 1px solid #999; white-space: wrap; } .audiojs .play { background: url("$1") -2px -1px no-repeat; } .audiojs .loading { background: url("$1") -2px -31px no-repeat; } .audiojs .error { background: url("$1") -2px -61px no-repeat; } .audiojs .pause { background: url("$1") -2px -91px no-repeat; } @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2) { .audiojs .play, .audiojs .loading, .audiojs .error, .audiojs .pause { background-image: url("$2"); -webkit-background-size: 30px 120px; -moz-background-size: 30px 120px; -o-background-size: 30px 120px; background-size: 30px 120px; } } .playing .play, .playing .loading, .playing .error { display: none; } .playing .pause { display: block; } .loading .play, .loading .pause, .loading .error { display: none; } .loading .loading { display: block; } .error .time, .error .play, .error .pause, .error .scrubber, .error .loading { display: none; } .error .error { display: block; } .error .play-pause p { cursor: auto; } .error .error-message { display: block; }', +trackEnded:function(){},flashError:function(){var a=this.settings.createPlayer,b=h(a.errorMessageClass,this.wrapper),c='Missing <a href="http://get.adobe.com/flashplayer/">flash player</a> plugin.';this.mp3&&(c+=' <a href="'+this.mp3+'">Download audio file</a>.');g[f].helpers.removeClass(this.wrapper,a.loadingClass);g[f].helpers.addClass(this.wrapper,a.errorClass);b.innerHTML=c},loadError:function(){var a=this.settings.createPlayer,b=h(a.errorMessageClass,this.wrapper);g[f].helpers.removeClass(this.wrapper, +a.loadingClass);g[f].helpers.addClass(this.wrapper,a.errorClass);b.innerHTML='Error loading: "'+this.mp3+'"'},init:function(){g[f].helpers.addClass(this.wrapper,this.settings.createPlayer.loadingClass)},loadStarted:function(){var a=this.settings.createPlayer,b=h(a.durationClass,this.wrapper),c=Math.floor(this.duration/60),d=Math.floor(this.duration%60);g[f].helpers.removeClass(this.wrapper,a.loadingClass);b.innerHTML=(10>c?"0":"")+c+":"+(10>d?"0":"")+d},loadProgress:function(a){var b=this.settings.createPlayer, +c=h(b.scrubberClass,this.wrapper);h(b.loaderClass,this.wrapper).style.width=c.offsetWidth*a+"px"},playPause:function(){this.playing?this.settings.play():this.settings.pause()},play:function(){g[f].helpers.addClass(this.wrapper,this.settings.createPlayer.playingClass)},pause:function(){g[f].helpers.removeClass(this.wrapper,this.settings.createPlayer.playingClass)},updatePlayhead:function(a){var b=this.settings.createPlayer,c=h(b.scrubberClass,this.wrapper);h(b.progressClass,this.wrapper).style.width= +c.offsetWidth*a+"px";b=h(b.playedClass,this.wrapper);c=this.duration*a;a=Math.floor(c/60);c=Math.floor(c%60);b.innerHTML=(10>a?"0":"")+a+":"+(10>c?"0":"")+c}},create:function(a,b){b=b||{};return a.length?this.createAll(b,a):this.newInstance(a,b)},createAll:function(a,b){for(var c=b||document.getElementsByTagName("audio"),d=[],a=a||{},e=0,g=c.length;e<g;e++)d.push(this.newInstance(c[e],a));return d},newInstance:function(a,b){var c=this.helpers.clone(this.settings),d="audiojs"+this.instanceCount,e= +"audiojs_wrapper"+this.instanceCount;this.instanceCount++;null!=a.getAttribute("autoplay")&&(c.autoplay=!0);null!=a.getAttribute("loop")&&(c.loop=!0);"none"==a.getAttribute("preload")&&(c.preload=!1);b&&this.helpers.merge(c,b);c.createPlayer.markup?a=this.createPlayer(a,c.createPlayer,e):a.parentNode.setAttribute("id",e);e=new g[n](a,c);c.css&&this.helpers.injectCss(e,c.css);c.useFlash&&c.hasFlash?(this.injectFlash(e,d),this.attachFlashEvents(e.wrapper,e)):c.useFlash&&!c.hasFlash&&this.settings.flashError.apply(e); +(!c.useFlash||c.useFlash&&c.hasFlash)&&this.attachEvents(e.wrapper,e);return this.instances[d]=e},createPlayer:function(a,b,c){var d=document.createElement("div"),e=a.cloneNode(!0);d.setAttribute("class","audiojs");d.setAttribute("className","audiojs");d.setAttribute("id",c);e.outerHTML&&!document.createElement("audio").canPlayType?(e=this.helpers.cloneHtml5Node(a),d.innerHTML=b.markup,d.appendChild(e),a.outerHTML=d.outerHTML,d=document.getElementById(c)):(d.appendChild(e),d.innerHTML+=b.markup,a.parentNode.replaceChild(d, +a));return d.getElementsByTagName("audio")[0]},attachEvents:function(a,b){if(b.settings.createPlayer){var c=b.settings.createPlayer,d=h(c.playPauseClass,a),e=h(c.scrubberClass,a);g[f].events.addListener(d,"click",function(){b.playPause.apply(b)});g[f].events.addListener(e,"click",function(a){var a=a.clientX,c=this,d=0;if(c.offsetParent){do d+=c.offsetLeft;while(c=c.offsetParent)}b.skipTo((a-d)/e.offsetWidth)});b.settings.useFlash||(g[f].events.trackLoadProgress(b),g[f].events.addListener(b.element, +"timeupdate",function(){b.updatePlayhead.apply(b)}),g[f].events.addListener(b.element,"ended",function(){b.trackEnded.apply(b)}),g[f].events.addListener(b.source,"error",function(){clearInterval(b.readyTimer);clearInterval(b.loadTimer);b.settings.loadError.apply(b)}))}},attachFlashEvents:function(a,b){b.swfReady=!1;b.load=function(a){b.mp3=a;b.swfReady&&b.element.load(a)};b.loadProgress=function(a,d){b.loadedPercent=a;b.duration=d;b.settings.loadStarted.apply(b);b.settings.loadProgress.apply(b,[a])}; +b.skipTo=function(a){a>b.loadedPercent||(b.updatePlayhead.call(b,[a]),b.element.skipTo(a))};b.updatePlayhead=function(a){b.settings.updatePlayhead.apply(b,[a])};b.play=function(){b.settings.preload||(b.settings.preload=!0,b.element.init(b.mp3));b.playing=!0;b.element.pplay();b.settings.play.apply(b)};b.pause=function(){b.playing=!1;b.element.ppause();b.settings.pause.apply(b)};b.setVolume=function(a){b.element.setVolume(a)};b.loadStarted=function(){b.swfReady=!0;b.settings.preload&&b.element.init(b.mp3); +b.settings.autoplay&&b.play.apply(b)}},injectFlash:function(a,b){var c=this.flashSource.replace(/\$1/g,b),c=c.replace(/\$2/g,a.settings.swfLocation),c=c.replace(/\$3/g,+new Date+Math.random()),d=a.wrapper.innerHTML,e=document.createElement("div");e.innerHTML=c+d;a.wrapper.innerHTML=e.innerHTML;a.element=this.helpers.getSwf(b)},helpers:{merge:function(a,b){for(attr in b)if(a.hasOwnProperty(attr)||b.hasOwnProperty(attr))a[attr]=b[attr]},clone:function(a){if(null==a||"object"!==typeof a)return a;var b= +new a.constructor,c;for(c in a)b[c]=arguments.callee(a[c]);return b},addClass:function(a,b){RegExp("(\\s|^)"+b+"(\\s|$)").test(a.className)||(a.className+=" "+b)},removeClass:function(a,b){a.className=a.className.replace(RegExp("(\\s|^)"+b+"(\\s|$)")," ")},injectCss:function(a,b){for(var c="",d=document.getElementsByTagName("style"),e=b.replace(/\$1/g,a.settings.imageLocation),e=e.replace(/\$2/g,a.settings.retinaImageLocation),g=0,f=d.length;g<f;g++){var h=d[g].getAttribute("title");if(h&&~h.indexOf("audiojs")){f= +d[g];if(f.innerHTML===e)return;c=f.innerHTML;break}}d=document.getElementsByTagName("head")[0];g=d.firstChild;f=document.createElement("style");d&&(f.setAttribute("type","text/css"),f.setAttribute("title","audiojs"),f.styleSheet?f.styleSheet.cssText=c+e:f.appendChild(document.createTextNode(c+e)),g?d.insertBefore(f,g):d.appendChild(styleElement))},cloneHtml5Node:function(a){var b=document.createDocumentFragment(),c=b.createElement?b:document;c.createElement("audio");c=c.createElement("div");b.appendChild(c); +c.innerHTML=a.outerHTML;return c.firstChild},getSwf:function(a){a=document[a]||window[a];return 1<a.length?a[a.length-1]:a}},events:{memoryLeaking:!1,listeners:[],addListener:function(a,b,c){a.addEventListener?a.addEventListener(b,c,!1):a.attachEvent&&(this.listeners.push(a),this.memoryLeaking||(window.attachEvent("onunload",function(){if(this.listeners)for(var a=0,b=this.listeners.length;a<b;a++)g[f].events.purge(this.listeners[a])}),this.memoryLeaking=!0),a.attachEvent("on"+b,function(){c.call(a, +window.event)}))},trackLoadProgress:function(a){if(a.settings.preload){var b,c,d=/(ipod|iphone|ipad)/i.test(navigator.userAgent);b=setInterval(function(){-1<a.element.readyState&&(d||a.init.apply(a));1<a.element.readyState&&(a.settings.autoplay&&a.play.apply(a),clearInterval(b),c=setInterval(function(){a.loadProgress.apply(a);1<=a.loadedPercent&&clearInterval(c)}))},10);a.readyTimer=b;a.loadTimer=c}},purge:function(a){var b=a.attributes,c;if(b)for(c=0;c<b.length;c+=1)"function"===typeof a[b[c].name]&& +(a[b[c].name]=null);if(b=a.childNodes)for(c=0;c<b.length;c+=1)purge(a.childNodes[c])},ready:function(a){var b=window,c=!1,d=!0,e=b.document,f=e.documentElement,g=e.addEventListener?"addEventListener":"attachEvent",h=e.addEventListener?"removeEventListener":"detachEvent",i=e.addEventListener?"":"on",j=function(d){if(!("readystatechange"==d.type&&"complete"!=e.readyState)&&(("load"==d.type?b:e)[h](i+d.type,j,!1),!c&&(c=!0)))a.call(b,d.type||d)},k=function(){try{f.doScroll("left")}catch(a){setTimeout(k, +50);return}j("poll")};if("complete"==e.readyState)a.call(b,"lazy");else{if(e.createEventObject&&f.doScroll){try{d=!b.frameElement}catch(l){}d&&k()}e[g](i+"DOMContentLoaded",j,!1);e[g](i+"readystatechange",j,!1);b[g](i+"load",j,!1)}}}};g[n]=function(a,b){this.element=a;this.wrapper=a.parentNode;this.source=a.getElementsByTagName("source")[0]||a;var c=a.getElementsByTagName("source")[0];this.mp3=a.getAttribute("src")||(c?c.getAttribute("src"):null);this.settings=b;this.loadStartedCalled=!1;this.loadedPercent= +0;this.duration=1;this.playing=!1};g[n].prototype={updatePlayhead:function(){this.settings.updatePlayhead.apply(this,[this.element.currentTime/this.duration])},skipTo:function(a){a>this.loadedPercent||(this.element.currentTime=this.duration*a,this.updatePlayhead())},load:function(a){this.loadStartedCalled=!1;this.source.setAttribute("src",a);this.element.load();this.mp3=a;g[f].events.trackLoadProgress(this)},loadError:function(){this.settings.loadError.apply(this)},init:function(){this.settings.init.apply(this)}, +loadStarted:function(){if(!this.element.duration)return!1;this.duration=this.element.duration;this.updatePlayhead();this.settings.loadStarted.apply(this)},loadProgress:function(){null!=this.element.buffered&&this.element.buffered.length&&(this.loadStartedCalled||(this.loadStartedCalled=this.loadStarted()),this.loadedPercent=this.element.buffered.end(this.element.buffered.length-1)/this.duration,this.settings.loadProgress.apply(this,[this.loadedPercent]))},playPause:function(){this.playing?this.pause(): +this.play()},play:function(){/(ipod|iphone|ipad)/i.test(navigator.userAgent)&&0==this.element.readyState&&this.init.apply(this);this.settings.preload||(this.settings.preload=!0,this.element.setAttribute("preload","auto"),g[f].events.trackLoadProgress(this));this.playing=!0;this.element.play();this.settings.play.apply(this)},pause:function(){this.playing=!1;this.element.pause();this.settings.pause.apply(this)},setVolume:function(a){this.element.volume=a},trackEnded:function(){this.skipTo.apply(this, +[0]);this.settings.loop||this.pause.apply(this);this.settings.trackEnded.apply(this)}};var h=function(a,b){var c=[],b=b||document;if(b.getElementsByClassName)c=b.getElementsByClassName(a);else{var d,e,f=b.getElementsByTagName("*"),g=RegExp("(^|\\s)"+a+"(\\s|$)");d=0;for(e=f.length;d<e;d++)g.test(f[d].className)&&c.push(f[d])}return 1<c.length?c:c[0]}})("audiojs","audiojsInstance",this); diff --git a/public/admin/js/audiojs/audiojs/audiojs.as b/public/admin/js/audiojs/audiojs/audiojs.as old mode 100755 new mode 100644 diff --git a/public/admin/js/audiojs/audiojs/audiojs.swf b/public/admin/js/audiojs/audiojs/audiojs.swf old mode 100755 new mode 100644 index cc8086dcc05da3960770a4549799d6fc9dff6955..b6b0275ae2c8225c6fe929e42a9c47f8593fe354 GIT binary patch literal 1735 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 literal 1733 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 bf4%`z(WjdfCFjNadi7t&GcNxZ>Idt1uSZ>G diff --git a/public/admin/js/audiojs/audiojs/audiojs2.swf b/public/admin/js/audiojs/audiojs/audiojs2.swf deleted file mode 100755 index cc8086dcc05da3960770a4549799d6fc9dff6955..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1733 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 bf4%`z(WjdfCFjNadi7t&GcNxZ>Idt1uSZ>G diff --git a/public/admin/js/audiojs/audiojs/player-graphics.gif b/public/admin/js/audiojs/audiojs/player-graphics.gif old mode 100755 new mode 100644 diff --git a/public/admin/js/audiojs/audiojs/style-light.css b/public/admin/js/audiojs/audiojs/style-light.css index fe1a2c1624a..be99ebf3ff8 100755 --- a/public/admin/js/audiojs/audiojs/style-light.css +++ b/public/admin/js/audiojs/audiojs/style-light.css @@ -52,7 +52,7 @@ .audiojs .scrubber { position: relative; float: left; - width: 55%; + width: 69%; background: #CECECE; height: 12px; margin: 5px 5px; @@ -89,7 +89,6 @@ margin: 0px 0px 0px 0px; padding: 0px 5px; border-left: 1px solid #CECECE; - border-right: 1px solid #CECECE; } .audiojs .time em { padding: 0px 2px 0px 0px; diff --git a/public/admin/js/audiojs/demos/test1.html b/public/admin/js/audiojs/demos/test1.html old mode 100755 new mode 100644 index 24d1d5e5623..95b15223d52 --- a/public/admin/js/audiojs/demos/test1.html +++ b/public/admin/js/audiojs/demos/test1.html @@ -1,24 +1,36 @@ + <!DOCTYPE html> <html lang="en"> - <head> +<head> <meta charset="utf-8"> <title>Test 1 - audio.js</title> <style> - p { clear: both; } + p { clear: both; } </style> <script src="../audiojs/audio.js"></script> <script> - audiojs.events.ready(function() { - var as = audiojs.createAll(); - }); + audiojs.events.ready(function() { + var as = audiojs.createAll(); + }); </script> - <link rel="stylesheet" type="text/css" href="../audiojs/style-light.css"> - </head> - <body> - <h1>audiojs.createAll()</h1> - <p>Load from remote URL</p> - <audio controls="controls"> - <source src="http://s3.amazonaws.com/audiojs/02-juicy-r.mp3"> - </audio> - </body> -</html> +</head> +<body> +<h1>audiojs.createAll()</h1> +<p>Load from remote URL</p> +<audio preload="auto"> + <source src="https://raw.githubusercontent.com/kolber/audiojs/master/mp3/bensound-dubstep.mp3"> +</audio> + +<p>Load local file</p> +<audio preload="auto"> + <source src="../mp3/bensound-dubstep.mp3"> +</audio> + +<p>Load failure (from source)</p> +<audio preload="auto"> + <source src="./mp3/invalid.mp3"> +</audio> + +<p><a href="http://www.bensound.com/royalty-free-music/track/dubstep">Royalty Free Music from Bensound</a></p> +</body> +</html> \ No newline at end of file diff --git a/public/admin/js/audiojs/demos/test2.html b/public/admin/js/audiojs/demos/test2.html new file mode 100644 index 00000000000..42488101cee --- /dev/null +++ b/public/admin/js/audiojs/demos/test2.html @@ -0,0 +1,131 @@ + +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <title>Test 2 - audio.js</title> + <style> + p { clear: both; } + </style> + <script src="../audiojs/audio.js"></script> + <script> + audiojs.events.ready(function() { + var audios = document.getElementsByTagName('audio'); + + var a1 = audiojs.create(audios[0], { + css: false, + createPlayer: { + markup: false, + playPauseClass: 'play-pauseZ', + scrubberClass: 'scrubberZ', + progressClass: 'progressZ', + loaderClass: 'loadedZ', + timeClass: 'timeZ', + durationClass: 'durationZ', + playedClass: 'playedZ', + errorMessageClass: 'error-messageZ', + playingClass: 'playingZ', + loadingClass: 'loadingZ', + errorClass: 'errorZ' + } + }); + + var a2 = audiojs.create(audios[1]); + /* + var a3 = audiojs.create(audios[2], { + createPlayer: { + markup: '\ + <div class="play-pause"> \ + <p class="play"></p> \ + <p class="pause"></p> \ + <p class="loading"></p> \ + <p class="error"></p> \ + </div> \ + <div class="scrubber"> \ + <div class="progress"></div> \ + <div class="loaded"></div> \ + </div> \ + <div class="time"> \ + <em class="played">00:00</em>/<strong class="duration">00:00</strong> \ + </div> \ + <div class="error-message"></div>', + playPauseClass: 'play-pause', + scrubberClass: 'scrubber', + progressClass: 'progress', + loaderClass: 'loaded', + timeClass: 'time', + durationClass: 'duration', + playedClass: 'played', + errorMessageClass: 'error-message', + playingClass: 'playing', + loadingClass: 'loading', + errorClass: 'error' + }); + */ + }); + </script> +</head> +<body> +<h1>audiojs.create(element, settings)</h1> +<p>Manual player markup & css</p> +<style> + .audiojsZ audio { position: absolute; left: -1px; } + .audiojsZ { width: 460px; height: 36px; background: #f00; overflow: hidden; font-family: monospace; font-size: 12px; + -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); -moz-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); + -o-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3); } + .audiojsZ .play-pauseZ { width: 25px; height: 40px; padding: 4px 6px; margin: 0px; float: left; overflow: hidden; border-right: 1px solid #c00; } + .audiojsZ p { display: none; width: 25px; height: 40px; margin: 0px; cursor: pointer; } + .audiojsZ .playZ { display: block; } + .audiojsZ .scrubberZ { position: relative; float: left; width: 280px; background: #fcc; height: 14px; margin: 10px; border-left: 0px; border-bottom: 0px; overflow: hidden; } + .audiojsZ .progressZ { position: absolute; top: 0px; left: 0px; height: 14px; width: 0px; background: #600; z-index: 1; } + .audiojsZ .loadedZ { position: absolute; top: 0px; left: 0px; height: 14px; width: 0px; background: #c00; } + .audiojsZ .timeZ { float: left; height: 36px; line-height: 36px; margin: 0px 0px 0px 6px; padding: 0px 6px 0px 12px; border-left: 1px solid #c00; color: #600; text-shadow: 1px 1px 0px rgba(125, 0, 0, 0.5); } + .audiojsZ .timeZ em { padding: 0px 2px 0px 0px; color: #fcc; font-style: normal; } + .audiojsZ .timeZ strong { padding: 0px 0px 0px 2px; font-weight: normal; } + .audiojsZ .error-messageZ { float: left; display: none; margin: 0px 10px; height: 36px; width: 400px; overflow: hidden; line-height: 36px; white-space: nowrap; color: #fff; + text-overflow: ellipsis; -o-text-overflow: ellipsis; -icab-text-overflow: ellipsis; -khtml-text-overflow: ellipsis; -moz-text-overflow: ellipsis; -webkit-text-overflow: ellipsis; } + .audiojsZ .error-messageZ a { color: #eee; text-decoration: none; padding-bottom: 1px; border-bottom: 1px solid #999; white-space: wrap; } + + .audiojsZ .playZ { background: url('../audiojs/player-graphics.gif') -2px -1px no-repeat; } + .audiojsZ .loadingZ { background: url('../audiojs/player-graphics.gif') -2px -31px no-repeat; } + .audiojsZ .errorZ { background: url('../audiojs/player-graphics.gif') -2px -61px no-repeat; } + .audiojsZ .pauseZ { background: url('../audiojs/player-graphics.gif') -2px -91px no-repeat; } + + .playingZ .playZ, .playingZ .loadingZ, .playingZ .errorZ { display: none; } + .playingZ .pauseZ { display: block; } + + .loadingZ .playZ, .loadingZ .pauseZ, .loadingZ .errorZ { display: none; } + .loadingZ .loadingZ { display: block; } + + .errorZ .timeZ, .errorZ .playZ, .errorZ .pauseZ, .errorZ .scrubberZ, .errorZ .loadingZ { display: none; } + .errorZ .errorZ { display: block; } + .errorZ .play-pauseZ p { cursor: auto; } + .errorZ .error-messageZ { display: block; } +</style> +<div class="audiojsZ"> + <audio src="https://raw.githubusercontent.com/kolber/audiojs/master/mp3/bensound-dubstep.mp3" preload="auto"></audio> + <div class="play-pauseZ"> + <p class="playZ"></p> + <p class="pauseZ"></p> + <p class="loadingZ"></p> + <p class="errorZ"></p> + </div> + <div class="scrubberZ"> + <div class="progressZ"></div> + <div class="loadedZ"></div> + </div> + <div class="timeZ"> + <em class="playedZ">00:00</em>/<strong class="durationZ">00:00</strong> + </div> + <div class="error-messageZ"></div> +</div> + +<p>Automatic player markup</p> +<audio preload="auto" src="https://raw.githubusercontent.com/kolber/audiojs/master/mp3/bensound-dubstep.mp3"></audio> +<!-- + <p>Manual player markup (passed into the option object)</p> + <audio src="http://s3.amazonaws.com/audiojs/04-islands-is-the-limit.mp3" preload="auto"></audio> +--> + +</body> +</html> diff --git a/public/admin/js/audiojs/demos/test3.html b/public/admin/js/audiojs/demos/test3.html new file mode 100644 index 00000000000..9241fe955a9 --- /dev/null +++ b/public/admin/js/audiojs/demos/test3.html @@ -0,0 +1,27 @@ + +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <title>Test 3 - audio.js</title> + <style> + p { clear: both; } + </style> + <script src="../audiojs/audio.js"></script> + <script> + audiojs.events.ready(function() { + audiojs.createAll(); + }); + </script> +</head> +<body> +<h1>audiojs.create(element, settings)</h1> +<p>preload="none"</p> +<audio src="https://raw.githubusercontent.com/kolber/audiojs/master/mp3/bensound-dubstep.mp3" preload="none"></audio> +<p>autoplay="autoplay"</p> +<audio src="https://raw.githubusercontent.com/kolber/audiojs/master/mp3/bensound-dubstep.mp3" autoplay></audio> +<p>loop="loop"</p> +<audio src="https://raw.githubusercontent.com/kolber/audiojs/master/mp3/bensound-dubstep.mp3" loop></audio> +<p><a href="http://www.bensound.com/royalty-free-music/track/dubstep">Royalty Free Music from Bensound</a></p> +</body> +</html> diff --git a/public/admin/js/audiojs/demos/test4.html b/public/admin/js/audiojs/demos/test4.html old mode 100755 new mode 100644 index a6e515060ee..eb3e2fde4d4 --- a/public/admin/js/audiojs/demos/test4.html +++ b/public/admin/js/audiojs/demos/test4.html @@ -11,8 +11,8 @@ audiojs.events.ready(function() { var as = audiojs.createAll(); as[1].load({ - mp3: "http://s3.amazonaws.com/audiojs/02-juicy-r.mp3", - ogg: "http://s3.amazonaws.com/audiojs/02-juicy-r.ogg" + mp3: "https://raw.githubusercontent.com/kolber/audiojs/master/mp3/bensound-dubstep.mp3", + ogg: "https://raw.githubusercontent.com/kolber/audiojs/master/mp3/bensound-dubstep.ogg" }); }); </script> @@ -25,5 +25,6 @@ </audio> <p>Dynamically-loaded audio file with .ogg fallback</p> <audio preload="none"></audio> + <p><a href="http://www.bensound.com/royalty-free-music/track/dubstep">Royalty Free Music from Bensound</a></p> </body> </html> \ No newline at end of file diff --git a/public/admin/js/audiojs/demos/test5.html b/public/admin/js/audiojs/demos/test5.html new file mode 100644 index 00000000000..9d25508765d --- /dev/null +++ b/public/admin/js/audiojs/demos/test5.html @@ -0,0 +1,114 @@ + +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <title>audio.js</title> + <meta content="width=device-width, initial-scale=0.6" name="viewport"> + <style> + body { color: #666; font-family: sans-serif; line-height: 1.4; } + h1 { color: #444; font-size: 1.2em; padding: 14px 2px 12px; margin: 0px; } + h1 em { font-style: normal; color: #999; } + a { color: #888; text-decoration: none; } + #wrapper { width: 400px; margin: 40px auto; } + + ol { padding: 0px; margin: 0px; list-style: decimal-leading-zero inside; color: #ccc; width: 460px; border-top: 1px solid #ccc; font-size: 0.9em; } + ol li { position: relative; margin: 0px; padding: 9px 2px 10px; border-bottom: 1px solid #ccc; cursor: pointer; } + ol li a { display: block; text-indent: -3.3ex; padding: 0px 0px 0px 20px; } + li.playing { color: #aaa; text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.3); } + li.playing a { color: #000; } + li.playing:before { content: '♬'; width: 14px; height: 14px; padding: 3px; line-height: 14px; margin: 0px; position: absolute; left: -24px; top: 9px; color: #000; font-size: 13px; text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2); } + + #shortcuts { position: fixed; bottom: 0px; width: 100%; color: #666; font-size: 0.9em; margin: 60px 0px 0px; padding: 20px 20px 15px; background: #f3f3f3; background: rgba(240, 240, 240, 0.7); } + #shortcuts div { width: 460px; margin: 0px auto; } + #shortcuts h1 { margin: 0px 0px 6px; } + #shortcuts p { margin: 0px 0px 18px; } + #shortcuts em { font-style: normal; background: #d3d3d3; padding: 3px 9px; position: relative; left: -3px; + -webkit-border-radius: 4px; -moz-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; + -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); -o-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); } + + @media screen and (max-device-width: 480px) { + #wrapper { position: relative; left: -3%; } + #shortcuts { display: none; } + } + + .credit { + text-align: center; + } + </style> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script> + <script src="../audiojs/audio.js"></script> + <script> + $(function() { + // Setup the player to autoplay the next track + var a = audiojs.createAll({ + trackEnded: function() { + var next = $('ol li.playing').next(); + if (!next.length) next = $('ol li').first(); + next.addClass('playing').siblings().removeClass('playing'); + audio.load($('a', next).attr('data-src')); + audio.play(); + } + }); + + // Load in the first track + var audio = a[0]; + first = $('ol a').attr('data-src'); + $('ol li').first().addClass('playing'); + audio.load(first); + + // Load in a track on click + $('ol li').click(function(e) { + e.preventDefault(); + $(this).addClass('playing').siblings().removeClass('playing'); + audio.load($('a', this).attr('data-src')); + audio.play(); + }); + // Keyboard shortcuts + $(document).keydown(function(e) { + var unicode = e.charCode ? e.charCode : e.keyCode; + // right arrow + if (unicode == 39) { + var next = $('li.playing').next(); + if (!next.length) next = $('ol li').first(); + next.click(); + // back arrow + } else if (unicode == 37) { + var prev = $('li.playing').prev(); + if (!prev.length) prev = $('ol li').last(); + prev.click(); + // spacebar + } else if (unicode == 32) { + audio.playPause(); + } + }) + }); + </script> +</head> +<body> +<div id="wrapper"> + <h1>Bensound Royalty Free Tracks</h1> + <audio preload></audio> + <ol> + <li><a href="#" data-src="../mp3/bensound-dubstep.mp3">Dubstep</a></li> + <li><a href="#" data-src="../mp3/bensound-cute.mp3">Cute</a></li> + <li><a href="#" data-src="../mp3/bensound-buddy.mp3">Buddy</a></li> + <li><a href="#" data-src="../mp3/bensound-acousticbreeze.mp3">Acoustic Breeze</a></li> + <li><a href="#" data-src="../mp3/bensound-epic.mp3">Epic</a></li> + <li><a href="#" data-src="../mp3/bensound-funnysong.mp3">Funny Song</a></li> + <li><a href="#" data-src="../mp3/bensound-littleidea.mp3">Little Idea</a></li> + <li><a href="#" data-src="../mp3/bensound-betterdays.mp3">Better Days</a></li> + </ol> +</div> +<div id="shortcuts"> + <div> + <h1>Keyboard shortcuts:</h1> + <p><em>→</em> Next track</p> + <p><em>←</em> Previous track</p> + <p><em>Space</em> Play/pause</p> + </div> +</div> + +<p class="credit"><a href="http://www.bensound.com/royalty-free-music/">Royalty Free Music from Bensound</a></p> +</body> +</html> diff --git a/public/admin/js/audiojs/demos/test6.html b/public/admin/js/audiojs/demos/test6.html old mode 100755 new mode 100644 index c45956a96f4..a574a64dd9b --- a/public/admin/js/audiojs/demos/test6.html +++ b/public/admin/js/audiojs/demos/test6.html @@ -29,11 +29,13 @@ <body> <h1>audiojs.create(element, settings)</h1> <p>Volume</p> - <audio src="http://s3.amazonaws.com/audiojs/02-juicy-r.mp3"></audio> + <audio src="https://raw.githubusercontent.com/kolber/audiojs/master/mp3/bensound-dubstep.mp3"></audio> <p><a href="#" id="vol-0">Volume: 0.0</a></p> <p><a href="#" id="vol-10">Volume: 0.1</a></p> <p><a href="#" id="vol-40">Volume: 0.4</a></p> <p><a href="#" id="vol-70">Volume: 0.7</a></p> <p><a href="#" id="vol-100">Volume: 1.0</a></p> + <br /> + <p><a href="http://www.bensound.com/royalty-free-music/track/dubstep">Royalty Free Music from Bensound</a></p> </body> </html> \ No newline at end of file diff --git a/public/admin/js/audiojs/includes/divider.png b/public/admin/js/audiojs/includes/divider.png old mode 100755 new mode 100644 diff --git a/public/admin/js/audiojs/includes/index.css b/public/admin/js/audiojs/includes/index.css old mode 100755 new mode 100644 index 259fb8f7f9f..03043362b81 --- a/public/admin/js/audiojs/includes/index.css +++ b/public/admin/js/audiojs/includes/index.css @@ -1,4 +1,4 @@ -@font-face { font-family: 'bpreplay'; font-weight: normal; font-style: normal; } +@font-face { font-family: 'bpreplay'; font-weight: normal; font-style: normal; src: url('BPreplay-webfont.eot'); src: local('☺'), url('BPreplay-webfont.woff') format('woff'), url('BPreplay-webfont.ttf') format('truetype'), url('BPreplay-webfont.svg#webfontgzJ8Cr4g') format('svg'); } body { width: 480px; margin: 40px auto; font-family: sans-serif; background: #f6f6f0; color: #330; line-height: 1.5; } header { display: block; background: url('./divider.png') bottom center no-repeat; padding: 10px 0px; margin: 0px 0px 20px; text-align: center; } @@ -33,4 +33,4 @@ footer { display: block; margin: 30px 0px 0px; color: #C1BDB0; text-align: cente footer a { color: #C1BDB0; border-bottom: 1px solid; margin: 0px 3px; } footer em { display: block; font-size: 1.2em; font-style: normal; } footer .ab-c { font-family: 'Andale Mono', 'Courier New', courier; font-size: 0.75em; margin: 50px 0px 0px; padding: 20px 0px; border-top: 1px solid #EFEEE6; } -footer .ab-c a { padding: 0px; } +footer .ab-c a { padding: 0px; } \ No newline at end of file diff --git a/public/admin/js/audiojs/index.html b/public/admin/js/audiojs/index.html old mode 100755 new mode 100644 index 2b7b9dc184e..ba8b93af812 --- a/public/admin/js/audiojs/index.html +++ b/public/admin/js/audiojs/index.html @@ -3,11 +3,10 @@ <head> <meta charset="utf-8"> <title>audio.js</title> - <link rel="stylesheet" href="./audiojs/style-light.css" media="screen"> - <script src="./audiojs/audio.js"></script> + <script src="./audiojs/audio.min.js"></script> <link rel="stylesheet" href="./includes/index.css" media="screen"> <script> - audiojs.events.ready(function() { + audiojs.events.ready(function() { audiojs.createAll(); }); </script> @@ -17,7 +16,7 @@ <h1>audio.js</h1> </header> - <audio src="http://s3.amazonaws.com/audiojs/02-juicy-r.mp3" preload="auto"></audio> + <audio src="http://kolber.github.io/audiojs/demos/mp3/juicy.mp3" preload="auto"></audio> <h3>Installation</h3> <ol> @@ -44,57 +43,19 @@ <h3>Examples</h3> <p>A series of API tests & examples for using and extending audio.js</p> - <p><em>Example 1</em> <a href="http://dotzero.github.com/audiojs/demos/test1.html">Test multiple load types</a></p> - <p><em>Example 2</em> <a href="http://dotzero.github.com/audiojs/demos/test2.html">Custom markup/css</a></p> - <p><em>Example 3</em> <a href="http://dotzero.github.com/audiojs/demos/test3.html">Multiple players, testing <code>preload</code>, <code>loop</code> & <code>autoplay</code> attributes</a></p> - <p><em>Example 4</em> <a href="http://dotzero.github.com/audiojs/demos/test5.html">Customised player</a></p> - <p><em>Example 5</em> <a href="http://dotzero.github.com/audiojs/demos/test6.html">Customised playlist player</a></p> - - <h3>Source code</h3> - <p>All efforts have been made to keep the source as clean and readable as possible. Until we release more detailed documentation, the annotated source is the best reference for usage.</p> - <p><a href="http://dotzero.github.com/audiojs/docs/">Annotated source</a> / <a href="http://github.com/dotzero/audiojs">Source on Github</a></p> - - <footer> - <p class="ab-c"><em>ℜ</em> Another <a href='http://ab-c.com.au'>ab+c</a> joint</p> - </footer> - </body> -</html> -://kolber.github.com/audiojs/demos/test5.html">Customised player</a></p> + <p><em>Example 1</em> <a href="http://kolber.github.com/audiojs/demos/test1.html">Test multiple load types</a></p> + <p><em>Example 2</em> <a href="http://kolber.github.com/audiojs/demos/test2.html">Custom markup/css</a></p> + <p><em>Example 3</em> <a href="http://kolber.github.com/audiojs/demos/test3.html">Multiple players, testing <code>preload</code>, <code>loop</code> & <code>autoplay</code> attributes</a></p> + <p><em>Example 4</em> <a href="http://kolber.github.com/audiojs/demos/test5.html">Customised player</a></p> <p><em>Example 5</em> <a href="http://kolber.github.com/audiojs/demos/test6.html">Customised playlist player</a></p> - <!--<p><em>Example 6</em> <a href="http://kolber.github.com/audiojs/demos/test4.html">.ogg fallback</a></p>--> - - <h3>Browser & format support</h3> - <p>With Flash as a fallback, it should work pretty much anywhere.<br> - It has been verified to work across:</p> - <ul> - <li>Mobile Safari <em>(iOS 3+)</em></li> - <li>Android <em>(2.2+, w/Flash)</em></li> - <li>Safari <em>(4+)</em></li> - <li>Chrome <em>(7+)</em></li> - <li>Firefox <em>(3+, w/ Flash)</em></li> - <li>Opera <em>(10+, w/ Flash)</em></li> - <li>IE <em>(6, 7, 8, w/ Flash)</em></li> - </ul> - <p><strong>ogg</strong></p> - <p>audio.js focuses on playing mp3s. It doesn’t currently support the ogg format. As mp3 is the current defacto music transfer format, ogg support is lower on our list of priorities.</p> - - <h3>Flash local security</h3> - <blockquote> - <p><strong>Note:</strong> For local content running in a browser, calls to the <code>ExternalInterface.addCallback()</code> method work only if the SWF file and the containing web page are in the local-trusted security sandbox.</p> - <cite><a href="http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/external/ExternalInterface.html#addCallback()">http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/external/ExternalInterface.html#addCallback()</a></cite> - </blockquote> - <p>This means that unless you have gone through the rigmarole of setting up your <a href="http://kb2.adobe.com/cps/093/4c093f20.html#main_blocked">flash player security settings for local files</a>, <code>ExternalInterface</code> calls will only work when the page is loaded from a ‘domain’. <code>http://localhost</code> counts, but any <code>file://</code> requests don’t.</p> + <p><em>Example 5</em> <a href="http://kolber.github.com/audiojs/demos/test6.html">Volume Control</a></p> <h3>Source code</h3> <p>All efforts have been made to keep the source as clean and readable as possible. Until we release more detailed documentation, the annotated source is the best reference for usage.</p> <p><a href="http://kolber.github.com/audiojs/docs/">Annotated source</a> / <a href="http://github.com/kolber/audiojs">Source on Github</a></p> - <h3>License</h3> - <p>audio.js is released under an <a href="http://www.opensource.org/licenses/mit-license.php">MIT License</a>, so do with it what you will.</p> <footer> - <p>All example audio files are from <a href="http://waitwhatmusic.com/">wait what</a>’s <a href="http://soundcloud.com/wait-what/sets/the-notorious-xx">notorious xx album</a> and used with permission.</p> - <p>This site is ©copyright <a href="http://aestheticallyloyal.com">Anthony Kolber</a>, 2010.</p> - <p class="ab-c"><em>ℜ</em> Another <a href="http://ab-c.com.au">ab+c</a> joint</p> + <p class="ab-c"><em>ℜ</em> Another <a href='http://ab-c.com.au'>ab+c</a> joint</p> </footer> </body> -</html> \ No newline at end of file +</html> -- GitLab