Тёмный

How to Run Scripts In After Effects & Premiere 

NT Productions
Подписаться 19 тыс.
Просмотров 5 тыс.
50% 1

Each of the ways to run scripts inside of AE and PR!
---------------------
Github: github.com/NTProductions
aescripts: aescripts.com/authors/m-p/nt-...
Gumroad: ntproductions.gumroad.com/
Discord: / discord
Follow on IG: / ntproductionsig
More Scripts: videohive.net/user/penguino13...
Timestamps:
Introduction- 0:00
After Effects Intro- 0:25
AE Method 1- 1:01
AE Method 2- 2:30
AE Method 3- 2:56
Adobe Script Runner Important Note- 4:56
PR Method 1- 5:32
PR Method 2- 6:05
PR Method 3- 6:52
Outro- 8:24
#adobescripts #prscripting #aescripts
Become a channel member to help support and get access to perks:
/ @ntproductions

Наука

Опубликовано:

 

17 июл 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 21   
@dwayneterrell860
@dwayneterrell860 10 месяцев назад
That you as always. I appreciate your videos. You have taught me a lot. Please keep dropping the knowledge.
@DenisStefanides
@DenisStefanides 10 месяцев назад
Please, do a course from basics to advanced... finally someone has to do that (yeah i know about the other ones but they are outdated) and your teaching style is great
@everything-wn1zt
@everything-wn1zt 10 месяцев назад
Hello sir ! Your Adobe After Effects extension tutorials are great! Could you explain how to use React components in these extensions? I'm having trouble understanding that part. Thanks!
@fairplay9497
@fairplay9497 5 месяцев назад
Thanks for this lesson! Question on Method 3 for Adobe Premiere: how can I make the Extensions line active in Adobe Premiere? Menu -> Windows -> Extensions - this tab is inactive for me at all.
@smhameed1918
@smhameed1918 8 месяцев назад
Hi sir do we have any video. Now to link Excel to InDesign. If i have value 100 in excel a1 and in a10 it is 500. Which need get inserted in InDesign. Pls help me if there is any video like that. Because i found nothing in RU-vid
@user-bu5tx3yt9f
@user-bu5tx3yt9f 8 месяцев назад
Question man: Do you know how to give a value to a TIME variable? please (lets say minute 3, 13 seconds for example)
@xThree65x
@xThree65x 21 день назад
Do you have a guide for the updated 2.0 script that Adobe released? Sems like the launch.json file is different. Also the way you select the target application seems to be different. I have tried to do a simple alert in Illustrator and I don't get anything when I run the debug.
@NTProductions
@NTProductions 21 день назад
What do you mean 2.0 script? Are you talking about UXP scripts for PS/AI/InDesign?
@omardotbio
@omardotbio 2 месяца назад
Could you please show how to load scripts in Premiere Pro? "Scripts" doesn't show under "File" in Premiere Pro 2024...
@NTProductions
@NTProductions 2 месяца назад
Thru extendscript or an extension
@Jeffrey7P
@Jeffrey7P 7 месяцев назад
Great Tutorial! Quick question, is extendscript as a sole application still available? I purchased it through creative cloud and it says it can only be used within the an adobe application
@NTProductions
@NTProductions 7 месяцев назад
You can install it from within the creative cloud app
@Jeffrey7P
@Jeffrey7P 7 месяцев назад
I've tried searching for it and the only one that shows up is the extendscript extension @@NTProductions
@Jeffrey7P
@Jeffrey7P 7 месяцев назад
I just found the installation on the Github CEP-Resources-master\ExtendScript-Toolkit\AdobeExtendScriptToolkit_4_LS22.exe, I overlooked it and didn't notice lol@@NTProductions
@Jeffrey7P
@Jeffrey7P 7 месяцев назад
Also, thanks for the quick responce! @@NTProductions
@Jeffrey7P
@Jeffrey7P 7 месяцев назад
What are your thoughts on BoltCEP ? PPro recognizes a test default base project from bolt but doesn't open a panel when clicked@@NTProductions
@abhisheknakarmi8553
@abhisheknakarmi8553 4 месяца назад
Help ! I am not getting green link symbol for premier pro 2024. It is working for After effects but not working for premier pro.
@omardotbio
@omardotbio 2 месяца назад
Same here, it seems like it's not the same steps in Premiere
@abhisheknakarmi8553
@abhisheknakarmi8553 2 месяца назад
After installing premier pro properly, it is working fine. There is green link sign for premier pro also @@omardotbio
@jackmari5727
@jackmari5727 10 месяцев назад
@theugcagency
@theugcagency 8 месяцев назад
Hey man, I am trying to run a script in Photoshop 2024 and it isn't working at all, I feel like I am most of the way there 😂😂 Any chance you know what i am missing? I am trying to change images inside of smart objects from a designated folder and then save the final file inside of the folder. I have 100+ of these to do hence the scripting Here is my script: $.writeln("Script started"); // Define the main folder containing subfolders var mainFolder = Folder("C:/Users/syner/Desktop/pictures to test formatting/folder 1"); $.writeln("Main folder: " + mainFolder); // Get a list of subfolders in the main folder var subfolders = mainFolder.getFiles(function (file) { return file instanceof Folder; }); $.writeln("Number of subfolders: " + subfolders.length); // Loop through each subfolder for (var i = 0; i < subfolders.length; i++) { var subfolder = new Folder(subfolders[i]); $.writeln("Processing subfolder: " + subfolder); // Open the corresponding Photoshop document var doc = app.open(File(subfolder + "/beforeAndAfter.psd")); $.writeln("Opened Photoshop document: " + doc); // Loop through smart objects var smartObjects = doc.layers; $.writeln("Number of layers in the document: " + smartObjects.length); for (var j = 0; j < smartObjects.length; j++) { if (smartObjects[j].kind == LayerKind.SMARTOBJECT) { var smartObject = smartObjects[j].smartObject; // Get the name of the smart object layer var smartObjectName = smartObjects[j].name; $.writeln("Processing smart object: " + smartObjectName); // Construct the path to the image file var imagePath = subfolder + "/" + smartObjectName + ".jpg"; $.writeln("Image path: " + imagePath); // Replace the contents of the Smart Object smartObject.link = File(imagePath); $.writeln("Replaced smart object content"); // Save the Smart Object smartObject.parent.parent.parent.save(); $.writeln("Saved smart object"); } } // Save the edited image as PNG with the folder name var folderName = subfolder.displayName; $.writeln("Folder name: " + folderName); var saveOptions = new PNGSaveOptions(); app.activeDocument.saveAs(File(subfolder + "/" + folderName + ".png"), saveOptions); $.writeln("Saved edited image"); // Close the Photoshop document app.activeDocument.close(SaveOptions.DONOTSAVECHANGES); $.writeln("Closed Photoshop document"); } $.writeln("Script finished");
Далее
Huge AE Scripting Updates
36:24
Просмотров 2,4 тыс.
Let AI write After Effects scripts
5:11
Просмотров 7 тыс.
impossible to understand how😨❓
00:14
Просмотров 8 млн
КУДА ОНА ПРОПАЛА?😱
00:43
Просмотров 236 тыс.
Dockable Panels for After Effects - ScriptUI
24:33
Просмотров 6 тыс.
10 AE Scripts That Do All The WORK | Lazy VFX
11:30
Просмотров 135 тыс.
Adobe is horrible. So I tried the alternative
25:30
Просмотров 593 тыс.
How To Make Premiere Pro 2023 run FASTER (simple tips)
10:51
Code an After Effects Script in Under 30 Minutes
27:18
I Made ChatGPT Write After Effects Scripts For Me
18:02
Собери ПК и Получи 10,000₽
1:00
Просмотров 2,7 млн