Skip to content

Commit

Permalink
Fix DVD remux naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Audionut committed Nov 28, 2024
1 parent 2e618c4 commit dee0167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/prep.py
Original file line number Diff line number Diff line change
Expand Up @@ -3186,7 +3186,7 @@ async def get_name(self, meta):
elif type == "REMUX" and source in ("BluRay", "HDDVD"): # BluRay Remux
name = f"{title} {year} {alt_title} {season}{episode} {episode_title} {part} {three_d} {edition} {repack} {resolution} {uhd} {source} REMUX {hdr} {video_codec} {audio}" # SOURCE
potential_missing = ['edition', 'description']
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} {alt_title} {season}{episode} {episode_title} {part} {edition} {repack} {source} REMUX {audio}" # SOURCE
potential_missing = ['edition', 'description']
elif type == "ENCODE": # Encode
Expand Down

0 comments on commit dee0167

Please sign in to comment.