Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/trackers/HUNO.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ async def get_name(self, meta):
elif type == "REMUX" and source == "BluRay": #BluRay Remux
name = f"{title} ({year}) {three_d} {edition} ({resolution} {uhd} {source} {hybrid} REMUX {video_codec} {hdr} {audio} {tag}) {repack}"
elif type == "REMUX" and source in ("PAL DVD", "NTSC DVD"): #DVD Remux
name = f"{title} ({year}) {edition} (DVD {hybrid} REMUX {video_codec} {hdr} {audio} {tag}) {repack}"
name = f"{title} ({year}) {edition} ({resolution} {source} {hybrid} REMUX {video_codec} {hdr} {audio} {tag}) {repack}"
elif type == "ENCODE": #Encode
name = f"{title} ({year}) {edition} ({resolution} {scale} {uhd} {source} {hybrid} {video_encode} {hdr} {audio} {tag}) {repack}"
elif type in ("WEBDL", "WEBRIP"): #WEB
Expand All @@ -198,7 +198,7 @@ async def get_name(self, meta):
elif type == "REMUX" and source == "BluRay": #BluRay Remux
name = f"{title} ({search_year}) {season}{episode} {three_d} {edition} ({resolution} {uhd} {source} {hybrid} REMUX {video_codec} {hdr} {audio} {tag}) {repack}" #SOURCE
elif type == "REMUX" and source in ("PAL DVD", "NTSC DVD"): #DVD Remux
name = f"{title} ({search_year}) {season}{episode} {edition} ({resolution} DVD {hybrid} REMUX {video_codec} {hdr} {audio} {tag}) {repack}" #SOURCE
name = f"{title} ({search_year}) {season}{episode} {edition} ({resolution} {source} {hybrid} REMUX {video_codec} {hdr} {audio} {tag}) {repack}" #SOURCE
elif type == "ENCODE": #Encode
name = f"{title} ({search_year}) {season}{episode} {edition} ({resolution} {scale} {uhd} {source} {hybrid} {video_encode} {hdr} {audio} {tag}) {repack}" #SOURCE
elif type in ("WEBDL", "WEBRIP"): #WEB
Expand Down