Skip to main content
Participant
October 9, 2023
Question

MOGRT file comp settings not exporting correctly

  • October 9, 2023
  • 1 reply
  • 619 views

I created a motion graphic in 1080x1920 in AE, but when I export this graphic as a Motion Graphics template and import it into Premiere Pro it comes in at 1920x1080.

Why is this, and how do i solve it?

I have included screenshots of the AE comp settings, as well as the sequence settings in PP and the MOGRT itself on the 1080x1920 sequence in PP.

Thanks in advance!

Richard

This topic has been closed for replies.

1 reply

Community Expert
October 9, 2023

Your MOGRT should have the same frame size as the AEP comp that was used to create it. A copy of After Effects will open in the background to render the graphic in Premiere in the same way a Dynamically linked comp works. There should be no change in the frame size.

 

When I design for social media, I set up a large square comp and include an Expression Controls/Menu Control to resize all of the elements for horizontal, square, and vertical sequence sizes so I don't have to load up a half dozen of the same graphics in Premiere Pro. I have created a Shape layer set as a guide layer to preview all of the title safe areas in the comp. It might be a better workflow for your project.

Simple if/else expressions adjust the size and position. Here's an example of the position expression tied to the Menu Control:

ctrl = thisComp.layer("Control").effect("Comp Size")("Menu");
if (ctrl == 1)
	p = [1080, 1500]
if (ctrl == 2)
	p = [1757, 1453]
if (ctrl == 3)
	p = [1456, 1500]
if (ctrl == 4)
	p = [1757, 1453]
if (ctrl == 5)
	p = [232, 1932]
if (ctrl == 6)
	p = [2000, 1800]
fix = thisComp.layer("Control").effect("Position Offset")("Point");
p + fix