From 2f129403a21150207f032e5e4e0cf98f28283ca3 Mon Sep 17 00:00:00 2001 From: Jonathan Thomas Date: Tue, 10 Aug 2021 15:42:27 -0500 Subject: [PATCH] Fixing a regression on Export dialog, where we were not correctly applying FrameMapper's to all the clips.. causing audio desync, timing issues with Clips, audio pitch issues --- src/windows/export.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/windows/export.py b/src/windows/export.py index 017c1eb6d6..dc82358fad 100644 --- a/src/windows/export.py +++ b/src/windows/export.py @@ -811,7 +811,9 @@ def titlestring(sec, fps, mess): # Re-update the timeline FPS again (since the timeline just got clobbered) self.updateFrameRate() - self.timeline.ApplyMapperToClips() + + # Apply mappers to timeline readers + self.timeline.ApplyMapperToClips() # Create FFmpegWriter try: