Skip to content

Instantly share code, notes, and snippets.

@mimetaur
Last active October 11, 2018 21:50
Show Gist options
  • Select an option

  • Save mimetaur/485a55fe66c58d8b3eb97878a816f6ca to your computer and use it in GitHub Desktop.

Select an option

Save mimetaur/485a55fe66c58d8b3eb97878a816f6ca to your computer and use it in GitHub Desktop.
Script to convert EXRs from C4D/Houdini to PNG with appropriate settings
#!/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
@mimetaur
Copy link
Copy Markdown
Author

@mimetaur
Copy link
Copy Markdown
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