Cassius Marques
Forum Replies Created
-
yeah sorry, I’ve never used templates in Premiere, I never thought how would the interaction work nor how any changes would be evaluated. I’m an AE guy.
Its up to you guys to build any remaining bridges.
Cassius Marques
http://www.zapfilmes.com -
Just reduce the paths to fit the artboard, its all vector. You can rasterize it at any size in AE later on.
Cassius Marques
http://www.zapfilmes.com -
Its usually that (another artboard) or when we accidentaly import a sequence (which by the SS is not your case). Never I’ve seen a broken link causing that.
Try to copy paste just what you need to a new file.
Cassius Marques
http://www.zapfilmes.com -
-
-
If you need it in an If/else format you can go like
count = 0;
for (i=0; i < text.sourceText.length; i++)
{
if (text.sourceText[i] == '\r')
{
count++;
}
}
count == 2? value-[0,10] : (count == 1? value-[0,5]: value)You can then just type in the values for the position or do some math. (I’m supposing a 1-3 line text case)
Cassius Marques
http://www.zapfilmes.com -
count = 0;
for (i=0; i < text.sourceText.length; i++)
{
if (text.sourceText[i] == '\r')
{
count++;
}
}
value-[0,10*count]I’m Changing vertical position based on how many Enter keys you’ve got.
Cassius Marques
http://www.zapfilmes.com -
Cassius Marques
August 22, 2018 at 12:57 pm in reply to: Move and edit composition (contains 100 x .png file made by Blender)See Walter’s post, by just typing I missed the fact scale is a 2 dimensiom property, thus the errors. His expression will solve those.
Anyway, I can’t see whats wrong because you just uploaded the project and not the assets. I’ve got missing footages on every file.
Cassius Marques
http://www.zapfilmes.com -
Cassius Marques
August 21, 2018 at 5:55 pm in reply to: Move and edit composition (contains 100 x .png file made by Blender)you can apply a linear expression to the scale property.
alt + click the scale stopwatch of the first layer.
Type
x=thisLayer.index;
linear(x,0,99,100,80)Copy this scale and paste to all layers. This will make each of your 100 layers on the timeline to gradually scalle down from 100% to 80%.
Cassius Marques
http://www.zapfilmes.com -
Cassius Marques
August 17, 2018 at 1:19 pm in reply to: Video background in Motion Graphics Template[Andrew Somers] “You (typically) never want video compressed like H264 as a source file, as it will slow the working process greatly because all frames since the last keyframe have to be parsed in order to show a current frame.”
I’m not so sure this holds true any more. Since it shifts the load from data reading (huge files) to GPU processing (parsing h264). To be honest, all my evidence is anecdotal. So its just my experience from working in a few 4k projects. On which I’ve got great responsiveness either with all files being prores/dnx, or high quality h264. So I’m just saying we should considerer hardware configurations before deciding on that.
Cassius Marques
http://www.zapfilmes.com