Video Production Workflow with Adobe Integration

Hello, I am brand new here so I apologize if this question is redundant to others previously posted.

I am a content creator for the marketing department of my company, and I am trying to continuously edit a high volume of 3-5 minute testimonials year round.(for context, between May and July of this year I have 17 testimonials plus 2-3 shorts per testimonial so anywhere between 50 and 70 videos in a 3 month window, while also actively filming new projects).

Is it possible to create an AI Agent that can make basic edits on my premiere pro work file (i.e. export the script/timecodes to ChatGPT, make edits, and then import the revised version from ChatGPT so my premiere file reflects the trimmed and rearranged story]. I have seen sample attempts but none have seemed to work for others.

Hypothetically I would also love to extend this automation to make basic adjustments to the raw audio and video files such as cleaning up sound / color grading, add b-roll, as well as clipping 3 or 4 shorts and generating copyright free music for the video, but for now if I could just make an automation to cut out the wasted video space I’d be very grateful.

Hi @Ckessler1999,

Yes, it’s definitely possible to use n8n as part of this kind of workflow. You’d need to combine a few tools, but here’s a basic idea:

You can write a small script in Premiere Pro (using ExtendScript or UXP) that exports your sequence data — like timecodes, transcript, or markers — into a file (JSON, CSV, or plain text). That file could be saved to Google Drive, Dropbox, or another location that n8n watches.

Then, n8n can pick up that file automatically and send the transcript and metadata to ChatGPT using the OpenAI node. You can ask ChatGPT to clean the transcript, suggest edits, or rearrange content. Once you get the new version back, you can feed it into another script that updates your Premiere Pro project.

For now, just automating the transcript cleanup and rough cut suggestions is totally doable. Advanced things like color correction, b-roll insertion, or music generation might need extra tools (like FFmpeg, RunwayML, or audio processing APIs), but n8n can coordinate those steps too.