Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

mediascan

jy9552MIT2.0.1TypeScript support: included

A scanner for media files that follows a user-provided naming convention

media files, media, media files scanner, naming, convention, naming convention, torrent, library, parser, torrent file, parse torrent, parse torrent file, parse torrent name

readme

mediascan Build Status codecov Dependency Status License: MIT semantic-release Greenkeeper badge Join the chat at https://gitter.im/mediaScan/Lobby

A scanner for media files that follows a user-provided naming convention

What to do with this library ?

A lot of things :

Don't hesitate to suggest new features : it is always worthy :)

FAQ

Which naming convention can I use with this lib ?

ANYTHING. All You have to do is to implement a parser function : A function that takes a single string argument fullPathFile (the full path to the file) that returns an object that minimal contains a title string property. For example :

const ptt = require("parse-torrent-title");
const information = ptt.parse("Game.of.Thrones.S01E01.720p.HDTV.x264-CTU");

console.log(information.title);      // Game of Thrones
console.log(information.season);     // 1
console.log(information.episode);    // 1
console.log(information.resolution); // 720p
console.log(information.codec);      // x264
console.log(information.source);     // HDTV
console.log(information.group);      // CTU

This lib was tested with these parsers that follows torrent naming conventions (see their readme for more info) :

How the library detects the category of a media file ?

The default implementation determines it is a tv-show if there is season and episode attributes can be found in the information provided by the parser. Here is a example if you want to implement one :

// Default implementation to know which category is this file
function defaultWhichCategoryFunction(object : MediaScanLib.TPN) : MediaScanLib.Category{
    // workaround : const string enum aren't compiled correctly with Babel
    return (checkProperties(object, ['season', 'episode']))
        ? 'TV_SERIES' as MediaScanLib.Category.TV_SERIES_TYPE : 'MOVIES' as MediaScanLib.Category.MOVIES_TYPE;
}

Using custom parameters in the lib

Check the constructor for more detail - an illustration :

const MediaScan = require("mediascan");
let libInstance = new MediaScan({
    defaultPath = process.cwd(), // Default path to explore , if paths is empty
    paths = [], // all the paths that will be explored
    allFilesWithCategory = new Map(), // the mapping between file and Category
    movies = new Set(), // Set<ParserResult> (all the movies)
    series = new Map(), // <tvShowName , Set<ParserResult>> (all the tv-series episodes)
}, {
    parser = nameParser, // the explained parser
    whichCategory = defaultWhichCategoryFunction, // the previously explained detection function
});

Installation

For npm users :

$ npm install --save mediascan

for Yarn :

$ yarn add mediascan

Test

npm test

Types definitions

If You want, You can have the types definitions used in this lib :

npm install @types/mediascan

Contributing

  • If you're unsure if a feature would make a good addition, you can always create an issue first.
  • We aim for 100% test coverage. Please write tests for any new functionality or changes.
  • Any API changes should be fully documented.
  • Make sure your code meets our linting standards. Run npm run lint to check your code.
  • Be mindful of others when making suggestions and/or code reviewing.

changelog

2.0.1 (2019-08-02)

CI

fix

Fix

Upgrade

2.0.0 (2018-05-20)

Breaking

Chore

Upgrade

1.2.4 (2018-04-11)

Docs

Perf

Style

Test

Upgrade

1.2.3 (2018-03-23)

Refactor

Style

1.2.2 (2018-03-21)

Perf

Upgrade

1.2.1 (2018-03-20)

Perf

Refactor

Upgrade

1.2.0 (2018-03-16)

CI

Feat

Perf

Refactor

1.1.6 (2018-03-08)

Perf

Test

1.1.5 (2018-03-07)

Refactor

1.1.4 (2018-03-05)

Chore

Docs

Refactor

1.1.3 (2018-02-25)

Perf

Refactor

1.1.2 (2018-02-25)

Perf

Test

1.1.1 (2018-02-23)

Refactor

Test

1.1.0 (2018-02-22)

Docs

Feat

Perf

1.0.1 (2018-02-22)

Docs

Perf

Style

1.0.0 (2018-02-21)

CI

Fix

Perf

Refactor

Test