SeriesIDParser 12.1.0
dotnet add package SeriesIDParser --version 12.1.0
NuGet\Install-Package SeriesIDParser -Version 12.1.0
<PackageReference Include="SeriesIDParser" Version="12.1.0" />
paket add SeriesIDParser --version 12.1.0
#r "nuget: SeriesIDParser, 12.1.0"
// Install SeriesIDParser as a Cake Addin #addin nuget:?package=SeriesIDParser&version=12.1.0 // Install SeriesIDParser as a Cake Tool #tool nuget:?package=SeriesIDParser&version=12.1.0
SeriesIDParser
Links
Download it from NuGet!
If you want, you can tell me, your thoughts about this project, on my GitHub Profile
About
This project is designed to receive a movie series string like that:
Knight.Rider.S01E07.Die.grosse.Duerre.3D.HOU.1982.German.DVDRip.XviD-c0nFuSed.mkv
The output would be a ParserResult
object like that (Demo-App):
Property | Value |
---|---|
OriginalString (string) | Knight.Rider.S01E07.Die.grosse.Duerre.3D.HOU.1982.German.DVDRip.XviD-c0nFuSed.mkv |
ParsedString (string) | Knight.Rider.S01E07.Die.grosse.Duerre.1982.SD.3D.HOU.German.XviD.mkv |
Title (string) | Knight.Rider |
EpisodeTitle (string) | Die.grosse.Duerre |
FullTitle (string) | Knight.Rider.S01E07.Die.grosse.Duerre |
IsSeries (bool) | True |
IsMultiEpisode (bool) | False |
Season (int) | 1 |
Episodes (int list) | 7 |
IDString (string) | S01E07 |
Resolutions (enum list Resolutions) | SD_Any |
Year (int) | 1982 |
FileExtension (string) | .mkv |
RemovedTokens (string list) | German, XviD |
State (enum State) | Notice |
DetectedOldSpacingChar (char) | . |
ReleaseGroup (string) | c0nFuSed |
AudioCodec (string) | |
VideoCodec (string) | XviD |
Is3D (string) | True |
DimensionalType (string) | Dimension_3DHOU |
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
12.1.0 | 138 | 2/4/2024 |
12.0.2 | 100 | 2/3/2024 |
12.0.1 | 100 | 2/3/2024 |
12.0.0 | 97 | 2/3/2024 |
11.0.0 | 598 | 2/24/2021 |
10.3.0 | 736 | 3/18/2019 |
10.2.0 | 667 | 2/23/2019 |
10.1.2 | 1,020 | 9/3/2017 |
10.1.1 | 945 | 9/3/2017 |
10.1.0 | 992 | 9/3/2017 |
10.0.0 | 999 | 7/22/2017 |
9.2.0 | 1,041 | 4/14/2017 |
9.1.1 | 1,030 | 1/24/2017 |
9.1.0 | 1,064 | 1/24/2017 |
9.0.0 | 1,044 | 1/3/2017 |
8.2.0 | 1,097 | 12/24/2016 |
8.1.1 | 1,034 | 11/29/2016 |
8.1.0 | 1,046 | 11/27/2016 |
8.0.0 | 1,036 | 11/26/2016 |
7.0.1 | 1,062 | 10/16/2016 |
7.0.0 | 1,034 | 10/16/2016 |
6.1.0 | 1,060 | 10/5/2016 |
6.0.0 | 1,356 | 9/17/2016 |
5.2.1 | 1,061 | 8/12/2016 |
5.2.0 | 1,065 | 8/12/2016 |
5.1.0 | 1,028 | 8/12/2016 |
5.0.1 | 1,018 | 8/11/2016 |
4.0.3 | 1,197 | 7/30/2016 |
4.0.2 | 1,179 | 7/30/2016 |
4.0.1 | 1,188 | 7/30/2016 |
4.0.0 | 1,162 | 7/30/2016 |
3.0.0 | 2,175 | 7/29/2016 |
2.2.4 | 1,259 | 7/29/2016 |
2.2.3 | 1,283 | 7/29/2016 |
2.2.2 | 1,267 | 7/29/2016 |
2.2.1 | 1,264 | 7/29/2016 |
2.2.0 | 1,707 | 7/29/2016 |
# Changelog #
##12.1.0 (2024-02-02)##
###Removed###
- Serializers
---
##12.0.0 (2024-02-03)##
###New###
- Project now supports .Net 8
- CleanUp
- Readme sample
- Removed a ton of typos
- Removed IEnumerable
- Nuget package
---
##11.0.0 (2021-02-24)##
###New###
- Project now supports .Net 5
- Support for .Net Core is closed now