Last active
October 11, 2018 21:50
-
-
Save mimetaur/485a55fe66c58d8b3eb97878a816f6ca to your computer and use it in GitHub Desktop.
Script to convert EXRs from C4D/Houdini to PNG with appropriate settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [ ! -d ./png ]; then mkdir ./png; fi; | |
| # creates the screen image | |
| for f in *.exr; | |
| do | |
| echo "Processing $f" | |
| convert -alpha off -background black $f ./png/$f.png | |
| done |
Author
Author
-define modulate:colorspace=LCHuv -modulate 140 seems to work with my source material
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Experimenting with this locally: https://stackoverflow.com/questions/41966819/how-do-i-convert-exr-to-png-and-adjust-brightness-at-the-same-time