Copy link to clipboard
Copied
How can I efficiently batch add text to videos with varying lengths, incorporating the title of each file as a label or subtitle? I'm aware of the MOGRT method, but it seems cumbersome as it involves opening each file individually, applying the MOGRT, and then exporting each file separately. Is there a more streamlined approach or tool that can automate this process for all files within a folder?
You could create a custom automation with my (paid) extension Automation Blocks.
With Automation Blocks you can implement your own tasks by combining little blocks like lego bricks. In your case something like this:
for each clip in a particular bin
create a new sequence with that clip (in track V1)
insert a mogrt in V2
set the duration of the mogrt to the duration of the clip
set the text of the mogrt to the name of the clip (or whatever else you want to use as text).
Get start
You have the option enabled to only process the selected items. That means, items are only processed if they are A) contained in the bin "Videos" and also B) selected in the project panel
You probably want to uncheck that option?
Copy link to clipboard
Copied
I'd go to aescripts.com to see if any of the many plugins available through them can do that.
Copy link to clipboard
Copied
You also might try an adjustment layer over the clips and add the new-ish Metadata&Timecode Burn-in effect. Set the meta field to File Name and you'd be good to go.
Copy link to clipboard
Copied
BTW: Strech out the Adjustment layer to cover all the clips you want to display the info, and there are 5 lines of metadata you can add in just the one effect.
Copy link to clipboard
Copied
You could create a custom automation with my (paid) extension Automation Blocks.
With Automation Blocks you can implement your own tasks by combining little blocks like lego bricks. In your case something like this:
for each clip in a particular bin
create a new sequence with that clip (in track V1)
insert a mogrt in V2
set the duration of the mogrt to the duration of the clip
set the text of the mogrt to the name of the clip (or whatever else you want to use as text).
Get started here
https://docs.mamoworld.com/automation-blocks/tools-pr/templateTools
and here
https://docs.mamoworld.com/automation-blocks/tutorials-pr/mogrtFromSpreadsheet
Copy link to clipboard
Copied
Thanks Mamo, I will try to create the blocks first.
Copy link to clipboard
Copied
Hi Mamo,
I tried to create the blocks, but the "For Each Project Item" block seems to be not working (Pr Project Items | Automation Blocks (mamoworld.com)). And I am not sure what went wrong and I am not sure how to troubleshoot it. Below is the AB file & project file.
https://drive.google.com/drive/folders/1a8bh77OhoD8QJ--xmaS1yyQtMQ07L3VM?usp=drive_link
Copy link to clipboard
Copied
the write to console "step 1" is not executed
Copy link to clipboard
Copied
Copy link to clipboard
Copied
You have the option enabled to only process the selected items. That means, items are only processed if they are A) contained in the bin "Videos" and also B) selected in the project panel
You probably want to uncheck that option?
Copy link to clipboard
Copied
It works perfectly. Thank you so much for your time!