Friday, December 19, 2008

A 'Little Joy' for the Holidays

-------------------------------------------------

Happy Holidays,

I am proud to announce the release of a new music video Directed by Warren Fu. Warren has outdone himself again.


Little Joy: No One's Better Sake - HD




About the FX:


I helped Warren do a few fx shots on the cove. We found pictures of Christmas Lights online, applied a kaleidoscope filter, tracked in a spinning precomp to the walls, and color corrected to make it appear as if it was on set. Hopefully it's not obvious.

Warren's signature graphics to the beats in the song is very present in the video. The video is "Rocksteady meets 1970's PBS". If you ever get to see in full rez or on my laptop you'll appreciate all the 70's subtlety Warren created.

Chris Stillman in San Francisco did the SEEOUTLOUD logo animation.


Press:

"The Stroke's drummer Fab Moretti's team-up with Rodrigo Amarante and Binki Shapiro has lead to one of our absolute favorite albums of 2008."
From My Old Kentucky Blog
http://myoldkyhome.blogspot.com/2008/12/new-video-little-joy-no-one-betters.html

http://www.pitchforkmedia.com/node/148058


Director:
Check out www.seeoutloud.com to learn more about the Director and see photos from the shoot!


Feel free to spread the Joy!

Enjoy,
Louis
www.louiskatz.com

Monday, December 15, 2008

Maya Batch Rendering on Mac or PC

Forget Render Pal (Not your pal), Maya / Batch Render (which is not batch rendering), or rush. This is the way to go for Maya rendering at home or school while you sleep on one or multiple machines.

Maya Batch Render on Mac:

Open TextEdit and make a file called maya_render (or whatever you want, and no extension).

Make sure it's plain text.

No spaces in paths, or your screwed.

Copy and paste the template below. Edit for your project.

Open Terminal from applications / utilities (or your dock if you made shortcut).

Type in cd (and drag your folder with maya scenes to terminal).

Type chmod 777 maya_render (or whatever you called it). This will make file executable.

Go back to folder and double click on maya_render. It should render now!

/Applications/Autodesk/maya8.5/Maya.app/Contents/bin/Render -h (for render options)
-r mr (mental ray)
-s (start frame)
-e (end frame)
-rd (render directory to store images)


#--------------------------------------------------
#!/bin/sh
/Applications/Autodesk/maya8.5/Maya.app/Contents/bin/Render -r mr -verb -s 1 -e 10 -rd /cityknock/batch_render_test/ /cityknock/batch_render_test/test_a.mb
/Applications/Autodesk/maya8.5/Maya.app/Contents/bin/Render -r mr -verb -s 1 -e 10 -rd /cityknock/batch_render_test/ /cityknock/batch_render_test/test_b.mb

NOTE - You may need to modify path to your version of Maya, i.e. 2008.

Maya Batch Render on PC:

Make a .bat file, edit, and double click on .bat to run.

maya_render.bat
render -verb cgloft_logo_RND_beauty.mb -s 1 -e 100
render -verb cgloft_logo_RND_matte.mb -s 1 -e 200

mental_ray_render.bat
render -r mr -verb cgloft_logo_RND_beauty.mb -s 1 -e 100
render -r mr -verb cgloft_logo_RND_matte.mb -s 1 -e 200


Enjoy,
Louis