1.1.0 • Published 3 years ago

whats-the-release v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

A simple api to desconstruct and parse file names of movies and tv shows. It is likely very buggy as I havn't covered many cases yet.

🚀 Get started

Install

npm install what-the-release

Example usage

import { parse } from 'what-the-release';

console.log(parse('Movie.Name.2021.1080p.WEB-DL.DDP5.1.Atmos.H.264-moo'));

// Returns:
// {
//   type: "Movie",
//   name: "Movie Name",
//   year: "2021",
//   resolution: "1080p",
//   source: "WEB-DL",
//   codecs: { audio: "DDP5.1", video: "X264" },
//   container: undefined,
//   mimeType: undefined,
//   tags: [],
//   releaseGroup: "moo",
// }

📖 Changelog

Check out our changelog.

📝 License

Licensed under the MIT License.

1.1.0

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago