1.2.14 • Published 6 years ago
source-scraper v1.2.14
SourceScraper
Scrap the sources from your favorite video streaming sites.
Supported Sites
Source
- MP4Upload
 - MyStream
 - Openload
 - Rapidvideo
 - Streamango
 - Streamcloud
 - StreamMoe
 - Tiwikiwi
 - Vevio
 - Vidstreaming
 - Vidzi
 
Hoster
Getting Started
Installation
$ npm i source-scraperThere is a package available for each site individually which you can find here.
Usage
const { scrapers } = require('source-scraper');
(async () => {
    const url = 'some url';
    const scraper = scrapers.all.getFirstApplicable(url);
    const scrap = await scraper.scrap(url);
    if (scrap.success)
        console.log(scrap.data);
})();