crunchy/app.js
2015-01-23 20:38:23 +01:00

17 lines
423 B
JavaScript

'use strict';
var config = {
format: 'ass', // defaults to srt
merge: true, // defaults to false
path: 'F:\\Anime', // defaults to process.cwd()
tag: undefined, // defaults to CrunchyRoll
};
var episode = require('./src/episode');
episode(
config,
'http://www.crunchyroll.com/fairy-tail/episode-1-the-dragon-king-652167',
function(err) {
if (err) return console.log(err);
console.log('All done!');
});