SeriesIDParserCore 9.1.1

Suggested Alternatives

SeriesIDParser

Additional Details

.Net 5 support is now included in base package. Please switch to this package.

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package SeriesIDParserCore --version 9.1.1
NuGet\Install-Package SeriesIDParserCore -Version 9.1.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SeriesIDParserCore" Version="9.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SeriesIDParserCore --version 9.1.1
#r "nuget: SeriesIDParserCore, 9.1.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SeriesIDParserCore as a Cake Addin
#addin nuget:?package=SeriesIDParserCore&version=9.1.1

// Install SeriesIDParserCore as a Cake Tool
#tool nuget:?package=SeriesIDParserCore&version=9.1.1

For full .Net support check SeriesIDParser (SeriesIDParser)

Supported By JetBrains (https://www.jetbrains.com/)

Parses series or movie strings to detailed object.

Input: "Knight.Rider.S01E01E02.Die.grosse.Duerre.German.DVDRip.AAC.XviD-c0nFuSed.mkv"
The output would be a object like that:

SeriesID (object)
|-> FullTitle -> Knight.Rider.S01E07.Die.grosse.Duerre (string)
|-> SeriesTitle -> Knight.Rider (string)
|-> EpisodeTitle-> Die.grosse.Duerre (string)
|-> State -> OK_SUCCESS (Flagable Enum)
|-> IsSeries -> true (bool)
|-> IsMultiEpisode -> true (bool)
|-> OriginalString-> Knight.Rider.S01E07.Die.grosse.Duerre.German.DVDRip.XviD-c0nFuSed.mkv (string)
|-> ParsedString -> Knight.Rider.S01E07.Die.grosse.Duerre.DVDRip.German.mkv (string)
|-> RemovedTokens -> {German, DVDRip, XviD} (string-list)
|-> Season -> 1 (int)
|-> DetectedOldSpacingChar -> '.' (char)
|-> ProcessingDuration -> (TimeSpan)
|-> Episodes -> 1, 2 (int list)
|-> IDString -> S01E07 (string)
|-> Resolutions -> {SD_Any} (enum list)
|-> Year -> 1982 (int)
|-> VideoCodec -> XviD (string)
|-> AudioCodec -> AAC (string)
|-> ReleaseGroup -> c0nFuSed (string)
|-> FileInfo -> OBJECT (FileInfo)
|-> ParserSettingsUsed -> OBJECT (ParserSettingsUsed)
|-> Is3D -> true (bool)
|-> DimensionalType -> Dimension_3DHSBS (Enum)

Check "Project Site" link on the left for the GitHub project site.
Icon designed by Madebyoliver from Flaticon

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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 was computed.  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 Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.6 is compatible.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
9.0.0 946 1/3/2017
8.2.0 927 12/24/2016
7.0.1 962 10/16/2016
7.0.0 901 10/16/2016

# Changelog #


##9.1.0 (2017-01-24)##
###New###
- Changed XML Serializer from default to unicode to match core version
- Added up to 20 tokens to the ParserSettings to better match the upcomming 4k content
- Added 3D Detection
- Added some ParserSettings for 3D Detection: DetectAny3DTokens, DetectHou3DTokens, DetectHsbs3DTokens, DimensionalString3DAny, DimensionalString3DHSBS, DimensionalString3DHOU, DimensionalString2DAny
- Added some properties to the ParserResult object for 3D Detection: Is3D, DimensionalType
- Merged v9.0 features in SeriesIDParserCore
- New properties added to demo apps
- More unit tests to cover new features

###Fix###
-


---


##9.0.0 (2017-01-03)##
###New###
- Added full object caching. Prevents parsing the same object multiple times
- Added ParserSetting CacheMode; Default: Advanced
- Added ParserSetting CacheItemCountLimit; Default: 10.000
- Added way more code comments
- Added some 'Unknown' values in enums
- Added some benchmark unit tests
- Added unit tests for caching
- Added new ParserSettings to Serilization unit tests
- Added exception on wrong caching mode
- Removed old legacy UnitTest1.cs file
- Removed some useless comments

###Fix###
- Wrong default unknown string in ParserSettings
- Exception on not existing path in extensions