color spaces question

hallo all
i have an image in .dpx format

My question #1 – is it possible to find in which color space it was stored if i do not have this information from DI guy?

(it is not cineon for sure, srgb looks almost ok, but rec709 looks "better" probably this is it, but maybe….. )- i am seek of guessing, maybe there is some solution?

question #2: Viewer Process on my monitor is set by default to sRGB – and it works great for me, in which cases should i change it to none or to rec709? (one example will be enough 🙂
Thanks for help

popping bubble

Here’s a playblast of a popping bubble I’m working on…
my reference for this is http://www.youtube.com/watch?v=eV6Wh-KX3bY

using maya 2011…
the bubble is nCloth with an air and turbulence field on them…
the bubble is also emitting nparticles.. haven’t tweaked much of it..
on the nParticles I have the drag keyframed as well as the rate on the emitter…

I also have a ramp (for now) animated on the emitter so the particles will emit in the right places…

Alright!! Let me have it!!! 😎

http://www.delta3d.com/viseff/bursting_bubble.mov

French keyboard and nuke.

Hi,
On AZERTY keyboards, holding the Shift button is needed to type a number. It’s a problem in nuke, to connect a node to a viewer, and then to switch between inputs in the viewer.
The solution I found was to press CapsLock when I’m working with nuke, but it’s quite annoying.
Is it possible to change the keyboard shortcuts by modifying the menu.py file?… or any better solution than getting a qwerty keyboard?

Thanks.

how to manage ID of array of nodes

Hi, i’m creating a gizmo to draw marks (small crossmark) over the bg image , there’s ‘add’ button where the function is to spawn a new node(or mark) inside my gizmo – not at gizmo level (and the ‘mark’ is just my other simple gizmo for drawing a small cross mark) , so speak to the point , every single click of the ‘add’ buton will spawn a new node/mark and user can re-position it later. I probably end up with about 25 marks roughly. Every of these new mark have a unique ID to be tracked , and as for the naming, i’m using python to format it to make something like : mark_id0000 , mark_id0001, etc. And i add ‘delete’ button as well, so user can delete unused node/mark later. If anyone has experience in this kind of gizmo creation, my questions are :

1. what is the best workflow for managing ID for array of node, like mine , the total number of the new node to be spawned is roughly about 8-35, but i don’t limit it so user may add more (as i’m using 4 digits – it might handle thousands : 0000 – 9999), but anyway i have no problem to change to 2 digit padding (00-99) coz i really don’t need that much, it’s just my first design 🙂 . So I managed to bind the #ID to its name (id0000,id0001….etc). Is it more convenient this way , or better create a knob to hold the ID? so for every single node i spawn, i need to add new ie: integer knob to hold ID ? Is binding ID to the name is quite ‘secure’ and solid from future problem ? anyone has bad experience?

2. the ‘add’ button … it doesn’t just add/spawn new node , but for every spawning process , i also want to pick parameters from it and promote them at gizmo level , so user can play with it. the parameter are : translate and color. So user can manage to translate and to change color of any spawned marks. i want to know if ‘picking’ knob is possible using python? i couldn’t find it inside the documentation. If it’s not possible then the only way is to add new knobs for each spawned mark, and set the expression to link. Is this the best way?

3. when user delete any mark , so this will leave gap in ID array. do i need to keep track of these deleted elements? so when later user add new mark , it will re-use the deleted ID ( this will involve more works) . or just let it go, and deal with new ID ? which way is the better one? it’s related to database programming , so if anyone have any suggestion or experience, pls.

thanx

Nuke 6.xx on Ubuntu and Wacom pressure sensitivity not working

Howdy

As the title says I can’t get my Wacom pen pressure sensitivity working under Ubuntu 10.04 and 10.10. It works fine in Vista but Nuke runs like a dead dog on Vista 😉

Does anyone here use a Wacom tablet with Ubuntu? I’m guessing most people here in this forum run CentOS?

thanks in advance

Mtv Bicentenario

Plenty presenta il loro ultimo progetto già vincitore al Promax BDA 2010.
MTV Bicentenario
è stato il più importante progetto di Mtv in America Latina, trasmesso in Argentina, Cile, Messico e in Colombia, he celebrano i 200 anni di indipendenza.
Il video ambientato in un mondo surreale vuole ricordare […]

How to do electric bolts

Hi i have a problem

I’ve been comping a bunch of wires in a construction pipe. the problem is that it should be a wire that is broken and it will come electrical sparks from the wire.

But I do not know which node I should use. I’ve tried to do some combination of flare and glow. but it is not good by a long shot.

is there anyone out there who have a idea how to make it look good, then I appreciate the help

thanks in advance

aezz:splat:

how to get pixel aspect using python?

hi does anyone know how to grab pixel aspect info of any node using python, i only found the way to get width() and height() but no idea about pixel aspect ratio. I want to create a modified version of reformat node where the ‘type’ is set to ‘scale’ and then display the output width/height in the label, but as an addition i want to display pixel aspect info too. Anyone can help?

Stereo paintback artists

Urgent requirement of Paintback artist for stereo.

Intrested candidate may please mail their cv asap to abmprabhu@gmail.com. Location chennai india
cheers
🙂

python – how to check if input exist when creating node?

Hi i’m trying to do some action when a gizmo is created , based on whether this Node has its input connected to something or not. So i use addOnUserCreate() or addOnCreate() and code like :

Code:

if nuke.thisNode().input(0) !=None :
  plan A
else :
  plan B


before i call this gizmo, i select something on DAG, so when the gizmo is created, it will automatically connect its input to what previously selected. But i always got ‘plan B’ as result. Seems that the connecting process is done just after the oncreate() is called. Is ther any way out?

thanx