<input id="testurl" type="text"></input> <input type="button" id="getduration" value="get duration"></input>
<div id="result"></div>Try copying this link to the above text box : https://ia802508.us.archive.org/5/items/testmp3testfile/mpthreetest.mp3
JavaScript
$("#getduration").on("click", function (e) {
loadMusic($("#testurl").val());
});
var ctx = new AudioContext();
function loadMusic(url) {
var req = new XMLHttpRequest();
$("#result").html("Please wait .. "); // 116
req.open('GET', url, true);
req.responseType = 'arraybuffer';
req.onload = function () {
ctx.decodeAudioData(req.response, function (buffer) {
$("#result").html("Duration :" + buffer.duration); // 116
})
};
req.send();
}
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.