How to export to Open EXR with alpha chanel without being premultiplied
How to export to (Open EXR with alpha chanel without being premultiplied)
just render to Open EXR with alpha packed up within frame and not being premultiplied?
Any thoughs?
How to export to (Open EXR with alpha chanel without being premultiplied)
just render to Open EXR with alpha packed up within frame and not being premultiplied?
Any thoughs?
OK, I have the correct answer for you, courtesy friends at Adobe.
Quit AE and edit the Prefs file called something like Adobe After Effects 17.7 Prefs-indep-general.txt. In the ["Misc Section"] you want to have this:
"Allow writing straight alpha into EXR" = 01
You may already have it there, with the value set to 00.
You can also run a script like this:
var section = "Misc Section";
var pref = "Allow writing straight alpha into EXR";
var type = PREFType.PREF_Type_MACHINE_INDEPENDENT;
if(app.preferences.havePref(section, pref, type))
{
if(app.preferences.getPrefAsBool(section, pref, type))
{
alert("EXR straight alpha pref already set to TRUE.");
}
else
{
alert("EXR straight alpha pref was set to FALSE. Setting to TRUE.");
app.preferences.savePrefAsBool(section, pref, true, type);
}
}
else
{
alert("EXR straight alpha pref not set. Setting to TRUE.");
app.preferences.savePrefAsBool(section, pref, true, type);
}
Sorry, this DID work! I created a script file called EXR.jsx and added the code:
var section = "Misc Section";
var pref = "Allow writing straight alpha into EXR";
var type = PREFType.PREF_Type_MACHINE_INDEPENDENT;
if(app.preferences.havePref(section, pref, type))
{
if(app.preferences.getPrefAsBool(section, pref, type))
{
alert("EXR straight alpha pref already set to TRUE.");
}
else
{
alert("EXR straight alpha pref was set to FALSE. Setting to TRUE.");
app.preferences.savePrefAsBool(section, pref, true, type);
}
}
else
{
alert("EXR straight alpha pref not set. Setting to TRUE.");
app.preferences.savePrefAsBool(section, pref, true, type);
}
Then saved it and ran it inside AE and the option is there now! THANK YOU! :)))
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.