Vorrei creare un Blob di un file di file video locale: ///home/user/NodeJS/Projects/project1/routes/../videosTrans/Node.js tutorial per principianti - un'introduzione a Node.js con Express2.js.mp4Come creare un blob di un file video
Non riuscivo a capire il formato esatto del Blob. Desidero crearlo per darlo come input alla funzione createObjectURL(). La seguente non funziona:
var URL = this.window.URL || this.window.webkitURL;
var file = new Blob(["file:///home/sanika/NodeJS/Projects/project1/routes/../videosTrans/Node.js tutorial for beginners - an introduction to Node.js with Express2.js.mp4"], "type" : "video\/mp4");
var value = URL.createObjectURL(file);
Ciao, hai trovato un modo per farlo? Mi piacerebbe fare lo stesso – H4mm3R