Mathias Moehl
Community Expert
Mathias Moehl
Community Expert
Activity
‎Jan 07, 2025
09:52 PM
This sounds like the script you are running uses the Get Attribute of Clip block with the option "start time in sequence" and "end time in sequence", and you want to change those to "in point" and "out point" instead. So it is just a matter of locating that block in the block code and changing these values.
... View more
‎Jan 06, 2025
11:28 PM
1 Upvote
Das hört sich so an, als wolltest du verschiedene, ziemlich komplexe Aktionen auf Keyboard Shortcuts legen.
Meine (bezahlte) Extension Automation Blocks für Pr könnte dir da neue, zusätzliche Möglichkeiten eröffnen. Mit Automation Blocks kannst du beliebige Automatisierungen selbst erstellen und als kleine Programme abspeichern. Diese kannst du dann auch per Keyboard Shortcut oder von externen Apps ausführen, wie hier beschrieben:
https://docs.mamoworld.com/automation-blocks/remoteExecution Um eine Idee davon zu bekommen, was möglich ist: Hier ist das Beispie "Scale Bump", was in der Beispiel-Bibliothek von Automation Blocks enthalten ist:
https://docs.mamoworld.com/automation-blocks/tools-pr/keyframeTools#create-a-visual-focus-with-scale-bump Es erzeugt mit einem Klick gleich mehrere Keyframes auf der Skalierung, um diie Ebene kurz wachsen und dann wieder auf die Original-Größe schrumpfen zu lassen. Eigene Automatisierungen zu schreiben ist definitiv mit einer Lernkurve verbunden, eröffnet dann aber ungeahnte Möglichkeiten. https://docs.mamoworld.com/automation-blocks/tutorials-pr/firstSteps
Viel Erfolg bei dem Projekt!
... View more
‎Jan 06, 2025
11:14 PM
1 Upvote
Oh, yes, I confused inPoint with startTimeInSequence.
Therefore, the clips where inserted at the wrong time and therefore, you probably didn't see them at all. Here is a revised version, which also sets the end point properly:
Setting the end point was actually a bit tricky, since we needed to coount how many clips we already inserted in order to adjust the end point of the correct clip. (See here how to create paths to access a particular clip)
Code attached.
... View more
‎Jan 06, 2025
06:21 AM
1 Upvote
I haven't tested this code, but this should get you started:
In a nutshell, I loop over all clips of V1 and insert foe each of them one copy in another video track. Which video track is used, is saved in the variable "track to insert to". This variable starts with value 2, hence, the first clip is inserted in V2. After each insertion, the value is increased by one, such that the next clip is inserted in V3 etc. the if statement checks if we have reached the last track we want to use. So instead of inserting at track V6, we go back to V2 again.
(code attached)
... View more
‎Jan 05, 2025
06:40 AM
I'm still trying to figure out how to get them inserted onto the proper tracks.
By @Citizen_Sam
Maybe you can get the trackName which should be a text like "V1" or "A3" and then Get a A Substring of that such that only "1" or "3" is left.
... View more
‎Jan 05, 2025
06:36 AM
Oh, yes, you are right! I just checked by directly using Premiere Pro's API function to change this setting:
Trying to set settings where the audioChannelType has been changed causes an error. That must also have been the reason why I removed it from Automation Blocks "set property" block. So unfortunately, it is read only.
... View more
‎Jan 04, 2025
10:59 AM
Hi Sam, copy sequence content
yes, this is suprisingly difficult to achieve. As far as I know, there is no API function to copy an entire clip including all the effects applied to it etc. The best you can do is loop over the clips of one sequence and inserting the same project item into the new sequence and then set its in and out point. But if the clip has any effects, transitions or other modifications on it, those will not be on duplicate, unfortunately. Sequence Audio Settings Have you tried to set the audio channel type?
... View more
‎Dec 24, 2024
12:10 PM
This thread gives you some starting points: https://community.adobe.com/t5/premiere-pro-ideas/how-do-i-export-a-shot-list-from-premiere-pro-with-thumbnails/idi-p/14466053
... View more
‎Dec 23, 2024
07:31 AM
1 Upvote
Does it help if you enable debugging for CEP12?
https://aescripts.com/knowledgebase/index/view/faq/zxp-cep-extension-won-t-open/
... View more
‎Dec 20, 2024
11:28 AM
Have you checked your marker panel? Maybe you have additional markers before the beginning of the sequence or after the end of the video content?
... View more
‎Dec 18, 2024
03:07 AM
I just checked this and it seems to be a bug in Premiere Pro's scripting API. I reported this to the Premiere Pro team now. For now, your only option seems to be to loop over the content of your footage project and search for the project item.
... View more
‎Dec 17, 2024
07:31 AM
and what do you get when you alert the Project Item itself instead of its parent bin?
... View more
‎Dec 16, 2024
11:42 PM
You loop over "Bottom Layer to replace", but try to set the source of "Middle Layer to Replace". Is this really what you want? Also, I am not sure why you work with lists here.
The "Set Attribute source item of layer(s)" block can either take a single layer and a single project item as arguments, or a list of layers and a list of project items. The latter case if for setting multiple layer sources in a single call. However, in that case, both lists must have the same length (like setting the project items of 10 layers needs 10 layers and 10 new project items). The error message "cannot convert this to a layer" suggests that you may have lists of different length or that the list contains entries which are no layers.
... View more
‎Dec 16, 2024
11:34 PM
that should be the case, if the clip is located in the root bin of the project "theprojectname.prproj".
... View more
‎Dec 16, 2024
11:31 PM
I guess your issue is the "set attribute project item of clip" block. For text clips, the text itself exists, but its attribute project item is null and cannot be set to anything else. I would wrap the "set attribute project item of clip" block into an if statement, where you check
if( "get attribute project item of clip my clip" not equal null)
That way you ensure that you never try to set the project item of a clip which has no corresponding project item.
... View more
‎Dec 13, 2024
09:28 AM
With my (paid) extension Automation Blocks for Premiere Pro you could write a custom automation, which loops over your 600 projects, opens them one by one and looks at all project items contained in them. If a project item has the desired media path, the script could alert the current project.
... View more
‎Dec 12, 2024
06:10 AM
Looks like you parented the two nulls in the middle, at the transition between the left and the right shape, to the parent null of the right shape. If you like the behavior on the left side, but not on the right side, maybe don't parent those two nulls to anything?
... View more
‎Dec 10, 2024
11:57 AM
Automation Blocks can only read and modify the attributes of clips in a sequence, which are exposed by the scripting engine. But as Bruce mentioned in the other post, there is no API around everything. So you will be able to export and import the list of clips with in points and out points, for example, but not all other details like effects and transitions, for example.
... View more
‎Dec 08, 2024
12:13 PM
It is a paid third party extension, which I am developing.
You can get it here: https://aescripts.com/automation-blocks-for-premiere-pro/
... View more
‎Dec 08, 2024
12:12 PM
We have no plans for such a feature at the moment.
You could write an Automation Blocks script, which first exports a frame to an image file and then executes a custom bat file on Windows which itself runs a OCR tool like Tesseract on the exported file. On Mac OS you could execute a shell script instead of a bat file. But I haven't tried that yet and it would definitely be some work to set up such a pipeline.
... View more
‎Dec 08, 2024
12:03 PM
You find it in the library that is included in Automation Blocks for Pr at
Examples->Project Management->Project Items->Rename Items This tutorial shows how to use it:
... View more
‎Dec 08, 2024
11:59 AM
Have you tried to use the Get Attribute of Clip, to retrieve the project item of the clip, and then use the Get Attribute of Project Item to retrieve the parent bin?
... View more
‎Dec 06, 2024
05:42 AM
1 Upvote
Hi Sam,
best attach screenshots to your questions, such that me and others can understand the question quicker.
Here is a step by step explanation what your code is doing:
If you want to find the project item in all open projects, you need to loop over all open projects and all items within them explicitly until you found one with that name. Or, if you know in which project and in which bin it is, you can construct the path for that directly (i.e create a string as shown at "Path with project" here:https://docs.mamoworld.com/automation-blocks/block-reference/prProjectItems#accessProjectItem ).
... View more
‎Dec 06, 2024
02:41 AM
I see. Here is a basic example which puts
- in row 1 the name of the first clip and the name of the first marker - in row 2 the name of the second clip and the name of the second marker
...
We use a variable "clip number" to count upwards with each iteration of the loop to know which clip number we are currently at. Then we can fetch the corresponding marker easily. Note that this expects that if you have 100 clips, you also need at least 100 markers. Also, maybe you want to use clip markers instead of sequence markers? Like just having one marker on each clip. Then the markers move with the clips if you move the clips around. And instead of doing the counting, you could just retrieve the first marker of "my clip" instead of a marker of the active sequence. Also, if markers are missing, the export will then always stop at the clip, which has no marker. With the sequence markers, the export will stop at the last marker and not really notice if one is missing inbetween.
... View more
‎Dec 05, 2024
12:52 PM
Concerning your second question: Each "add row to spreadsheet" block adds a new row. If you keep fields empty while adding a row, they will stay empty when the next row is added. I also don't really understand why you want to have the marker data and the clip data in the same table. In your example, you have three markers and three clips, but clip 1 and marker 1 are not really related, right? There could be many more markers than clips or vice versa, so why should they be in the same row of the export. WOuld it not make sense to export markers and clips into two separate spreadsheets? Or keep it as is and have first a lot of rows with only clips and then a lot of rows with only markers.
... View more
‎Dec 05, 2024
12:45 PM
1 Upvote
Hi Evelyn,
concerning the file path: Since they are just texts, instead of using a file block, you can create those with any text blocks:
(code is attached).
... View more
‎Nov 28, 2024
05:00 AM
And in order to add the audio file, you can add a "Add Project Items to Sequence" block to insert the music ast the beginning of the sequence in the audio track of your choice.
... View more
‎Nov 28, 2024
04:56 AM
You probably want to use a script similar to the one I show here:
https://docs.mamoworld.com/automation-blocks/tutorials-pr/batchSequenceCreation
Instead of looping over multiple variants for first and second clip,you can also just use one variant for the end sequence (in that case you can skip one loop completely). You can also use sequence items instead of footage items as your clips. This will insert the sequences as nested sequences.
... View more
‎Nov 28, 2024
01:26 AM
Thanks for sharing and great to hear that you could solve the issue 🙂
... View more
‎Nov 26, 2024
11:44 AM
1 Upvote
You can execute Automation Blocks scripts with hotkeys, but it needs Auto Hotkey or simlar external tools, as described here: https://docs.mamoworld.com/automation-blocks/remoteExecution Also, to turn a jsx script into an Automation Blocks tool, you need to wrap it into an Execute Code block: https://docs.mamoworld.com/automation-blocks/block-reference/prOther#pr_execute_code
... View more