Skip to main content
Participant
September 15, 2023
Answered

Insert audio from the server into a clip in Premiere Pro with ExtendScript

  • September 15, 2023
  • 1 reply
  • 436 views

Hello everyone!

I'm working on developing a plugin for Premiere Pro using ExtendScript and I'm running into an interesting challenge. My goal is to insert audio that comes from a server, the server returns the audio to me in two types format (binary or .mpeg file) and I want to insert it into a clip in a Premiere Pro project. However, I was wondering if anyone here has Tried to do something similar or have experience with this topic.

Is it possible to do this operation with ExtendScript? If so, could you give me some tips or examples to point me in the right direction?

I appreciate any help or information you can give me. Thanks in advance!

This topic has been closed for replies.
Correct answer Bruce Bullis

Is it possible to do this operation with ExtendScript? If so, could you give me some tips or examples to point me in the right direction?

Yes! Here's example code that imports media, from within the PProPanel sample: 

https://github.com/Adobe-CEP/Samples/blob/e60d6a22ef44d8eb4cca3904c35a0c050576b697/PProPanel/jsx/PPRO/Premiere.jsx#L444

Here's PProPanel inserting a project item into a sequence: 

https://github.com/Adobe-CEP/Samples/blob/e60d6a22ef44d8eb4cca3904c35a0c050576b697/PProPanel/jsx/PPRO/Premiere.jsx#L1660



1 reply

Bruce Bullis
Community Manager
Bruce BullisCommunity ManagerCorrect answer
Community Manager
September 19, 2023

Is it possible to do this operation with ExtendScript? If so, could you give me some tips or examples to point me in the right direction?

Yes! Here's example code that imports media, from within the PProPanel sample: 

https://github.com/Adobe-CEP/Samples/blob/e60d6a22ef44d8eb4cca3904c35a0c050576b697/PProPanel/jsx/PPRO/Premiere.jsx#L444

Here's PProPanel inserting a project item into a sequence: 

https://github.com/Adobe-CEP/Samples/blob/e60d6a22ef44d8eb4cca3904c35a0c050576b697/PProPanel/jsx/PPRO/Premiere.jsx#L1660