Socket
Book a DemoInstallSign in
Socket

subscene_scraper

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

subscene_scraper

Automate subtitle downloading from subscene.com

1.3.6
latest
Source
npmnpm
Version published
Weekly downloads
3
200%
Maintainers
1
Weekly downloads
 
Created
Source

Project Name

subscene_scraper

asciicast subd command

changelog v1.3.5

re-written in ES7

fixed various bugs.

Installation

npm install subscene_scraper --save

Usage:

example(1)

download a subtitle for a movie in our current working directory

code:

var subscene_scraper=require('subscene_scraper');

// for example we will download the subtitle file at current working directory
var path=process.cwd();

//all languages supported by subscene.com are now supported.

subscene_scraper.passiveDownloader('interstellar','english',path)
.then(function(savedFiles){
    console.log('subtitle saved to ',savedFiles);    
})
.catch(function(err){
console.log('error:',err);
});

example(2)

Interactive downloader
//title subtiles have 2 steps (1) chooseTitle (2) chooseRelease
// release subtitles have 1 step (1) chooseRelease
// you'll have to implement chooseTitleSubtitle,chooseReleaseSubtitle functions.
var subscene_scraper=require('subscene_scraper');
var interactiveDownloader=subscene_scraper.interactiveDownloader;
const downloader = interactiveDownloader(movieName, language, saveLocation);
downloader.on('info', async (info, choose) => {
  if (info.type === 'title') {
    // type === 'title'
    // chooseTitle (1)
    /// choose subtitle from info.result
    const result = choose(chooseTitleSubtitle(info.result));
    choose(result);
  } else {
    /// type === 'release'
    // chooseRelease (1)
    /// choose subtitle from info.result
    choose(chooseReleaseSubtitle(info.result));
  }
}).on('title', async (list, choose) => {
  // chooseRelease (2)
  const result = chooseReleaseSubtitle(list);
  choose(result);
}).on('done', (result, movieName) => {
  console.log('Downloaded Subtitle at', result)
})

Keywords

sub

FAQs

Package last updated on 31 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.