Open CoolJoe72 opened 6 months ago
Sorry didn't realize it would make you download the patch without viewing it. Here is what is in the patch file above or if you prefer just copy it from here.
diff --git a/plugin_cmds/cmd_decrypt.py b/plugin_cmds/cmd_decrypt.py
index 8a09304..489055b 100644
--- a/plugin_cmds/cmd_decrypt.py
+++ b/plugin_cmds/cmd_decrypt.py
@@ -495,6 +495,12 @@ class FfmpegFileDecrypter:
except ChapterError:
if self._skip_rebuild_chapters:
echo("Skip rebuild chapters due to chapter mismatch.")
+ base_cmd.extend(
+ [
+ "-i",
+ str(self._source),
+ ]
+ )
else:
raise
else:
So it looks like it skips the part where it's supposed to add the input file.
I'm sure there is a better way to do this (I know just enough programing to be dangerous) but I made a patch file skip_rebuild.patch which should highlight the issue location.
After making the change everything seems to work.