Skip to content

Commit

Permalink
HUNO - dvd remux fix
Browse files Browse the repository at this point in the history
fixes #146
  • Loading branch information
Audionut committed Dec 2, 2024
1 parent fee84b8 commit bb736fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/trackers/HUNO.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ async def get_name(self, meta):
name = f"{title} ({year}) {edition} ({resolution} {source} {hybrid} {video_codec} {hdr} {audio} {tag}) {repack}"
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
elif type == "REMUX" and source in ("PAL DVD", "NTSC DVD", "DVD"): # DVD Remux
name = f"{title} ({year}) {edition} (DVD {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}"
Expand Down

0 comments on commit bb736fb

Please sign in to comment.