Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在使用 youtube-dl 和node 模块进行一些概念验证,以通过 Web 界面下载 youtube 视频文件。
我搬到了流星使我的应用程序反应。此时,我能够获取视频信息、格式,并且视频下载似乎工作正常,但文件似乎没有被保存。
是否有人尝试集成 youtube-dl 或只是使用meteorJS 处理文件系统?
抱歉,我发现了错误。
我忘记添加管道来写入文件。
这是代码中缺少的部分。
var output = path.join(path.resolve('.'), info.filename); video.pipe(fs.createWriteStream(output));
var output = path.join(path.resolve('.'), info.filename);
video.pipe(fs.createWriteStream(output));
我将使用 github 中完整工作应用程序的链接来编辑此答案。我还没上传。
最好的!