-
Expression for Alexa footage. Example expression included.
At the moment there isn’t a simple way to do a logC to linear color conversion of Arri Alexa footage in After Effects. The LUTs provided by Arri doesn’t seem to work for this. In Nuke, you just use a simple curve created be this expression:
AlexaV3LogC =
(x > 0.1496582 ? pow(10.0, (x – 0.385537) / 0.2471896) : x / 0.9661776 – 0.04378604) * 0.18 – 0.00937677
As I’m no expert on these type of expressions, I’m unsure how to convert it to use with a levels or a curve effect in AE. All I know is that it’s a if/else statement where ? is “then” and the : means “else”.
Anyone?