parse-torrent-name
parse-torrent-name copied to clipboard
Extract media information from a filename
Examples: ```json # ./cli.py "Attack on Titan - S04E21 - From.You,2000.Years.Ago WEBDL-480p" { "episode": 21, "quality": "WEB-DL", "title": "Attack on Titan", "season": 4, "encoder": "Years.Ago", "year": 2000, "resolution": "480p", "episodeName":...
pattern.py: from `('year', '([\[\(]?((?:19[0-9]|20[01])[0-9])[\]\)]?)')` to: `('year', '([\[\(]?((?:19[0-9]|20[012])[0-9])[\]\)]?)')`
Hello, Nice library but do you have an equivalent in java ? Thanks
The following example does not find the season, for example when a complete season is given without episode numbering in the title: `friends.s02.720p.bluray-sujaidr` In my limited testing, changing the regex...
Updates
I've reviewed the following PR's related to this: * https://github.com/divijbindlish/parse-torrent-name/pull/24 * https://github.com/divijbindlish/parse-torrent-name/pull/25/ * https://github.com/divijbindlish/parse-torrent-name/pull/27 * https://github.com/divijbindlish/parse-torrent-name/pull/29 They all take the approach of only supporting 2020-2029 or 2020-2039. I'm sure that...
I noticed the year regex only supports up to 2019. Fixed that.
This is a though one... Parsing `2012.2009.BluRay.1080p.x264.YIFY.mp4` produce: ``` { "year": 2012, "resolution": "1080p", "quality": "BluRay", "codec": "x264", "container": "mp4", "title": "2009", "excess": "YIFY" } ``` Maybe the order in...
Would it be possible to add support for parsing TV names where episodes are designated by date? I could see two methods for parsing TV.Show.2017.07.01 1. Add month and year...
``` The.Legend.of.1900.1998.1080p.BluRay.H264.AAC-RARBG 2001.A.Space.Odyssey.1968.iNTERNAL.1080p.BluRay.x264-MANNEKEPiS ```