From 408c82a559ca0e51c32a055d6fdfc2bbd2138ffc Mon Sep 17 00:00:00 2001 From: James Ding Date: Sun, 30 Nov 2025 23:28:12 -0800 Subject: [PATCH] fix: revert compatibility for non-nvidia machines --- video_creation/final_video.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/video_creation/final_video.py b/video_creation/final_video.py index 158aece..9e5f110 100644 --- a/video_creation/final_video.py +++ b/video_creation/final_video.py @@ -437,6 +437,7 @@ def make_final_video( path, f="mp4", **{ + "c:v": "h264_nvenc", "b:v": "20M", "b:a": "192k", "threads": multiprocessing.cpu_count(), @@ -466,6 +467,7 @@ def make_final_video( path, f="mp4", **{ + "c:v": "h264_nvenc", "b:v": "20M", "b:a": "192k", "threads": multiprocessing.cpu_count(),