Skip to content

Commit 2f12940

Browse files
committed
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
1 parent eade368 commit 2f12940

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/windows/export.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,9 @@ def titlestring(sec, fps, mess):
811811

812812
# Re-update the timeline FPS again (since the timeline just got clobbered)
813813
self.updateFrameRate()
814-
self.timeline.ApplyMapperToClips()
814+
815+
# Apply mappers to timeline readers
816+
self.timeline.ApplyMapperToClips()
815817

816818
# Create FFmpegWriter
817819
try:

0 commit comments

Comments
 (0)