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

Background rendering

LEGEND ,
Jan 24, 2023 Jan 24, 2023

Copy link to clipboard

Copied

Background rendering like Final Cut Pro would be nice. If you do nothing for a few seconds, it would be good if premiere calculates effects in the background automatically. It saves a lot of rendertime in the end.
Idea Under review
TOPICS
Editing and playback

Views

1.8K

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 Pinned Reply

Adobe Employee , Jan 24, 2023 Jan 24, 2023
This is something we are looking into. Thanks for the feedback.

Votes

Translate

Translate
44 Comments
Enthusiast ,
Jan 24, 2023 Jan 24, 2023

Copy link to clipboard

Copied

James Kolb. Why do you say that background rendering can't happen while editing? My knowledge of programming while not extensive leads me to believe it could work by locking the part being rendered so that it can't be edited, which should prevent most errors? Rarely does editing use the entire CPU / GPU / RAM so there's a buffer that can be used for background rendering.

Render entire sequence in background:
- rendering an entire sequence could work by locking that particular sequence and any nested sequences.
- select a sequence, click to render in background, that sequence locks up and I can continue working on other sequences while that one renders for me to review shortly.

Render selected area / workbar in background
- Again, the select length of timeline could just be locked if this causes a problem and I can render a part of a sequence while working on another part.

RAYG (Render as you go)
- Like After Effects. In PPro, every time I stop on an unrendered frame, it will render it after a second or so. Why not save that rendered frame every time so that it doesn't have to be rendered again? That's what After Effects does, and it reduces render time by a good chunk.

Regards, aTomician

Votes

Translate

Translate

Report

Report
Community Beginner ,
Jan 24, 2023 Jan 24, 2023

Copy link to clipboard

Copied

@James I don't even need it to render while editing... but what about when I leave my desk for a few minutes with premiere open in the background?

Votes

Translate

Translate

Report

Report
New Here ,
Jan 24, 2023 Jan 24, 2023

Copy link to clipboard

Copied

