如何创建视频文件的BLOB

2022-03-03 00:00:00 blob node.js javascript

我想为初学者创建本地视频文件的一大块file:/home/user/NodeJS/Projects/project1/routes/../videosTrans/Node.js教程-使用Express2.js.mp4介绍Node.js

我无法理解Blob的确切格式。我希望创建它以将其作为输入提供给函数createObjectURL()。 以下选项不起作用:

 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);

解决方案

请将Blob的第二个参数用作Object。 因此您的代码应该是:

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);

相关文章