pymiere icon indicating copy to clipboard operation
pymiere copied to clipboard

Python for Premiere pro

Results 27 pymiere issues
Sort by recently updated
recently updated
newest added

I fixed the function `setInterpolationTypeAtKey() ` in `/premiere_objects.py` I added more parameters, now i'ts working. [Premiere docs](https://ppro-scripting.docsforadobe.dev/sequence/componentparam.html#componentparam-setinterpolationtypeatkey) ``` def setInterpolationTypeAtKey(self, time, interpolationType, updateUI): """ :type time: Object :type interpolationType: int...

Hello, I've seen a little omission in ComponentParam.getKeys() method. The returned object isn't of the correct type. for example, I got following result. ``` >>> p.sequences[41].videoTracks[1].clips[0].components[2].properties[8].getKeys() {'pymiere_id': '7UEROfIzdT'} ``` I...

Can we add new video tracks by api?

Hello, I love pymiere; it is wonderful! I found something I can't figure out though: I am completely unable to code "pymiere.objects.app.openFCPXML" correctly. in premiere_objects.py @ line 229, there's: ```...

I am trying to export a sequence in premiere using pymiere, and it's chugging along nicely until after about 3 minutes, I get the following error: ``` Traceback (most recent...

Function now: ``` def closeDocument(self): return self._eval_on_this_object("closeDocument()") ``` Problem: closeDocument() has a bool parameter that determines if the document will be saved at closeup, but pymiere's function doesn't account for...

I am trying to export multiple videos by replacing source video everytime using the script. When I use exportAsMediaDirect to export video, the actual source video is locked, so I...

Thank you for developing this module! I'd like to let you know because there's an issue. This issue occurs in the motion graphic template code in the example. The problem...

bug

A couple of suggestions to variable names (TICKS_PER_SECOND and list_clips) Suggested changes to wording of print() output Suggested changes to wording of comments A new (replacement?) suggestion for demo_batch called...

according to this https://ppro-scripting.docsforadobe.dev/general/marker.html#marker-start, marker start and end support read/write? However my attempt to set start and end after marker creation never works. What is the proper way to do...