PuyaSubs parser added

This commit is contained in:
Timon Ringwald 2022-08-25 18:35:41 +02:00
parent d343540b0f
commit c840c68b76

View File

@ -44,4 +44,19 @@ var Parsers = []model.Parser{
), ),
FileParser: nil, FileParser: nil,
}, },
{
Identity: "PuyaSubs!",
TorrentParser: regexTorrentParser(
`^\[PuyaSubs!\] (.*) - (\d+?) \[ESP-ENG\]\[(.*?)\]\[.*?\]\.mkv$`,
TorrentParseOptions{
Name: 1,
Episode: 2,
Resolution: 3,
DefaultLanguages: []string{"ja"},
DefaultSubtitles: []string{"en"},
},
),
FileParser: nil,
},
} }