1.3.6 • Published 5 years ago

subscene_scraper v1.3.6

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

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)
})
1.3.6

5 years ago

1.3.5

7 years ago

1.3.4

7 years ago

1.3.3

7 years ago

1.3.2

7 years ago

1.3.1

7 years ago

1.3.0

7 years ago

1.2.6

8 years ago

1.2.5

8 years ago

1.2.4

8 years ago

1.2.3

8 years ago

1.2.1

8 years ago

1.2.0

8 years ago

1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.9

8 years ago

1.0.8

8 years ago

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago

0.2.81

9 years ago

0.2.71

9 years ago

0.2.65

9 years ago

0.2.61

9 years ago

0.2.55

9 years ago

0.2.53

9 years ago

0.2.50

9 years ago

0.2.49

9 years ago

0.2.48

9 years ago

0.2.47

9 years ago

0.2.46

9 years ago

0.2.44

9 years ago

0.2.43

9 years ago

0.2.42

9 years ago

0.2.41

9 years ago

0.2.4

9 years ago

0.2.3

9 years ago

0.2.2

9 years ago

0.2.1

9 years ago

0.2.0

9 years ago

0.1.9

9 years ago

0.1.8

9 years ago

0.1.7

9 years ago

0.1.6

9 years ago

0.1.5

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.0

9 years ago

0.0.9

9 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago