Marc Jacobs Flushes Out the Goth Ninjas.

2

Marc Jacobs Mens Ready-to-wear Spring ‘10 collection has dropped! Hopefully this signals the emergence of “Patrick Bateman guest-starring in an episode of Miami Vice-esque fashion” and flushes out all that goth ninja nonsense that’s been dominating men’s fashion for the past 2 years.

Courtesy of WWD.

M.O.

marc-jacobs05

marc-jacobs04

Python in Fusion

I remember reading that Fusion uses Python. Is it as easily scriptable as Nuke? I love being able to automate so much in Nuke. Thanks.

D

Problem in exporting mesh sequence to Maya.

Hai,
Iam new to Realflow. But I did every thing that i want in realflow and converted that simulation in to mesh sequence (.bin files). After instaling the real flow plugin for maya, I tried to Import the sequence using Nextlimit—> Mesh loader.
But Iam getting an error as below:

// Error: Cannot find procedure "RealflowMesher".

So, can anyone give explanation for this error and give me the possible solution.
Thanks for the one who is going to give the solution.
Balaji.:)

Jason fx reel 2009

Guys,
I’m new to the community & here’s my first vfx reel using nuke.
I was a music video editor for 10 years, & recently switched to Nuke full time.
let me know your thoughts.

http://www.myspace.com/jasonpnguyen

VFX Show Reel 2009 JASON P NGUYEN from Jason P Nguyen on Vimeo.

pygame in nuke

Hi,
Is there a way to use the module Pygame in nuke?
I want to control somethings with joystick by pygame.

Or a way to send commands to nuke by a external .py

Someone?

Thank you

Sr. Flame Artist

SPIN VFX Toronto, a high-end VFX facility, is seeking an accomplished local Flame artist to join our team in our Toronto studio.

The ideal candidate would create exciting and complex commercial and broadcast productions for high-demand clients.

Online reels with shot breakdown, cover letter and resume should be sent to: toronto-resume@spinpro.com

DVD demo reels with shot breakdown, cover letter and resume can be mailed to:

SPIN Toronto
620 King Street West
Toronto, Ontario
M5V 1M6

Visit our website at: www.spinpro.com

NO PHONE CALLS OR DROP-INS PLEASE.

Gamma Irritation

When i render out anything out of after effects, or even Premiere as for that matters, I get a stupid white wash over everything that I render. Guessing this is a gamma correction.

Does anyone know how to turn it off or how to get rid of it?

oh btw I tried it with MP4 MOV WMV .. TIFF’s TGA’s but nothing..

Cheers

Friends With You by Peppermellon

A wonderfully crafted piece for Target, by the folks at Peppermellon.

“Sidekick” Virgin Shorts Media Film Entry

Hi All,

“Sidekick” a 2 minute comedy short made by myself and Matt Routledge is now online… Please view it, and see what you think, if you like it, create an account and give it a rating

http://://www.virginmediashorts.co.u…film/sidekick/

George

Problem with node creation with python

I have a python script that I have made to create multiple proxy settings in nuke

One of them is that for every read nodes in a script, it creates a reformat under it, change the reformat label to proxy (so that i an easily flag them and remove them) and change the path from network location to local location

Heres the problem, if I already have some nodes connected to the read (ex: Blur), the blur will connect to the last created reformat nodes. I tried pretty much everything.

Heres a quick video that show what happen : http://files.getdropbox.com/u/1071227/nuke_proxy.mov

Here’s the part of the script that does it:

HTML Code:

for node in nuke.allNodes():
            if node.Class() == 'Read':
                        source = node.knob('file').value()
                        dest = source.replace('/Volumes/PROD/VFX/PROJETS/','/SHAKE_PROXY/')
                        node.knob('selected').setValue(True)
                        a = nuke.createNode("Reformat")
                        a.knob('label').setValue('PROXY')
                        a.setInput(0,node)
                        node.knob('selected').setValue(False)