Browse Source

disable timestamp fixing in slide generation engine

Noah Vogt 3 days ago
parent
commit
f3275f9ff4
1 changed files with 3 additions and 4 deletions
  1. 3 4
      slides/engine/generate_slides.py

+ 3 - 4
slides/engine/generate_slides.py

@@ -29,6 +29,9 @@ from utils import (
 import config as const
 
 
+# used in attempt to get a correct ordering as obs image slide shows ignores
+# filenames, but it appearently also ignores a/m-times as seen in
+# https://github.com/obsproject/obs-studio/issues/10382
 def fix_timestamps(slidegen):
     log("fixing timestamps...")
 
@@ -145,10 +148,6 @@ def generate_slides(
     for thread in threads:
         thread.start()
 
-    for thread in threads:
-        thread.join()
-    fix_timestamps(slidegen)
-
 
 def generate_start_slide(slidegen, template_img, zfill_length, disable_async):
     first_slide = slidegen.slide_style.start_slide_form()