window.URL.createObjectURL(file)
によって作成されたアドレスをdancer.jsに渡したいのですが、取得しGET blob:http%3A//localhost/b847c5cd-aaa7-4ce0-8ff8-c13c6fc3505a.mp3 404 (Not Found)
ます。
ファイル入力で選択したファイルを使用してオーディオ要素を作成できましたが、dancer.jsがファイルを見つけられません...何かアイデアはありますか?(以下のObjectURLの受け渡し方法)
$(document).ready(function(){
$("#submit").click(function(){
var file = document.getElementById("file").files[0];
$('body').append('<audio id="audio" controls="controls"></audio>');
$('#audio').append('<source src='+window.URL.createObjectURL(file)+' type=audio/mpeg />')
$('body').append('<a href='+window.URL.createObjectURL(file)+'>link</a>')
dancer(window.URL.createObjectURL(file));
})
})