/*! * MediaElement.js * http://www.mediaelementjs.com/ * * Wrapper that mimics native HTML5 MediaElement (audio and video) * using a variety of technologies (pure JavaScript, Flash, iframe) * * Copyright 2010-2017, John Dyer (http://j.hn/) * License: MIT * */(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i 0) { bufferedTime = duration * loadProgress; var event = mejs.Utils.createEvent('progress', sc); mediaElement.dispatchEvent(event); } }); scPlayer.getDuration(function (_duration) { duration = _duration; var event = mejs.Utils.createEvent('loadedmetadata', sc); mediaElement.dispatchEvent(event); }); }); var initEvents = ['rendererready', 'loadeddata', 'loadedmetadata', 'canplay']; for (var _i3 = 0, _total3 = initEvents.length; _i3 < _total3; _i3++) { var event = mejs.Utils.createEvent(initEvents[_i3], sc); mediaElement.dispatchEvent(event); } }; scIframe = document.createElement('iframe'); scIframe.id = sc.id; scIframe.width = isVideo ? '100%' : 1; scIframe.height = isVideo ? '100%' : 1; scIframe.frameBorder = 0; scIframe.style.visibility = isVideo ? 'visible' : 'hidden'; scIframe.src = mediaFiles[0].src; scIframe.scrolling = 'no'; mediaElement.appendChild(scIframe); mediaElement.originalNode.style.display = 'none'; var scSettings = { iframe: scIframe, id: sc.id }; SoundCloudApi.load(scSettings); sc.setSize = function () {}; sc.hide = function () { sc.pause(); if (scIframe) { scIframe.style.display = 'none'; } }; sc.show = function () { if (scIframe) { scIframe.style.display = ''; } }; sc.destroy = function () { scPlayer.destroy(); }; return sc; } }; mejs.Utils.typeChecks.push(function (url) { return (/\/\/(w\.)?soundcloud.com/i.test(url) ? 'video/x-soundcloud' : null ); }); mejs.Renderers.add(SoundCloudIframeRenderer); },{}]},{},[1]);