scttcper / video-filename-parser

Scene release name parser

Home Page:https://video-filename-parser.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incorrectly parsed episode name

arafatamim opened this issue ยท comments

Input: 13.Reasons.Why.S01E03.1080p10bit.WEB-DL.Hin-Eng.x265.MSub-KatmovieHD.nu.mkv
Actual result:

{
    title: "13 Reasons Why",
    year: null,
    resolution: "1080P",
    sources: [ "WEBDL" ],
    videoCodec: "x265",
    audioCodec: undefined,
    audioChannels: undefined,
    revision: { version: 1, real: 0 },
    group: "Eng",
    edition: {
      imax: undefined,
      remastered: undefined,
      extended: undefined,
      theatrical: undefined,
      directors: undefined,
      unrated: undefined,
      fanEdit: undefined,
      limited: undefined,
      hdr: undefined,
      internal: undefined
    },
    languages: [ "English" ],
    multi: undefined,
    complete: undefined,
    seasons: [ 1 ],
    episodeNumbers: [
      3, 4, 5,  6,
      7, 8, 9, 10
    ],
    airDate: null,
    fullSeason: false,
    isPartialSeason: false,
    isMultiSeason: false,
    isSeasonExtra: false,
    isSpecial: false,
    seasonPart: 0,
    isTv: true
  }

Problem descriptions:

  1. Episode number is parsed incorrectly, expected only [ 3 ].
  2. Group name parsed incorrectly; expected KatmovieHD.nu instead of Eng.
  3. Languages, expected English and Hindi.

๐ŸŽ‰ This issue has been resolved in version 3.5.0 ๐ŸŽ‰

The release is available on:

Your semantic-release bot ๐Ÿ“ฆ๐Ÿš€