Wip Blacklisting dmm porn

Create adult text classifier ML Model

wip - starting to write PTN in c#

More work on season, show and movie parsing

Remove ML project
This commit is contained in:
iPromKnight
2024-03-09 14:25:06 +00:00
parent 5aba05f2b4
commit 6600fceb1a
52 changed files with 7699 additions and 82 deletions

View File

@@ -0,0 +1,13 @@
namespace Producer.Features.ParseTorrentTitle;
public sealed class AudioChannels : SmartEnum<AudioChannels, string>
{
public static readonly AudioChannels SEVEN = new("SEVEN", "7.1");
public static readonly AudioChannels SIX = new("SIX", "5.1");
public static readonly AudioChannels STEREO = new("STEREO", "stereo");
public static readonly AudioChannels MONO = new ("MONO", "mono");
private AudioChannels(string name, string value) : base(name, value)
{
}
}