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