[##updated to reflect pc-only]

This will only address a small subset of the needs expressed here, but I got so fed up with this not existing that I created a script I run any time I leave my desk that renders all open sequences. Probably inspired by FCP7's "auto-render after no activity for "x" minutes" feature. I guess it's Windows-only, but would hopefully inspire a Mac equivalent using automator or shortcuts if you have a similar need.

I'm often working on multiple versions / deliverables at the same time and can have lots of sequences open at once. Rendering them all gets me real time playback on complex timelines, and is a good prep for non-deliverable exports using the "use previews" workflow for instantaneous exports.

If you're looking at this and thinking, "come on, man! I'm not a programmer!" - don't worry. It's written for something called AutoHotKey which is actually super easy to install and create scripts with. Just download it (free), create a new script and paste this in. https://www.autohotkey.com/
-----
#NoEnv
SetWorkingDir %A_ScriptDir%
CoordMode, Mouse, Window
SendMode Input
#SingleInstance Force
SetTitleMatchMode 2
#WinActivateForce
SetControlDelay 1
SetWinDelay 0
SetKeyDelay -1
SetMouseDelay -1
SetBatchLines -1


#IfWinActive Adobe Premiere Pro
F16::
Loop, 10
{
Sleep, 1000
WinActivate, Premiere Pro
Sleep, 500
Send, {LControl Down}{s}{LControl Up} ;save
WinWaitNotActive, Save Project
Sleep, 500
WinActivate, Premiere Pro
Sleep, 500
Send, {LAlt Down}{Enter}{LAlt Up} ;render
Sleep, 1000
WinWaitNotActive, Rendering
Sleep, 500
WinActivate, Premiere Pro
Sleep, 500
Send, {Escape} ;esc
Sleep, 1000
Send, {LControl Down}{s}{LControl Up} ;save
WinWaitNotActive, Save Project
Sleep, 500
WinActivate, Premiere Pro
Sleep, 500
Send, {LShift Down}{#}{LShift Up} ;switch to next open sequence
Sleep, 500
Send, {Escape} ;esc
Sleep, 500
}
F19::ExitApp
Return
#IfWinActive
--

NOTES / ISSUES:
0. In case this forum messes up the formatting, you can copy it from here: https://pastebin.com/NYyCXKJi

1. Scanning through the commands, you can see you start it by pressing F16 and it loops 10 times, meaning it renders up to 10 different open sequences (you can change those to whatever you want)

2. It assumes your keyboard commands match the script commands. Change the script or change Premiere so the buttons the script is telling your computer to press actually do the things you want. For example, shift+3 cycles through open sequences. alt+enter renders "entire work area"

3. It assumes you're not messing with the computer while it's running. If you're writing an email in another window, it'll likely start sending the commands there and not Premiere. There are ways to improve this so it can grab Premiere and issue commands even if it's not the active application, but it looked a little over my head and this takes care of my needs just fine for any time I get a call or break for a meal or at the end of the day.

Its usefullness will only scale so far with other workflows, but for the way I am often working, I can't imagine losing it now that I'm used to having it. Hopefully it'll help others as well until Premiere can implement it properly.

Votes

Translate

Translate

Report

Report
Community Beginner ,
Jan 24, 2023 Jan 24, 2023

Copy link to clipboard

Copied

@eric this is great but I'm on a mac!

Votes

Translate

Translate

Report

Report
New Here ,
Jan 24, 2023 Jan 24, 2023

Copy link to clipboard

Copied

Well hopefully it will inspire you to do the equivalent on Mac OS. It's really just a series of keyboard commands. eg:

1. render work area
2. save project
3. switch to next open sequence
[repeat]

I added some extra stuff to overcome little issues I was catching, but I'm pretty sure if you had 15 minutes and a willingness to learn, you'd be able to throw that together in Automator or the new "Shortcuts" app and share it with others.

Your other options are: (1) wait for someone else to do it, (2) wait for Adobe to do it, (3) install Windows and use my solution, (4) live without it. 🙂

Good luck!

Votes

Translate

Translate

Report

Report
Explorer ,
Jan 24, 2023 Jan 24, 2023

Copy link to clipboard

Copied

A long time ago there was a software called Pinnacle Liquid Edition 7.2, which in the future was replaced by Avid Media Composer, both Final Cut and this software have in their development the background render, which facilitates the insertion and rendering of effects during editing, not "wasting time" at the end of editing for export, doing everything automatically

Votes

Translate

Translate

Report

Report
Community Beginner ,
Jan 24, 2023 Jan 24, 2023

Copy link to clipboard

Copied

Ditto

Votes

Translate

Translate

Report

Report
New Here ,
Jan 24, 2023 Jan 24, 2023

Copy link to clipboard

Copied

As a FCPX Professional Editor for 10 years (since it released) now being forced to move to Premier can attest just how frustrating it is not having something like background render is... having to deal with crashing on a daily basis, the old as dirt timeline and over all non-intuitive nature of this program I simply can't understand why this is considered a pro tool for editors in 2022.

Votes

Translate

Translate

Report

Report
Enthusiast ,
Jan 24, 2023 Jan 24, 2023

Copy link to clipboard

Copied

Hello Reg, three years have gone by. That's a really long look can you provide us on an update on what you've found? This is an extremely popular idea.

Votes

Translate

Translate

Report

Report
Community Beginner ,
Jan 24, 2023 Jan 24, 2023

Copy link to clipboard

Copied

For this would be especially nice when I'm doing lots of Dynamic Link which can cripple my timeline. Premiere slowely crawling through the timeline on a few cores and creating either a image sequence in a temp folder, or creating some 12bit RGB Cineform video chunks for faster processing later.

This would speed up so many projects over the years.

I can do some things similarly by using export with previews, but I still can't touch Premiere while it's happening.

Votes

Translate

Translate

Report

Report
New Here ,
Jan 24, 2023 Jan 24, 2023

Copy link to clipboard

Copied

Well its very painful to see the long time since we read´a "this is something we are looking into"
4 Years after its still the same. Nothing happened instead a completely new interface nobody likes.

Votes

Translate

Translate

Report

Report
Adobe Employee ,
Jan 24, 2023 Jan 24, 2023

Copy link to clipboard

Copied

This is something we are looking into. Thanks for the feedback.

Votes

Translate

Translate

Report

Report
Participant ,
Oct 20, 2023 Oct 20, 2023

Copy link to clipboard

Copied

So any news or are we still looking into it?

Votes

Translate

Translate

Report

Report
Participant ,
Dec 10, 2023 Dec 10, 2023

Copy link to clipboard

Copied

Hello @Reg Santo Tomas, can you update the status? I know that a corporation like Adobe wheels turn slowly… but's not really inciting confidence when the status is "Under Review" for close to a year?

 

Warm Regards,

Chris

Votes

Translate

Translate

Report

Report
Adobe Employee ,
Dec 11, 2023 Dec 11, 2023

Copy link to clipboard

Copied

Hi Community,

I agree with this feature request and am advocating for it internally. I upvoted. Let's hope the team can bring this feature to us all soon.

 

Thanks,
Kevin

Votes

Translate

Translate

Report

Report
New Here ,
Dec 11, 2023 Dec 11, 2023

Copy link to clipboard

Copied

I can't believe its 2023 and we're still talking about background rendering - I remember seeing posts about this in 2017. I've switched to Final Cut and never looked back. I hope Adobe takes this seriously as my entire team converted to Final Cut specifically for this efficiency during editing.

Votes

Translate

Translate

Report

Report
Engaged ,
Feb 13, 2024 Feb 13, 2024

Copy link to clipboard

Copied

Any update? Render in the background would be great. It doesnt even need to start atometically, I just need to continue working while rendering previews as premiere doesnt use even a fraction of the cpu power of an apple m2 max. Its not good at all at using multicore cpus.

Votes

Translate

Translate

Report

Report
Engaged ,
Feb 13, 2024 Feb 13, 2024

Copy link to clipboard

Copied

Any update!! Rendering doesnt have to start automatically (although an option would be nice). It just shouldnt block the whole interface while rendering previews..

Votes

Translate

Translate

Report

Report
Explorer ,
Feb 19, 2024 Feb 19, 2024

Copy link to clipboard

Copied

LATEST

We still don't have any updates regarding this matter, it's still awaited

Votes

Translate

Translate

Report

Report