From 17167bd27c147b858323c43acbefe70440708ba4 Mon Sep 17 00:00:00 2001 From: Dylan Date: Tue, 23 Jan 2024 17:18:37 +0000 Subject: [PATCH] Fix capitalization --- gifConvert/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gifConvert/__init__.py b/gifConvert/__init__.py index f519862..6518241 100644 --- a/gifConvert/__init__.py +++ b/gifConvert/__init__.py @@ -63,7 +63,7 @@ def loop_video_until_length(filename, length): new_filename = tempfile.mkstemp(suffix=".mp4")[1] edits = calcEdits(video_length,loops) #out = subprocess.call(["ffmpeg","-stream_loop",str(loops),"-i",filename,"-c","copy","-y",new_filename],stdout=subprocess.DEVNULL,stderr=subprocess.STDOUT) - subprocess.run(["./mp4box", "-add",filename,"-edits",f'1={edits}',new_filename]) + subprocess.run(["./MP4Box", "-add",filename,"-edits",f'1={edits}',new_filename]) return new_filename else: return filename