Nguyen33411686oews
Community Beginner
Nguyen33411686oews
Community Beginner
Activity
‎Jan 06, 2024
05:57 AM
1 Upvote
Hi everyone, I've been struggling with rendering for years now. My projects are often 15~20 minutes long with mainly AE dynamic link sequeces. The AE files only has keylights, vectors and some keyframes, no other heavy effects. More often than not in regards to big projects the render will get halted while the expected render time keeps going up, forcing me to requeue it. What's more confusing is that sometimes after requeing it will render smoothly without any problem. Has anyone encouter the same issue? and how can you fix this? I've missed so many deadlines because of it.  
... View more
‎Nov 20, 2023
04:02 AM
Well I'll be damned. Seems like all setting the Bit Depth to 32 bits was all it needed. Thanks everyone so much for your support. This was such a collective headache.
... View more
‎Nov 20, 2023
02:28 AM
I've render a small clip for you guys to download. Here are all my settings. It's not only this clip, but every clip I try, the white value in AE just doesn't seem to work properly. https://drive.google.com/drive/folders/1hD6nNjHMEZKPNAHGiuK6XsxoxEu5CA7Q?usp=sharing    
... View more
‎Nov 19, 2023
10:17 AM
I accidentally forgot to hit Post after writing a reply. Yes, the PR and AE footage are consitant, from Rec. 709 to disabling or "None" toggled on both programs. Only difference is None make the footage slightly brighter. Problem only arises when the lumetri color effect in PR gets ported to AE. I only lower the White value for the sake of simplicity, but after Linking to AE, the white value no longer restore information from the brighest area as it does in PR. There are no double effects on any of the screengrab, there's only a single lumetri color effect on clips I link to AE as you can see bellow. Notice the details on her blazer.   
... View more
‎Nov 19, 2023
12:47 AM
This is the info of the file. There isn't an option for a tree view in this version so I hope is is enough.
... View more
‎Nov 17, 2023
11:53 PM
I've changing HDR Graphics White (nits) from 100, 203 or 300 all of them look the same, I can't see any discernible difference and linking them AE still has the same problem. I've also try 1. turning AE's Working Color Space to None as Neil suggested 2. Disabling Tone mapping Nothing changes Since creating the thread I've try testing to see if this bug occurs on other footage online and it does. While color of the original footage are consistant between PR and AE, it divert wildly when adjusting Lumetri Color or any 3rd Party Grading effects. My other team members are experiencing the bug as well. This is causing quite the problem since much of the footage sent to us are over exposed and Color Correction in AE doesn't seem to target the White value properly. We're getting by, by rendering a color corrected version from PR before working but as you can imagine rendering 500+ hours of footage is quite a task, not to mention the storage it will take. Could this be causse of how After Effect communicate with the color effect issue instead of Color Management issue? Note: Here's a test footage I got online. I only lower the White Value and every test I've done the brightest part of the video comes back after linking to AE.   
... View more
‎Nov 17, 2023
06:42 AM
unfortunately I can't find that option in any of my settings.
... View more
‎Nov 16, 2023
10:02 PM
Here are my full settings for PR, AE, footage after reading couple of threads about similar topic. Can't tell if I'm missing something.
... View more
‎Nov 16, 2023
09:59 AM
Hi everybody, I'm having trouble to dynamic Linking my Premiere Pro footage with color correction to After Effects. For some reason the Lumetri Color effect react different when the footage is in After Effect and there's no way I can correct over expose footage on it since it just stops targeting the White value, and it just lower the brightness of the entire footage like a really weak Exporure property. I've try reading multiple threads about similar issues with footage not looking the same after dynamic linking but it looks like mine still look the same, just that no coloring effect works properly on it (I've try using RM colorista V as well, still doesn't work) The footage is from a Sony A7-IV camera Does anyone have any idea why this happen, and is there a way to fix it?     
... View more
‎Nov 09, 2023
05:19 AM
Good suggestion, but once the script has run through the first layer I think it releases the keyframes from the layers bellow and tell me "no properties are selected". Is there a way for it to go through every layer before losing the selection?
... View more
‎Nov 08, 2023
11:57 PM
1 Upvote
Good moring guys, I'm trying to script that would stretch out the distance between my selected keyframes proportionately, similar to alt click and dragging but faster. Here's the feature I want for the script: 1. It would stretch out from the point of the last keyframe 2. It would reselect the keyframes, so that you could stretch it again if you needed 3. I want it to affect every keyframe I selected from different layers. I got 1 and 2 to work but can't find a solution for 3 var comp = app.project.activeItem;
if (comp != null && (comp instanceof CompItem)) {
var layer = comp.selectedLayers[0];
if (layer != null) {
var keys = layer.selectedProperties;
if (keys.length > 0) {
app.beginUndoGroup("Stretch Keyframes");
var stretchFactor = 0.8; // Change this to your desired stretch factor
var keyData = [];
for (var i = 0; i < keys.length; i++) {
for (var j = 1; j <= keys[i].numKeys; j++) {
var keyTime = keys[i].keyTime(j);
var keyValue = keys[i].keyValue(j);
var inTemporalEase = keys[i].keyInTemporalEase(j);
var outTemporalEase = keys[i].keyOutTemporalEase(j);
var inInterpolationType = keys[i].keyInInterpolationType(j);
var outInterpolationType = keys[i].keyOutInterpolationType(j);
keyData.push({property: keys[i], keyTime: keyTime, keyValue: keyValue, inTemporalEase: inTemporalEase, outTemporalEase: outTemporalEase, inInterpolationType: inInterpolationType, outInterpolationType: outInterpolationType});
}
while (keys[i].numKeys > 0) {
keys[i].removeKey(1);
}
}
for (var i = 0; i < keyData.length; i++) {
var lastKeyTime = keyData[keyData.length - 1].keyTime;
var newKeyTime = lastKeyTime + (keyData[i].keyTime - lastKeyTime) * stretchFactor;
var newKeyIndex = keyData[i].property.addKey(newKeyTime);
keyData[i].property.setValueAtTime(newKeyTime, keyData[i].keyValue);
keyData[i].property.setTemporalEaseAtKey(newKeyIndex, keyData[i].inTemporalEase, keyData[i].outTemporalEase);
keyData[i].property.setInterpolationTypeAtKey(newKeyIndex, keyData[i].inInterpolationType, keyData[i].outInterpolationType);
keyData[i].property.setSelectedAtKey(newKeyIndex, true);
}
app.endUndoGroup();
} else {
alert("No properties are selected.");
}
} else {
alert("No layer is selected.");
}
} else {
alert("No composition is selected.");
} Is there's a way for it to loop around all the layers selected? Thank you!
... View more