: Tabitha and Victor explore a labyrinth of tunnels beneath the town where the monsters reside .
The file you've listed is a of the show From Season 2, released by the group PSA . Release Group: PSA
def parse_video_features(filename): pattern = r'(\d3,4p).(\d+)bit.(WEBRip|BluRay).(\d+)CH.(x265|HEVC)' match = re.search(pattern, filename, re.IGNORECASE) if match: return "resolution": match.group(1), # 1080p "bit_depth": match.group(2), # 10bit "source": match.group(3), # WEBRip "audio_channels": match.group(4),# 6CH "codec": match.group(5) # x265
From.s02.1080p.10bit.webrip.6ch.x265.hevc-psa.p... Jun 2026
: Tabitha and Victor explore a labyrinth of tunnels beneath the town where the monsters reside .
The file you've listed is a of the show From Season 2, released by the group PSA . Release Group: PSA
def parse_video_features(filename): pattern = r'(\d3,4p).(\d+)bit.(WEBRip|BluRay).(\d+)CH.(x265|HEVC)' match = re.search(pattern, filename, re.IGNORECASE) if match: return "resolution": match.group(1), # 1080p "bit_depth": match.group(2), # 10bit "source": match.group(3), # WEBRip "audio_channels": match.group(4),# 6CH "codec": match.group(5) # x265