• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

How to access data from individual clips during export

Explorer ,
Jan 27, 2021 Jan 27, 2021

Copy link to clipboard

Copied

Hi all, I'm working on a plug-in for Premiere Pro that needs access to audio data from individual clips on a sequence. Ideally, this should be an exporter (I guess?) that takes a list of clips, performs some operations and generate new audio out of them.

 

I tried two approaches so far, both unsuccessful:

 

  1. an exporter plugin based on the Sequence Audio Suite and the GetAudio function: unfortunately it gives me access to the final audio mixdown only (unless I missed something);
  2. a CEP extension that parses the "app" object in JSX: here I'm able to gather all the information I need (selected clip, path to media, time ranges, ...) but I can't seem to find a way to pass that data to the SDK for the actual rendering.

 

Am I missing some obvious option here? Or is the whole thing just not possible to accomplish? TIA

 

TOPICS
SDK

Views

312

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Explorer , Feb 01, 2021 Feb 01, 2021

Can you explain further what 'inverted audio' means, to you? 

 

Sure! The "audio inverter" thing is actually a proof of concept to make sure the whole idea is viable. The actual app I'm currently designing is an offline, side-chain audio ducker but with a super long lookahead, which is why it’s not useful as VST.

 

> If you were to process the source media in some other executable, you'll lose any/all modifications the PPro user has made. 

 

True. However, I noticed that I can replace the media in

...

Votes

Translate

Translate
Adobe Employee ,
Jan 27, 2021 Jan 27, 2021

Copy link to clipboard

Copied

You've found a gap, between our various APIs.
As you've found, Exporters can get video frames and audio samples from the entire sequence, but not access individual clips. 
CEP Extensions' ExtendScript can access all the info about individual clips, but not get video frames or audio samples. 

Conceivably, you could manipulate (a copy of) the sequence, to "solo" just the clips you wanted, and render them out to new files in some desired format...but that approach is rife with opportunities for error. 🙂

If you could get that data, what would you do with it?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jan 28, 2021 Jan 28, 2021

Copy link to clipboard

Copied

Hi Bruce, thanks a lot for your feedback. I would use that data for additional processing, e.g. now I'm brainstorming a prototype that generates inverted audio from individual clips.

 

Actually I was thinking of another way: collect data from clips via ExtendScript, then send it to an exernal program that does the processing/rendering. Finally, import the result back into Premiere (again through the ExtendScript APIs).

 

The whole thing seems feasible, according to the documentation. What do you think about it? Will it break any rules/raise red flags when it comes to packaging exensions (shipping an .exe might not be allowed)?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Jan 28, 2021 Jan 28, 2021

Copy link to clipboard

Copied

I have no informed opinion on packaging restrictions.

 

If you were to process the source media in some other executable, you'll lose any/all modifications the PPro user has made. That's why I mentioned "manipulating the sequence to isolate only the clip you want rendered"; you'll still get the results of any filters or adjustments the user has made. 

 

Can you explain further what 'inverted audio' means, to you? 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Feb 01, 2021 Feb 01, 2021

Copy link to clipboard

Copied

LATEST

Can you explain further what 'inverted audio' means, to you? 

 

Sure! The "audio inverter" thing is actually a proof of concept to make sure the whole idea is viable. The actual app I'm currently designing is an offline, side-chain audio ducker but with a super long lookahead, which is why it’s not useful as VST.

 

> If you were to process the source media in some other executable, you'll lose any/all modifications the PPro user has made. 

 

True. However, I noticed that I can replace the media in a clip through ExtendScript, so I could replace the content of the clip to be ducked with the new audio rendered outside Premiere. This way all plug-ins, effects, transitions, ... on clip 2 remain untouched. Seems like a good trade-off for me... unless, as always, I've missed something obvious. 🙂 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines