From 9eb51e7bdbfbe200e7c3aa95c4b07f0974238bf4 Mon Sep 17 00:00:00 2001 From: w Date: Tue, 13 Oct 2020 17:35:39 -0700 Subject: [PATCH] Remove cachefile from lsmash the parameter differs depending on the installation --- Chunks/chunk_queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Chunks/chunk_queue.py b/Chunks/chunk_queue.py index 59d2f08..6741ce2 100644 --- a/Chunks/chunk_queue.py +++ b/Chunks/chunk_queue.py @@ -140,7 +140,7 @@ def create_video_queue_vsffms2(args: Args, split_locations: List[int]) -> List[C def create_video_queue_vslsmash(args: Args, split_locations: List[int]) -> List[Chunk]: script = "from vapoursynth import core\n" \ - "core.lsmas.LWLibavSource(\"{}\", cachefile=\"{}\").set_output()" + "core.lsmas.LWLibavSource(\"{}\").set_output()" return create_video_queue_vs(args, split_locations, script)