|
|
@ -296,7 +296,7 @@ def checkUniqueDispositions(context, mediaDescriptor: MediaDescriptor):
|
|
|
|
@click.option("--denoise", is_flag=True, default=False)
|
|
|
|
@click.option("--denoise", is_flag=True, default=False)
|
|
|
|
|
|
|
|
|
|
|
|
@click.option("--no-tmdb", is_flag=True, default=False)
|
|
|
|
@click.option("--no-tmdb", is_flag=True, default=False)
|
|
|
|
@click.option("--no-jellyfin", is_flag=True, default=False)
|
|
|
|
# @click.option("--no-jellyfin", is_flag=True, default=False)
|
|
|
|
@click.option("--no-pattern", is_flag=True, default=False)
|
|
|
|
@click.option("--no-pattern", is_flag=True, default=False)
|
|
|
|
|
|
|
|
|
|
|
|
@click.option("--dont-pass-dispositions", is_flag=True, default=False)
|
|
|
|
@click.option("--dont-pass-dispositions", is_flag=True, default=False)
|
|
|
@ -332,7 +332,7 @@ def convert(ctx,
|
|
|
|
output_directory,
|
|
|
|
output_directory,
|
|
|
|
denoise,
|
|
|
|
denoise,
|
|
|
|
no_tmdb,
|
|
|
|
no_tmdb,
|
|
|
|
no_jellyfin,
|
|
|
|
# no_jellyfin,
|
|
|
|
no_pattern,
|
|
|
|
no_pattern,
|
|
|
|
dont_pass_dispositions,
|
|
|
|
dont_pass_dispositions,
|
|
|
|
no_prompt,
|
|
|
|
no_prompt,
|
|
|
@ -351,7 +351,9 @@ def convert(ctx,
|
|
|
|
|
|
|
|
|
|
|
|
context['video_encoder'] = VideoEncoder.fromLabel(video_encoder)
|
|
|
|
context['video_encoder'] = VideoEncoder.fromLabel(video_encoder)
|
|
|
|
|
|
|
|
|
|
|
|
context['use_jellyfin'] = not no_jellyfin
|
|
|
|
#TODO: #407 Without effect -> remove
|
|
|
|
|
|
|
|
context['use_jellyfin'] = False
|
|
|
|
|
|
|
|
|
|
|
|
context['use_tmdb'] = not no_tmdb
|
|
|
|
context['use_tmdb'] = not no_tmdb
|
|
|
|
context['use_pattern'] = not no_pattern
|
|
|
|
context['use_pattern'] = not no_pattern
|
|
|
|
context['no_prompt'] = no_prompt
|
|
|
|
context['no_prompt'] = no_prompt
|
|
|
|