How to append blob to input of type file?
You can't change the file input but you can use a hidden input to pass data. ex.:
file
hidden
var hidden_elem = document.getElementById("hidden"); hidden_elem.value = blob;