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

JSX SCRIPTING: Detect when encoding is finished?

Community Beginner ,
Mar 23, 2022 Mar 23, 2022

Copy link to clipboard

Copied

Hi, folks.
Is there any way to get Media Encoder to singal when it finishes the render queue? Needless to say, I don't mean signal to the human user by playing a chime sound 🙂 I mean notify the system by firing some kind of 'onComplete' event or something when the render is done.
I looked through the scripting guide and couldn't seem to find any mention of event listeners in the API. Are there any other ways? Can this be done on the OS level via CMD/Terminal? (e.g. watch the export folder for contents and see if all the expected video files are already there?)

Since my intents and purposes don't require the precise time of completion, can I set an interval to periodically check if the rendering is still in progress via the following method:

var previouslyElapsed = 0;
var checkIfStillCooking = setInterval(isStillCooking, 1000);

function isStillCooking()
{
	if(app.getExporter().elapsedMilliseconds == previouslyElapsed)
	{
		clearInterval(checkIfStillCooking);
		//Queue has finished because no additional time has elapsed since previous check.
	}
	else
	{
		previouslyElapsed = app.getExporter().elapsedMilliseconds;
	};
};

What would be the best way, if any?

Thanks for any help.
- Art.

TOPICS
Error or problem , How to

Views

181

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
no replies

Have something to add?

Join the conversation