soundmanager2
Version:
A JavaScript Sound API supporting MP3, MPEG4 and HTML5 audio + RTMP, providing reliable cross-browser/platform audio control in as little as 12 KB.
1,588 lines (1,586 loc) • 83.2 kB
JavaScript
/** @license
*
* SoundManager 2: JavaScript Sound for the Web
* ----------------------------------------------
* http://schillmania.com/projects/soundmanager2/
*
* Copyright (c) 2007, Scott Schiller. All rights reserved.
* Code provided under the BSD License:
* http://schillmania.com/projects/soundmanager2/license.txt
*
* V2.97a.20170601
*/
(function SM2(window, _undefined) {
'use strict';
if (!window || !window.document) {
throw new Error('SoundManager requires a browser with window and document objects.');
}
var soundManager = null;
function SoundManager(smURL, smID) {
this.setupOptions = {
url: (smURL || null),
flashVersion: 8,
debugMode: true,
debugFlash: false,
useConsole: true,
consoleOnly: true,
waitForWindowLoad: false,
bgColor: '#ffffff',
useHighPerformance: false,
flashPollingInterval: null,
html5PollingInterval: null,
flashLoadTimeout: 1000,
wmode: null,
allowScriptAccess: 'always',
useFlashBlock: false,
useHTML5Audio: true,
forceUseGlobalHTML5Audio: false,
ignoreMobileRestrictions: false,
html5Test: /^(probably|maybe)$/i,
preferFlash: false,
noSWFCache: false,
idPrefix: 'sound'
};
this.defaultOptions = {
autoLoad: false,
autoPlay: false,
from: null,
loops: 1,
onid3: null,
onerror: null,
onload: null,
whileloading: null,
onplay: null,
onpause: null,
onresume: null,
whileplaying: null,
onposition: null,
onstop: null,
onfinish: null,
multiShot: true,
multiShotEvents: false,
position: null,
pan: 0,
playbackRate: 1,
stream: true,
to: null,
type: null,
usePolicyFile: false,
volume: 100
};
this.flash9Options = {
onfailure: null,
isMovieStar: null,
usePeakData: false,
useWaveformData: false,
useEQData: false,
onbufferchange: null,
ondataerror: null
};
this.movieStarOptions = {
bufferTime: 3,
serverURL: null,
onconnect: null,
duration: null
};
this.audioFormats = {
mp3: {
type: ['audio/mpeg; codecs="mp3"', 'audio/mpeg', 'audio/mp3', 'audio/MPA', 'audio/mpa-robust'],
required: true
},
mp4: {
related: ['aac', 'm4a', 'm4b'],
type: ['audio/mp4; codecs="mp4a.40.2"', 'audio/aac', 'audio/x-m4a', 'audio/MP4A-LATM', 'audio/mpeg4-generic'],
required: false
},
ogg: {
type: ['audio/ogg; codecs=vorbis'],
required: false
},
opus: {
type: ['audio/ogg; codecs=opus', 'audio/opus'],
required: false
},
wav: {
type: ['audio/wav; codecs="1"', 'audio/wav', 'audio/wave', 'audio/x-wav'],
required: false
},
flac: {
type: ['audio/flac'],
required: false
}
};
this.movieID = 'sm2-container';
this.id = (smID || 'sm2movie');
this.debugID = 'soundmanager-debug';
this.debugURLParam = /([#?&])debug=1/i;
this.versionNumber = 'V2.97a.20170601';
this.version = null;
this.movieURL = null;
this.altURL = null;
this.swfLoaded = false;
this.enabled = false;
this.oMC = null;
this.sounds = {};
this.soundIDs = [];
this.muted = false;
this.didFlashBlock = false;
this.filePattern = null;
this.filePatterns = {
flash8: /\.mp3(\?.*)?$/i,
flash9: /\.mp3(\?.*)?$/i
};
this.features = {
buffering: false,
peakData: false,
waveformData: false,
eqData: false,
movieStar: false
};
this.sandbox = {
};
this.html5 = {
usingFlash: null
};
this.flash = {};
this.html5Only = false;
this.ignoreFlash = false;
var SMSound,
sm2 = this, globalHTML5Audio = null, flash = null, sm = 'soundManager', smc = sm + ': ', h5 = 'HTML5::', id, ua = navigator.userAgent, wl = window.location.href.toString(), doc = document, doNothing, setProperties, init, fV, on_queue = [], debugOpen = true, debugTS, didAppend = false, appendSuccess = false, didInit = false, disabled = false, windowLoaded = false, _wDS, wdCount = 0, initComplete, mixin, assign, extraOptions, addOnEvent, processOnEvents, initUserOnload, delayWaitForEI, waitForEI, rebootIntoHTML5, setVersionInfo, handleFocus, strings, initMovie, domContentLoaded, winOnLoad, didDCLoaded, getDocument, createMovie, catchError, setPolling, initDebug, debugLevels = ['log', 'info', 'warn', 'error'], defaultFlashVersion = 8, disableObject, failSafely, normalizeMovieURL, oRemoved = null, oRemovedHTML = null, str, flashBlockHandler, getSWFCSS, swfCSS, toggleDebug, loopFix, policyFix, complain, idCheck, waitingForEI = false, initPending = false, startTimer, stopTimer, timerExecute, h5TimerCount = 0, h5IntervalTimer = null, parseURL, messages = [],
canIgnoreFlash, needsFlash = null, featureCheck, html5OK, html5CanPlay, html5ErrorCodes, html5Ext, html5Unload, domContentLoadedIE, testHTML5, event, slice = Array.prototype.slice, useGlobalHTML5Audio = false, lastGlobalHTML5URL, hasFlash, detectFlash, badSafariFix, html5_events, showSupport, flushMessages, wrapCallback, idCounter = 0, didSetup, msecScale = 1000,
is_iDevice = ua.match(/(ipad|iphone|ipod)/i), isAndroid = ua.match(/android/i), isIE = ua.match(/msie|trident/i),
isWebkit = ua.match(/webkit/i),
isSafari = (ua.match(/safari/i) && !ua.match(/chrome/i)),
isOpera = (ua.match(/opera/i)),
mobileHTML5 = (ua.match(/(mobile|pre\/|xoom)/i) || is_iDevice || isAndroid),
isBadSafari = (!wl.match(/usehtml5audio/i) && !wl.match(/sm2-ignorebadua/i) && isSafari && !ua.match(/silk/i) && ua.match(/OS\sX\s10_6_([3-7])/i)),
hasConsole = (window.console !== _undefined && console.log !== _undefined),
isFocused = (doc.hasFocus !== _undefined ? doc.hasFocus() : null),
tryInitOnFocus = (isSafari && (doc.hasFocus === _undefined || !doc.hasFocus())),
okToDisable = !tryInitOnFocus,
flashMIME = /(mp3|mp4|mpa|m4a|m4b)/i,
emptyURL = 'about:blank',
emptyWAV = 'data:audio/wave;base64,/UklGRiYAAABXQVZFZm10IBAAAAABAAEARKwAAIhYAQACABAAZGF0YQIAAAD//w==',
overHTTP = (doc.location ? doc.location.protocol.match(/http/i) : null),
http = (!overHTTP ? '//' : ''),
netStreamMimeTypes = /^\s*audio\/(?:x-)?(?:mpeg4|aac|flv|mov|mp4|m4v|m4a|m4b|mp4v|3gp|3g2)\s*(?:$|;)/i,
netStreamTypes = ['mpeg4', 'aac', 'flv', 'mov', 'mp4', 'm4v', 'f4v', 'm4a', 'm4b', 'mp4v', '3gp', '3g2'],
netStreamPattern = new RegExp('\\.(' + netStreamTypes.join('|') + ')(\\?.*)?$', 'i');
this.mimePattern = /^\s*audio\/(?:x-)?(?:mp(?:eg|3))\s*(?:$|;)/i;
this.useAltURL = !overHTTP;
swfCSS = {
swfBox: 'sm2-object-box',
swfDefault: 'movieContainer',
swfError: 'swf_error',
swfTimedout: 'swf_timedout',
swfLoaded: 'swf_loaded',
swfUnblocked: 'swf_unblocked',
sm2Debug: 'sm2_debug',
highPerf: 'high_performance',
flashDebug: 'flash_debug'
};
html5ErrorCodes = [
null,
'MEDIA_ERR_ABORTED',
'MEDIA_ERR_NETWORK',
'MEDIA_ERR_DECODE',
'MEDIA_ERR_SRC_NOT_SUPPORTED'
];
this.hasHTML5 = (function() {
try {
return (Audio !== _undefined && (isOpera && opera !== _undefined && opera.version() < 10 ? new Audio(null) : new Audio()).canPlayType !== _undefined);
} catch(e) {
return false;
}
}());
this.setup = function(options) {
var noURL = (!sm2.url);
if (options !== _undefined && didInit && needsFlash && sm2.ok() && (options.flashVersion !== _undefined || options.url !== _undefined || options.html5Test !== _undefined)) {
}
assign(options);
if (!useGlobalHTML5Audio) {
if (mobileHTML5) {
if (!sm2.setupOptions.ignoreMobileRestrictions || sm2.setupOptions.forceUseGlobalHTML5Audio) {
messages.push(strings.globalHTML5);
useGlobalHTML5Audio = true;
}
} else if (sm2.setupOptions.forceUseGlobalHTML5Audio) {
messages.push(strings.globalHTML5);
useGlobalHTML5Audio = true;
}
}
if (!didSetup && mobileHTML5) {
if (sm2.setupOptions.ignoreMobileRestrictions) {
messages.push(strings.ignoreMobile);
} else {
sm2.setupOptions.useHTML5Audio = true;
sm2.setupOptions.preferFlash = false;
if (is_iDevice) {
sm2.ignoreFlash = true;
} else if ((isAndroid && !ua.match(/android\s2\.3/i)) || !isAndroid) {
useGlobalHTML5Audio = true;
}
}
}
if (options) {
if (noURL && didDCLoaded && options.url !== _undefined) {
sm2.beginDelayedInit();
}
if (!didDCLoaded && options.url !== _undefined && doc.readyState === 'complete') {
setTimeout(domContentLoaded, 1);
}
}
didSetup = true;
return sm2;
};
this.ok = function() {
return (needsFlash ? (didInit && !disabled) : (sm2.useHTML5Audio && sm2.hasHTML5));
};
this.supported = this.ok;
this.getMovie = function(movie_id) {
return id(movie_id) || doc[movie_id] || window[movie_id];
};
this.createSound = function(oOptions, _url) {
var cs, cs_string, options, oSound = null;
if (!didInit || !sm2.ok()) {
return false;
}
if (_url !== _undefined) {
oOptions = {
id: oOptions,
url: _url
};
}
options = mixin(oOptions);
options.url = parseURL(options.url);
if (options.id === _undefined) {
options.id = sm2.setupOptions.idPrefix + (idCounter++);
}
if (idCheck(options.id, true)) {
return sm2.sounds[options.id];
}
function make() {
options = loopFix(options);
sm2.sounds[options.id] = new SMSound(options);
sm2.soundIDs.push(options.id);
return sm2.sounds[options.id];
}
if (html5OK(options)) {
oSound = make();
oSound._setup_html5(options);
} else {
if (sm2.html5Only) {
return make();
}
if (sm2.html5.usingFlash && options.url && options.url.match(/data:/i)) {
return make();
}
if (fV > 8) {
if (options.isMovieStar === null) {
options.isMovieStar = !!(options.serverURL || (options.type ? options.type.match(netStreamMimeTypes) : false) || (options.url && options.url.match(netStreamPattern)));
}
}
options = policyFix(options, cs);
oSound = make();
if (fV === 8) {
flash._createSound(options.id, options.loops || 1, options.usePolicyFile);
} else {
flash._createSound(options.id, options.url, options.usePeakData, options.useWaveformData, options.useEQData, options.isMovieStar, (options.isMovieStar ? options.bufferTime : false), options.loops || 1, options.serverURL, options.duration || null, options.autoPlay, true, options.autoLoad, options.usePolicyFile);
if (!options.serverURL) {
oSound.connected = true;
if (options.onconnect) {
options.onconnect.apply(oSound);
}
}
}
if (!options.serverURL && (options.autoLoad || options.autoPlay)) {
oSound.load(options);
}
}
if (!options.serverURL && options.autoPlay) {
oSound.play();
}
return oSound;
};
this.destroySound = function(sID, _bFromSound) {
if (!idCheck(sID)) return false;
var oS = sm2.sounds[sID], i;
oS.stop();
oS._iO = {};
oS.unload();
for (i = 0; i < sm2.soundIDs.length; i++) {
if (sm2.soundIDs[i] === sID) {
sm2.soundIDs.splice(i, 1);
break;
}
}
if (!_bFromSound) {
oS.destruct(true);
}
oS = null;
delete sm2.sounds[sID];
return true;
};
this.load = function(sID, oOptions) {
if (!idCheck(sID)) return false;
return sm2.sounds[sID].load(oOptions);
};
this.unload = function(sID) {
if (!idCheck(sID)) return false;
return sm2.sounds[sID].unload();
};
this.onPosition = function(sID, nPosition, oMethod, oScope) {
if (!idCheck(sID)) return false;
return sm2.sounds[sID].onposition(nPosition, oMethod, oScope);
};
this.onposition = this.onPosition;
this.clearOnPosition = function(sID, nPosition, oMethod) {
if (!idCheck(sID)) return false;
return sm2.sounds[sID].clearOnPosition(nPosition, oMethod);
};
this.play = function(sID, oOptions) {
var result = null,
overloaded = (oOptions && !(oOptions instanceof Object));
if (!didInit || !sm2.ok()) {
return false;
}
if (!idCheck(sID, overloaded)) {
if (!overloaded) return false;
if (overloaded) {
oOptions = {
url: oOptions
};
}
if (oOptions && oOptions.url) {
oOptions.id = sID;
result = sm2.createSound(oOptions).play();
}
} else if (overloaded) {
oOptions = {
url: oOptions
};
}
if (result === null) {
result = sm2.sounds[sID].play(oOptions);
}
return result;
};
this.start = this.play;
this.setPlaybackRate = function(sID, rate, allowOverride) {
if (!idCheck(sID)) return false;
return sm2.sounds[sID].setPlaybackRate(rate, allowOverride);
};
this.setPosition = function(sID, nMsecOffset) {
if (!idCheck(sID)) return false;
return sm2.sounds[sID].setPosition(nMsecOffset);
};
this.stop = function(sID) {
if (!idCheck(sID)) return false;
return sm2.sounds[sID].stop();
};
this.stopAll = function() {
var oSound;
for (oSound in sm2.sounds) {
if (sm2.sounds.hasOwnProperty(oSound)) {
sm2.sounds[oSound].stop();
}
}
};
this.pause = function(sID) {
if (!idCheck(sID)) return false;
return sm2.sounds[sID].pause();
};
this.pauseAll = function() {
var i;
for (i = sm2.soundIDs.length - 1; i >= 0; i--) {
sm2.sounds[sm2.soundIDs[i]].pause();
}
};
this.resume = function(sID) {
if (!idCheck(sID)) return false;
return sm2.sounds[sID].resume();
};
this.resumeAll = function() {
var i;
for (i = sm2.soundIDs.length - 1; i >= 0; i--) {
sm2.sounds[sm2.soundIDs[i]].resume();
}
};
this.togglePause = function(sID) {
if (!idCheck(sID)) return false;
return sm2.sounds[sID].togglePause();
};
this.setPan = function(sID, nPan) {
if (!idCheck(sID)) return false;
return sm2.sounds[sID].setPan(nPan);
};
this.setVolume = function(sID, nVol) {
var i, j;
if (sID !== _undefined && !isNaN(sID) && nVol === _undefined) {
for (i = 0, j = sm2.soundIDs.length; i < j; i++) {
sm2.sounds[sm2.soundIDs[i]].setVolume(sID);
}
return false;
}
if (!idCheck(sID)) return false;
return sm2.sounds[sID].setVolume(nVol);
};
this.mute = function(sID) {
var i = 0;
if (sID instanceof String) {
sID = null;
}
if (!sID) {
for (i = sm2.soundIDs.length - 1; i >= 0; i--) {
sm2.sounds[sm2.soundIDs[i]].mute();
}
sm2.muted = true;
} else {
if (!idCheck(sID)) return false;
return sm2.sounds[sID].mute();
}
return true;
};
this.muteAll = function() {
sm2.mute();
};
this.unmute = function(sID) {
var i;
if (sID instanceof String) {
sID = null;
}
if (!sID) {
for (i = sm2.soundIDs.length - 1; i >= 0; i--) {
sm2.sounds[sm2.soundIDs[i]].unmute();
}
sm2.muted = false;
} else {
if (!idCheck(sID)) return false;
return sm2.sounds[sID].unmute();
}
return true;
};
this.unmuteAll = function() {
sm2.unmute();
};
this.toggleMute = function(sID) {
if (!idCheck(sID)) return false;
return sm2.sounds[sID].toggleMute();
};
this.getMemoryUse = function() {
var ram = 0;
if (flash && fV !== 8) {
ram = parseInt(flash._getMemoryUse(), 10);
}
return ram;
};
this.disable = function(bNoDisable) {
var i;
if (bNoDisable === _undefined) {
bNoDisable = false;
}
if (disabled) return false;
disabled = true;
for (i = sm2.soundIDs.length - 1; i >= 0; i--) {
disableObject(sm2.sounds[sm2.soundIDs[i]]);
}
disableObject(sm2);
initComplete(bNoDisable);
event.remove(window, 'load', initUserOnload);
return true;
};
this.canPlayMIME = function(sMIME) {
var result;
if (sm2.hasHTML5) {
result = html5CanPlay({
type: sMIME
});
}
if (!result && needsFlash) {
result = (sMIME && sm2.ok() ? !!((fV > 8 ? sMIME.match(netStreamMimeTypes) : null) || sMIME.match(sm2.mimePattern)) : null);
}
return result;
};
this.canPlayURL = function(sURL) {
var result;
if (sm2.hasHTML5) {
result = html5CanPlay({
url: sURL
});
}
if (!result && needsFlash) {
result = (sURL && sm2.ok() ? !!(sURL.match(sm2.filePattern)) : null);
}
return result;
};
this.canPlayLink = function(oLink) {
if (oLink.type !== _undefined && oLink.type && sm2.canPlayMIME(oLink.type)) return true;
return sm2.canPlayURL(oLink.href);
};
this.getSoundById = function(sID, _suppressDebug) {
if (!sID) return null;
var result = sm2.sounds[sID];
return result;
};
this.onready = function(oMethod, oScope) {
var sType = 'onready',
result = false;
if (typeof oMethod === 'function') {
if (!oScope) {
oScope = window;
}
addOnEvent(sType, oMethod, oScope);
processOnEvents();
result = true;
} else {
throw str('needFunction', sType);
}
return result;
};
this.ontimeout = function(oMethod, oScope) {
var sType = 'ontimeout',
result = false;
if (typeof oMethod === 'function') {
if (!oScope) {
oScope = window;
}
addOnEvent(sType, oMethod, oScope);
processOnEvents({ type: sType });
result = true;
} else {
throw str('needFunction', sType);
}
return result;
};
this._writeDebug = function(sText, sTypeOrObject) {
return true;
};
this._wD = this._writeDebug;
this._debug = function() {
};
this.reboot = function(resetEvents, excludeInit) {
var i, j, k;
for (i = sm2.soundIDs.length - 1; i >= 0; i--) {
sm2.sounds[sm2.soundIDs[i]].destruct();
}
if (flash) {
try {
if (isIE) {
oRemovedHTML = flash.innerHTML;
}
oRemoved = flash.parentNode.removeChild(flash);
} catch(e) {
}
}
oRemovedHTML = oRemoved = needsFlash = flash = null;
sm2.enabled = didDCLoaded = didInit = waitingForEI = initPending = didAppend = appendSuccess = disabled = useGlobalHTML5Audio = sm2.swfLoaded = false;
sm2.soundIDs = [];
sm2.sounds = {};
idCounter = 0;
didSetup = false;
if (!resetEvents) {
for (i in on_queue) {
if (on_queue.hasOwnProperty(i)) {
for (j = 0, k = on_queue[i].length; j < k; j++) {
on_queue[i][j].fired = false;
}
}
}
} else {
on_queue = [];
}
sm2.html5 = {
usingFlash: null
};
sm2.flash = {};
sm2.html5Only = false;
sm2.ignoreFlash = false;
window.setTimeout(function() {
if (!excludeInit) {
sm2.beginDelayedInit();
}
}, 20);
return sm2;
};
this.reset = function() {
return sm2.reboot(true, true);
};
this.getMoviePercent = function() {
return (flash && 'PercentLoaded' in flash ? flash.PercentLoaded() : null);
};
this.beginDelayedInit = function() {
windowLoaded = true;
domContentLoaded();
setTimeout(function() {
if (initPending) return false;
createMovie();
initMovie();
initPending = true;
return true;
}, 20);
delayWaitForEI();
};
this.destruct = function() {
sm2.disable(true);
};
SMSound = function(oOptions) {
var s = this, resetProperties, add_html5_events, remove_html5_events, stop_html5_timer, start_html5_timer, attachOnPosition, onplay_called = false, onPositionItems = [], onPositionFired = 0, detachOnPosition, applyFromTo, lastURL = null, lastHTML5State, urlOmitted;
lastHTML5State = {
duration: null,
time: null
};
this.id = oOptions.id;
this.sID = this.id;
this.url = oOptions.url;
this.options = mixin(oOptions);
this.instanceOptions = this.options;
this._iO = this.instanceOptions;
this.pan = this.options.pan;
this.volume = this.options.volume;
this.isHTML5 = false;
this._a = null;
urlOmitted = (!this.url);
this.id3 = {};
this._debug = function() {
};
this.load = function(options) {
var oSound = null, instanceOptions;
if (options !== _undefined) {
s._iO = mixin(options, s.options);
} else {
options = s.options;
s._iO = options;
if (lastURL && lastURL !== s.url) {
s._iO.url = s.url;
s.url = null;
}
}
if (!s._iO.url) {
s._iO.url = s.url;
}
s._iO.url = parseURL(s._iO.url);
s.instanceOptions = s._iO;
instanceOptions = s._iO;
if (!instanceOptions.url && !s.url) {
return s;
}
if (instanceOptions.url === s.url && s.readyState !== 0 && s.readyState !== 2) {
if (s.readyState === 3 && instanceOptions.onload) {
wrapCallback(s, function() {
instanceOptions.onload.apply(s, [(!!s.duration)]);
});
}
return s;
}
s.loaded = false;
s.readyState = 1;
s.playState = 0;
s.id3 = {};
if (html5OK(instanceOptions)) {
oSound = s._setup_html5(instanceOptions);
if (!oSound._called_load) {
s._html5_canplay = false;
if (s.url !== instanceOptions.url) {
s._a.src = instanceOptions.url;
s.setPosition(0);
}
s._a.autobuffer = 'auto';
s._a.preload = 'auto';
s._a._called_load = true;
} else {
}
} else {
if (sm2.html5Only) {
return s;
}
if (s._iO.url && s._iO.url.match(/data:/i)) {
return s;
}
try {
s.isHTML5 = false;
s._iO = policyFix(loopFix(instanceOptions));
if (s._iO.autoPlay && (s._iO.position || s._iO.from)) {
s._iO.autoPlay = false;
}
instanceOptions = s._iO;
if (fV === 8) {
flash._load(s.id, instanceOptions.url, instanceOptions.stream, instanceOptions.autoPlay, instanceOptions.usePolicyFile);
} else {
flash._load(s.id, instanceOptions.url, !!(instanceOptions.stream), !!(instanceOptions.autoPlay), instanceOptions.loops || 1, !!(instanceOptions.autoLoad), instanceOptions.usePolicyFile);
}
} catch(e) {
catchError({
type: 'SMSOUND_LOAD_JS_EXCEPTION',
fatal: true
});
}
}
s.url = instanceOptions.url;
return s;
};
this.unload = function() {
if (s.readyState !== 0) {
if (!s.isHTML5) {
if (fV === 8) {
flash._unload(s.id, emptyURL);
} else {
flash._unload(s.id);
}
} else {
stop_html5_timer();
if (s._a) {
s._a.pause();
lastURL = html5Unload(s._a);
}
}
resetProperties();
}
return s;
};
this.destruct = function(_bFromSM) {
if (!s.isHTML5) {
s._iO.onfailure = null;
flash._destroySound(s.id);
} else {
stop_html5_timer();
if (s._a) {
s._a.pause();
html5Unload(s._a);
if (!useGlobalHTML5Audio) {
remove_html5_events();
}
s._a._s = null;
s._a = null;
}
}
if (!_bFromSM) {
sm2.destroySound(s.id, true);
}
};
this.play = function(options, _updatePlayState) {
var fN, allowMulti, a, onready,
audioClone, onended, oncanplay,
startOK = true;
_updatePlayState = (_updatePlayState === _undefined ? true : _updatePlayState);
if (!options) {
options = {};
}
if (s.url) {
s._iO.url = s.url;
}
s._iO = mixin(s._iO, s.options);
s._iO = mixin(options, s._iO);
s._iO.url = parseURL(s._iO.url);
s.instanceOptions = s._iO;
if (!s.isHTML5 && s._iO.serverURL && !s.connected) {
if (!s.getAutoPlay()) {
s.setAutoPlay(true);
}
return s;
}
if (html5OK(s._iO)) {
s._setup_html5(s._iO);
start_html5_timer();
}
if (s.playState === 1 && !s.paused) {
allowMulti = s._iO.multiShot;
if (!allowMulti) {
if (s.isHTML5) {
s.setPosition(s._iO.position);
}
return s;
}
}
if (options.url && options.url !== s.url) {
if (!s.readyState && !s.isHTML5 && fV === 8 && urlOmitted) {
urlOmitted = false;
} else {
s.load(s._iO);
}
}
if (!s.loaded) {
if (s.readyState === 0) {
if (!s.isHTML5 && !sm2.html5Only) {
s._iO.autoPlay = true;
s.load(s._iO);
} else if (s.isHTML5) {
s.load(s._iO);
} else {
return s;
}
s.instanceOptions = s._iO;
} else if (s.readyState === 2) {
return s;
} else {
}
} else {
}
if (!s.isHTML5 && fV === 9 && s.position > 0 && s.position === s.duration) {
options.position = 0;
}
if (s.paused && s.position >= 0 && (!s._iO.serverURL || s.position > 0)) {
s.resume();
} else {
s._iO = mixin(options, s._iO);
if (((!s.isHTML5 && s._iO.position !== null && s._iO.position > 0) || (s._iO.from !== null && s._iO.from > 0) || s._iO.to !== null) && s.instanceCount === 0 && s.playState === 0 && !s._iO.serverURL) {
onready = function() {
s._iO = mixin(options, s._iO);
s.play(s._iO);
};
if (s.isHTML5 && !s._html5_canplay) {
s.load({
_oncanplay: onready
});
} else if (!s.isHTML5 && !s.loaded && (!s.readyState || s.readyState !== 2)) {
s.load({
onload: onready
});
}
s._iO = applyFromTo();
}
if (!s.instanceCount || s._iO.multiShotEvents || (s.isHTML5 && s._iO.multiShot && !useGlobalHTML5Audio) || (!s.isHTML5 && fV > 8 && !s.getAutoPlay())) {
s.instanceCount++;
}
if (s._iO.onposition && s.playState === 0) {
attachOnPosition(s);
}
s.playState = 1;
s.paused = false;
s.position = (s._iO.position !== _undefined && !isNaN(s._iO.position) ? s._iO.position : 0);
if (!s.isHTML5) {
s._iO = policyFix(loopFix(s._iO));
}
if (s._iO.onplay && _updatePlayState) {
s._iO.onplay.apply(s);
onplay_called = true;
}
s.setVolume(s._iO.volume, true);
s.setPan(s._iO.pan, true);
if (s._iO.playbackRate !== 1) {
s.setPlaybackRate(s._iO.playbackRate);
}
if (!s.isHTML5) {
startOK = flash._start(s.id, s._iO.loops || 1, (fV === 9 ? s.position : s.position / msecScale), s._iO.multiShot || false);
if (fV === 9 && !startOK) {
if (s._iO.onplayerror) {
s._iO.onplayerror.apply(s);
}
}
} else if (s.instanceCount < 2) {
start_html5_timer();
a = s._setup_html5();
s.setPosition(s._iO.position);
a.play();
} else {
audioClone = new Audio(s._iO.url);
onended = function() {
event.remove(audioClone, 'ended', onended);
s._onfinish(s);
html5Unload(audioClone);
audioClone = null;
};
oncanplay = function() {
event.remove(audioClone, 'canplay', oncanplay);
try {
audioClone.currentTime = s._iO.position / msecScale;
} catch(err) {
}
audioClone.play();
};
event.add(audioClone, 'ended', onended);
if (s._iO.volume !== _undefined) {
audioClone.volume = Math.max(0, Math.min(1, s._iO.volume / 100));
}
if (s.muted) {
audioClone.muted = true;
}
if (s._iO.position) {
event.add(audioClone, 'canplay', oncanplay);
} else {
audioClone.play();
}
}
}
return s;
};
this.start = this.play;
this.stop = function(bAll) {
var instanceOptions = s._iO,
originalPosition;
if (s.playState === 1) {
s._onbufferchange(0);
s._resetOnPosition(0);
s.paused = false;
if (!s.isHTML5) {
s.playState = 0;
}
detachOnPosition();
if (instanceOptions.to) {
s.clearOnPosition(instanceOptions.to);
}
if (!s.isHTML5) {
flash._stop(s.id, bAll);
if (instanceOptions.serverURL) {
s.unload();
}
} else if (s._a) {
originalPosition = s.position;
s.setPosition(0);
s.position = originalPosition;
s._a.pause();
s.playState = 0;
s._onTimer();
stop_html5_timer();
}
s.instanceCount = 0;
s._iO = {};
if (instanceOptions.onstop) {
instanceOptions.onstop.apply(s);
}
}
return s;
};
this.setAutoPlay = function(autoPlay) {
s._iO.autoPlay = autoPlay;
if (!s.isHTML5) {
flash._setAutoPlay(s.id, autoPlay);
if (autoPlay) {
if (!s.instanceCount && s.readyState === 1) {
s.instanceCount++;
}
}
}
};
this.getAutoPlay = function() {
return s._iO.autoPlay;
};
this.setPlaybackRate = function(playbackRate) {
var normalizedRate = Math.max(0.5, Math.min(4, playbackRate));
if (s.isHTML5) {
try {
s._iO.playbackRate = normalizedRate;
s._a.playbackRate = normalizedRate;
} catch(e) {
}
}
return s;
};
this.setPosition = function(nMsecOffset) {
if (nMsecOffset === _undefined) {
nMsecOffset = 0;
}
var position, position1K,
offset = (s.isHTML5 ? Math.max(nMsecOffset, 0) : Math.min(s.duration || s._iO.duration, Math.max(nMsecOffset, 0)));
s.position = offset;
position1K = s.position / msecScale;
s._resetOnPosition(s.position);
s._iO.position = offset;
if (!s.isHTML5) {
position = (fV === 9 ? s.position : position1K);
if (s.readyState && s.readyState !== 2) {
flash._setPosition(s.id, position, (s.paused || !s.playState), s._iO.multiShot);
}
} else if (s._a) {
if (s._html5_canplay) {
if (s._a.currentTime.toFixed(3) !== position1K.toFixed(3)) {
try {
s._a.currentTime = position1K;
if (s.playState === 0 || s.paused) {
s._a.pause();
}
} catch(e) {
}
}
} else if (position1K) {
return s;
}
if (s.paused) {
s._onTimer(true);
}
}
return s;
};
this.pause = function(_bCallFlash) {
if (s.paused || (s.playState === 0 && s.readyState !== 1)) return s;
s.paused = true;
if (!s.isHTML5) {
if (_bCallFlash || _bCallFlash === _undefined) {
flash._pause(s.id, s._iO.multiShot);
}
} else {
s._setup_html5().pause();
stop_html5_timer();
}
if (s._iO.onpause) {
s._iO.onpause.apply(s);
}
return s;
};
this.resume = function() {
var instanceOptions = s._iO;
if (!s.paused) return s;
s.paused = false;
s.playState = 1;
if (!s.isHTML5) {
if (instanceOptions.isMovieStar && !instanceOptions.serverURL) {
s.setPosition(s.position);
}
flash._pause(s.id, instanceOptions.multiShot);
} else {
s._setup_html5().play();
start_html5_timer();
}
if (!onplay_called && instanceOptions.onplay) {
instanceOptions.onplay.apply(s);
onplay_called = true;
} else if (instanceOptions.onresume) {
instanceOptions.onresume.apply(s);
}
return s;
};
this.togglePause = function() {
if (s.playState === 0) {
s.play({
position: (fV === 9 && !s.isHTML5 ? s.position : s.position / msecScale)
});
return s;
}
if (s.paused) {
s.resume();
} else {
s.pause();
}
return s;
};
this.setPan = function(nPan, bInstanceOnly) {
if (nPan === _undefined) {
nPan = 0;
}
if (bInstanceOnly === _undefined) {
bInstanceOnly = false;
}
if (!s.isHTML5) {
flash._setPan(s.id, nPan);
}
s._iO.pan = nPan;
if (!bInstanceOnly) {
s.pan = nPan;
s.options.pan = nPan;
}
return s;
};
this.setVolume = function(nVol, _bInstanceOnly) {
if (nVol === _undefined) {
nVol = 100;
}
if (_bInstanceOnly === _undefined) {
_bInstanceOnly = false;
}
if (!s.isHTML5) {
flash._setVolume(s.id, (sm2.muted && !s.muted) || s.muted ? 0 : nVol);
} else if (s._a) {
if (sm2.muted && !s.muted) {
s.muted = true;
s._a.muted = true;
}
s._a.volume = Math.max(0, Math.min(1, nVol / 100));
}
s._iO.volume = nVol;
if (!_bInstanceOnly) {
s.volume = nVol;
s.options.volume = nVol;
}
return s;
};
this.mute = function() {
s.muted = true;
if (!s.isHTML5) {
flash._setVolume(s.id, 0);
} else if (s._a) {
s._a.muted = true;
}
return s;
};
this.unmute = function() {
s.muted = false;
var hasIO = (s._iO.volume !== _undefined);
if (!s.isHTML5) {
flash._setVolume(s.id, hasIO ? s._iO.volume : s.options.volume);
} else if (s._a) {
s._a.muted = false;
}
return s;
};
this.toggleMute = function() {
return (s.muted ? s.unmute() : s.mute());
};
this.onPosition = function(nPosition, oMethod, oScope) {
onPositionItems.push({
position: parseInt(nPosition, 10),
method: oMethod,
scope: (oScope !== _undefined ? oScope : s),
fired: false
});
return s;
};
this.onposition = this.onPosition;
this.clearOnPosition = function(nPosition, oMethod) {
var i;
nPosition = parseInt(nPosition, 10);
if (isNaN(nPosition)) {
return;
}
for (i = 0; i < onPositionItems.length; i++) {
if (nPosition === onPositionItems[i].position) {
if (!oMethod || (oMethod === onPositionItems[i].method)) {
if (onPositionItems[i].fired) {
onPositionFired--;
}
onPositionItems.splice(i, 1);
}
}
}
};
this._processOnPosition = function() {
var i, item, j = onPositionItems.length;
if (!j || !s.playState || onPositionFired >= j) return false;
for (i = j - 1; i >= 0; i--) {
item = onPositionItems[i];
if (!item.fired && s.position >= item.position) {
item.fired = true;
onPositionFired++;
item.method.apply(item.scope, [item.position]);
j = onPositionItems.length;
}
}
return true;
};
this._resetOnPosition = function(nPosition) {
var i, item, j = onPositionItems.length;
if (!j) return false;
for (i = j - 1; i >= 0; i--) {
item = onPositionItems[i];
if (item.fired && nPosition <= item.position) {
item.fired = false;
onPositionFired--;
}
}
return true;
};
applyFromTo = function() {
var instanceOptions = s._iO,
f = instanceOptions.from,
t = instanceOptions.to,
start, end;
end = function() {
s.clearOnPosition(t, end);
s.stop();
};
start = function() {
if (t !== null && !isNaN(t)) {
s.onPosition(t, end);
}
};
if (f !== null && !isNaN(f)) {
instanceOptions.position = f;
instanceOptions.multiShot = false;
start();
}
return instanceOptions;
};
attachOnPosition = function() {
var item,
op = s._iO.onposition;
if (op) {
for (item in op) {
if (op.hasOwnProperty(item)) {
s.onPosition(parseInt(item, 10), op[item]);
}
}
}
};
detachOnPosition = function() {
var item,
op = s._iO.onposition;
if (op) {
for (item in op) {
if (op.hasOwnProperty(item)) {
s.clearOnPosition(parseInt(item, 10));
}
}
}
};
start_html5_timer = function() {
if (s.isHTML5) {
startTimer(s);
}
};
stop_html5_timer = function() {
if (s.isHTML5) {
stopTimer(s);
}
};
resetProperties = function(retainPosition) {
if (!retainPosition) {
onPositionItems = [];
onPositionFired = 0;
}
onplay_called = false;
s._hasTimer = null;
s._a = null;
s._html5_canplay = false;
s.bytesLoaded = null;
s.bytesTotal = null;
s.duration = (s._iO && s._iO.duration ? s._iO.duration : null);
s.durationEstimate = null;
s.buffered = [];
s.eqData = [];
s.eqData.left = [];
s.eqData.right = [];
s.failures = 0;
s.isBuffering = false;
s.instanceOptions = {};
s.instanceCount = 0;
s.loaded = false;
s.metadata = {};
s.readyState = 0;
s.muted = false;
s.paused = false;
s.peakData = {
left: 0,
right: 0
};
s.waveformData = {
left: [],
right: []
};
s.playState = 0;
s.position = null;
s.id3 = {};
};
resetProperties();
this._onTimer = function(bForce) {
var duration, isNew = false, time, x = {};
if (s._hasTimer || bForce) {
if (s._a && (bForce || ((s.playState > 0 || s.readyState === 1) && !s.paused))) {
duration = s._get_html5_duration();
if (duration !== lastHTML5State.duration) {
lastHTML5State.duration = duration;
s.duration = duration;
isNew = true;
}
s.durationEstimate = s.duration;
time = (s._a.currentTime * msecScale || 0);
if (time !== lastHTML5State.time) {
lastHTML5State.time = time;
isNew = true;
}
if (isNew || bForce) {
s._whileplaying(time, x, x, x, x);
}
}
}
return isNew;
};
this._get_html5_duration = function() {
var instanceOptions = s._iO,
d = (s._a && s._a.duration ? s._a.duration * msecScale : (instanceOptions && instanceOptions.duration ? instanceOptions.duration : null)),
result = (d && !isNaN(d) && d !== Infinity ? d : null);
return result;
};
this._apply_loop = function(a, nLoops) {
a.loop = (nLoops > 1 ? 'loop' : '');
};
this._setup_html5 = function(options) {
var instanceOptions = mixin(s._iO, options),
a = useGlobalHTML5Audio ? globalHTML5Audio : s._a,
dURL = decodeURI(instanceOptions.url),
sameURL;
if (useGlobalHTML5Audio) {
if (dURL === decodeURI(lastGlobalHTML5URL)) {
sameURL = true;
}
} else if (dURL === decodeURI(lastURL)) {
sameURL = true;
}
if (a) {
if (a._s) {
if (useGlobalHTML5Audio) {
if (a._s && a._s.playState && !sameURL) {
a._s.stop();
}
} else if (!useGlobalHTML5Audio && dURL === decodeURI(lastURL)) {
s._apply_loop(a, instanceOptions.loops);
return a;
}
}
if (!sameURL) {
if (lastURL) {
resetProperties(false);
}
a.src = instanceOptions.url;
s.url = instanceOptions.url;
lastURL = instanceOptions.url;
lastGlobalHTML5URL = instanceOptions.url;
a._called_load = false;
}
} else {
if (instanceOptions.autoLoad || instanceOptions.autoPlay) {
s._a = new Audio(instanceOptions.url);
s._a.load();
} else {
s._a = (isOpera && opera.version() < 10 ? new Audio(null) : new Audio());
}
a = s._a;
a._called_load = false;
if (useGlobalHTML5Audio) {
globalHTML5Audio = a;
}
}
s.isHTML5 = true;
s._a = a;
a._s = s;
add_html5_events();
s._apply_loop(a, instanceOptions.loops);
if (instanceOptions.autoLoad || instanceOptions.autoPlay) {
s.load();
} else {
a.autobuffer = false;
a.preload = 'auto';
}
return a;
};
add_html5_events = function() {
if (s._a._added_events) return false;
var f;
function add(oEvt, oFn, bCapture) {
return s._a ? s._a.addEventListener(oEvt, oFn, bCapture || false) : null;
}
s._a._added_events = true;
for (f in html5_events) {
if (html5_events.hasOwnProperty(f)) {
add(f, html5_events[f]);
}
}
return true;
};
remove_html5_events = function() {
var f;
function remove(oEvt, oFn, bCapture) {
return (s._a ? s._a.removeEventListener(oEvt, oFn, bCapture || false) : null);
}
s._a._added_events = false;
for (f in html5_events) {
if (html5_events.hasOwnProperty(f)) {
remove(f, html5_events[f]);
}
}
};
this._onload = function(nSuccess) {
var fN,
loadOK = !!nSuccess || (!s.isHTML5 && fV === 8 && s.duration);
s.loaded = loadOK;
s.readyState = (loadOK ? 3 : 2);
s._onbufferchange(0);
if (!loadOK && !s.isHTML5) {
s._onerror();
}
if (s._iO.onload) {
wrapCallback(s, function() {
s._iO.onload.apply(s, [loadOK]);
});
}
return true;
};
this._onerror = function(errorCode, description) {
if (s._iO.onerror) {
wrapCallback(s, function() {
s._iO.onerror.apply(s, [errorCode, description]);
});
}
};
this._onbufferchange = function(nIsBuffering) {
if (s.playState === 0) return false;
if ((nIsBuffering && s.isBuffering) || (!nIsBuffering && !s.isBuffering)) return false;
s.isBuffering = (nIsBuffering === 1);
if (s._iO.onbufferchange) {
s._iO.onbufferchange.apply(s, [nIsBuffering]);
}
return true;
};
this._onsuspend = function() {
if (s._iO.onsuspend) {
s._iO.onsuspend.apply(s);
}
return true;
};
this._onfailure = function(msg, level, code) {
s.failures++;
if (s._iO.onfailure && s.failures === 1) {
s._iO.onfailure(msg, level, code);
} else {
}
};
this._onwarning = function(msg, level, code) {
if (s._iO.onwarning) {
s._iO.onwarning(msg, level, code);
}
};
this._onfinish = function() {
var io_onfinish = s._iO.onfinish;
s._onbufferchange(0);
s._resetOnPosition(0);
if (s.instanceCount) {
s.instanceCount--;
if (!s.instanceCount) {
detachOnPosition();
s.playState = 0;
s.paused = false;
s.instanceCount = 0;
s.instanceOptions = {};
s._iO = {};
stop_html5_timer();
if (s.isHTML5) {
s.position = 0;
}
}
if (!s.instanceCount || s._iO.multiShotEvents) {
if (io_onfinish) {
wrapCallback(s, function() {
io_onfinish.apply(s);
});
}
}
}
};
this._whileloading = function(nBytesLoaded, nBytesTotal, nDuration, nBufferLength) {
var instanceOptions = s._iO;
s.bytesLoaded = nBytesLoaded;
s.bytesTotal = nBytesTotal;
s.duration = Math.floor(nDuration);
s.bufferLength = nBufferLength;
if (!s.isHTML5 && !instanceOptions.isMovieStar) {
if (instanceOptions.duration) {
s.durationEstimate = (s.duration > instanceOptions.duration) ? s.duration : instanceOptions.duration;
} else {
s.durationEstimate = parseInt((s.bytesTotal / s.bytesLoaded) * s.duration, 10);
}
} else {
s.durationEstimate = s.duration;
}
if (!s.isHTML5) {
s.buffered = [{
start: 0,
end: s.duration
}];
}
if ((s.readyState !== 3 || s.isHTML5) && instanceOptions.whileloading) {
instanceOptions.whileloading.apply(s);
}
};
this._whileplaying = function(nPosition, oPeakData, oWaveformDataLeft, oWaveformDataRight, oEQData) {
var instanceOptions = s._iO,
eqLeft;
if (isNaN(nPosition) || nPosition === null) return false;
s.position = Math.max(0, nPosition);
s._processOnPosition();
if (!s.isHTML5 && fV > 8) {
if (instanceOptions.usePeakData && oPeakData !== _undefined && oPeakData) {
s.peakData = {
left: oPeakData.leftPeak,
right: oPeakData.rightPeak
};
}
if (instanceOptions.useWaveformData && oWaveformDataLeft !== _undefined && oWaveformDataLeft) {
s.waveformData = {
left: oWaveformDataLeft.split(','),
right: oWaveformDataRight.split(',')
};
}
if (instanceOptions.useEQData) {
if (oEQData !== _undefined && oEQData && oEQData.leftEQ) {
eqLeft = oEQData.leftEQ.split(',');
s.eqData = eqLeft;
s.eqData.left = eqLeft;
if (oEQData.rightEQ !== _undefined && oEQData.rightEQ) {
s.eqData.right = oEQData.rightEQ.split(',');
}
}
}
}
if (s.playState === 1) {
if (!s.isHTML5 && fV === 8 && !s.position && s.isBuffering) {
s._onbufferchange(0);
}
if (instanceOptions.whileplaying) {
instanceOptions.whileplaying.apply(s);
}
}
return true;
};
this._oncaptiondata = function(oData) {
s.captiondata = oData;
if (s._iO.oncaptiondata) {
s._iO.oncaptiondata.apply(s, [oData]);
}
};
this._onmetadata = function(oMDProps, oMDData) {
var oData = {}, i, j;
for (i = 0, j = oMDProps.length; i < j; i++) {
oData[oMDProps[i]] = oMDData[i];
}
s.metadata = oData;
if (s._iO.onmetadata) {
s._iO.onmetadata.call(s, s.metadata);
}
};
this._onid3 = function(oID3Props, oID3Data) {
var oData = [], i, j;
for (i = 0, j = oID3Props.length; i < j; i++) {
oData[oID3Props[i]] = oID3Data[i];
}
s.id3 = mixin(s.id3, oData);
if (s._iO.onid3) {
s._iO.onid3.apply(s);
}
};
this._onconnect = function(bSuccess) {
bSuccess = (bSuccess === 1);
s.connected = bSuccess;
if (bSuccess) {
s.failures = 0;
if (idCheck(s.id)) {
if (s.getAutoPlay()) {
s.play(_undefined, s.getAutoPlay());
} else if (s._iO.autoLoad) {
s.load();
}
}
if (s._iO.onconnect) {
s._iO.onconnect.apply(s, [bSuccess]);
}
}
};
this._ondataerror = function(sError) {
if (s.playState > 0) {
if (s._iO.ondataerror) {
s._iO.ondataerror.apply(s);
}
}
};
};
getDocument = function() {
return (doc.body || doc.getElementsByTagName('div')[0]);
};
id = function(sID) {
return doc.getElementById(sID);
};
mixin = function(oMain, oAdd) {
var o1 = (oMain || {}), o2, o;
o2 = (oAdd === _undefined ? sm2.defaultOptions : oAdd);
for (o in o2) {
if (o2.hasOwnProperty(o) && o1[o] === _undefined) {
if (typeof o2[o] !== 'object' || o2[o] === null) {
o1[o] = o2[o];
} else {
o1[o] = mixin(o1[o], o2[o]);