Skip to content

Commit

Permalink
HUNO: Correct DVD naming.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonbenta committed Jun 16, 2024
1 parent 46a3667 commit 66b0d7a
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 66b0d7a

Please sign in to comment.