This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<audio id="player1" preload="none" controls style="max-width:100%;"></audio> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
new MediaElementPlayer('player-id', { | |
// More MEJS config | |
success: function (media, node, player) { | |
// Your code when successful | |
// Gather list of children | |
var mediaFiles = player.mediaFiles ? player.mediaFiles : node.children(), tmpFiles = []; | |
media.addEventListener('error', function () { |