Skip to content

Commit 92edf23

Browse files
committed
fix video scan mode when using Reframe
https://forum.shotcut.org/t/export-in-advanced-mode-with-reframe-and- keyframe/47852
1 parent fdad24b commit 92edf23

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/docks/encodedock.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1244,6 +1244,7 @@ MeltJob *EncodeDock::convertReframe(Mlt::Producer *service,
12441244
reframeProfile.set_sample_aspect(1, 1);
12451245
reframeProfile.set_width(rect.w);
12461246
reframeProfile.set_height(rect.h);
1247+
reframeProfile.set_progressive(MLT.profile().progressive());
12471248
auto gcd = Util::greatestCommonDivisor(rect.w, rect.h);
12481249
reframeProfile.set_display_aspect(rect.w / gcd, rect.h / gcd);
12491250
LOG_DEBUG() << "reframe profile" << reframeProfile.width() << "x"

0 commit comments

Comments
 (0)