A scraper for Rapidvideo.
This package is part of the SourceScraper-Project.
$ npm i rapidvideo-scraper
const { RapidvideoScraper } = require('rapidvideo-scraper');
(async () => {
const url = 'some url';
const scrap = await new RapidvideoScraper().scrap(url);
if (scrap.success)
console.log(scrap.data.sources);
})();