How to download a video with Blob url with nodejs

Viewed 1431

I'm using puppeteer to get video URL but I got a blob URL. how can I download video have blob URL with Nodejs? I have try using https module but I can't download it

const https = require('https');
var request = https.get('blob:bloburlhere')
0 Answers
Related