Showing posts with label work. Show all posts
Showing posts with label work. Show all posts

Thursday, November 24, 2011

A little utility / Una pequeña utilidad



Siempre he sido un gran fan de salvar mis archivos en sucesivas versiones, en maya echaba de menos la función por defecto que existe en 3d studio max.
En vez de ponerme a buscar algo parecido, he aprovechado un ratín para crear un pequeño script que hace mas o menos lo mismo (siempre que no superes las 999 versiones de tu archivo).
No ha sido testeado intensivamente, así que si lo usos hazlo bajo tu propia responsabilidad ;)

def savePro():
    """
    This script save progressive versions of your file
    """
    import maya.cmds as cmds
    import os
    myDirectory = cmds.file( query=True, sceneName=True)
 
    fileName = os.path.split(myDirectory)
 
    
    cleanName =os.path.splitext(fileName[1])[0]
    extension =os.path.splitext(fileName[1])[1]
    
    if "_v" in str(cleanName):
        name = cleanName.rsplit("_v")[0]
        version = cleanName.rsplit("_v")[1]
        newVersion = str(int(version) + 1)
        if len(newVersion)==1:
            newVersion = "00" + newVersion
        elif len(newVersion)==2:
            newVersion = "0" + newVersion
        elif len(newVersion)>999:
            print "Maximun number reached"
            
        cleanName = name + "_v" + newVersion
              
    else:
        cleanName= cleanName + "_v001"
    
    newName = cleanName + extension
    newDirectory = os.path.join(fileName[0],newName)
    cmds.file( rename=newDirectory)
    cmds.file( force=True, save=True)
    print newDirectory
    return newDirectory
savePro()






Saturday, August 01, 2009

Bye Revis



Well in July I spent my last days as animator at Revistronic. It was a pleasure to work with the great people, really talented artist and programmers whow work there. I'm gonna miss you guys but it's time to take my chances and start new ventures. What I'm doing now? Well I keep animating (of course) in a really great project I hope to be able to show something soon.

Sunday, December 21, 2008

Update at least: "La dama en el umbral" awards


Ok these last three month in my new job had been really demanding (I'm having a blast anyway I must say), so I had left my poor blog unattended. Anyway I'll try to start to make updates more often I can't promise anything but I try. This time I came again with the full palmares in a old project I had lucky to work in. Thanks to Marcos Busatori another animator who work also in this shortfilm for post the list with the awards.

Premio al mejor cortometraje y nominación al Meliés de Oro:
Ravenna Nightmare Film Festival. Italia.

Premio especial del jurado:
Festival Internacional de cine de animación de Annecy 2008, Francia.

Premio al mejor corto de animación en:
VI Certamen de cortometrajes de la Diputación de Málaga.
Primavera Cinematográfica de Lorca.
Certamen de cortos de Dos Hermanas.
Festival de Cine de Cartagena.
Concurso de Cortos Animados de Villaviciosa, Asturias.
Premios ACE. Madrid.
Festival de Cine de Sant Joan d'Alacant.
Certamen de cortometrajes Radio City. Valencia.
V Festival de Cine de Alicante.
Segundo premio en el Festival de Valls.
Tercer premio en el Festival de Navas.

Mención especial del jurado:
Festival de cine español de Toulouse. Francia.
Festival Nacional de Cortometrajes de Villajoyosa.

Mejor guión adaptado:
XIV Concurso de cortos de Laguardia.

Thursday, August 14, 2008

WOOOOTT!!!

The short film "La dama en el umbral" won Jury's special award in the Annecy Festival of 2008. I was responsible of part of the animation of this shortfilm and it is a real honor to have been awarded with this prize.

El corto "La dama en el umbral" ganó el premio especial del Jurado en el festival de Annecy de 2008. Soy autor de parte de la animación de este corto y es un verdadero honor haber sido galardonado con este premio.

Wednesday, July 02, 2008

Agua va

I usually show in this blog personal animation test. In this case I will change that today... I wanna show you something I did at work. It is only a little animation for a secondary action in one of the many scenes of the project we are working on... but also means I make my living doing what I love. Animation.



Usualmente muestro en este blog test personales de animación. Hoy voy a cambiar eso.
Se trata simplemente de una pequeña animación secundaria del proyecto en el que estamos trabajando pero tambien significa que me gano la vida haciendo lo que me gusta. Animando.