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

changing render format

Participant ,
Jun 25, 2018 Jun 25, 2018

Copy link to clipboard

Copied

Hello there,

How can I change the format in a render settings from AVI to TARGA Sequence with scripting?

Screenshot_3.png

TOPICS
Scripting

Views

445

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

Advocate , Jun 25, 2018 Jun 25, 2018

Unfortunately, you cannot access this property via scripting.

However, if you want to apply specific OutputModule with custom settings to render queue item, you have to save custom output module template first. After that, just do this:

var rq = app.project.renderQueue;

var rqItem = rq.items[1];

var om = rqItem.outputModules[1];

om.applyTemplate("yourCustomTemplateName");

Hope that helps.

Votes

Translate

Translate
Advocate ,
Jun 25, 2018 Jun 25, 2018

Copy link to clipboard

Copied

Unfortunately, you cannot access this property via scripting.

However, if you want to apply specific OutputModule with custom settings to render queue item, you have to save custom output module template first. After that, just do this:

var rq = app.project.renderQueue;

var rqItem = rq.items[1];

var om = rqItem.outputModules[1];

om.applyTemplate("yourCustomTemplateName");

Hope that helps.

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
Participant ,
Jun 25, 2018 Jun 25, 2018

Copy link to clipboard

Copied

Thanks Tomas, Can I create output template with scripting?

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
Advocate ,
Jun 27, 2018 Jun 27, 2018

Copy link to clipboard

Copied

LATEST

no, you cannot, unfortunately.

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