For the Project "Jagon" we used Motion-Capturing (24 Cameras Optitrack ), to bring 3 fighters in suits so they can perform the fight-scene to later define the camera angles with the virtual camera system. Those preproduction steps are essential to have a good balance between showing some performance of the actor and at the same time delivering an appealing camera
Read MoreFrom the life of a technical director
Inspired by Eric Mootz "3D Texture Coordinates on Polygon Mesh Sequences", i am presenting a minimal Setup for Houdini. The mentioned technique is tackling the problem of using UV-Information in a changing mesh topology. Consider a Fluid-Mesh which is deforming over time, the Point-Count is constantly changing and UV Information are lost. By using the velocity attribute of a fluid-simulation,
Read MoreTwo weeks ago i got my pocket rig, thinking of it as a leatherman for cameramen, i thought it would be a good idea to have a tool like it around. On my vacation in the caribbean i was searching for a boom or anything to hold my go-pro, i walked into different shops and most of the offered booms
Read MoreProblem: Houdini does not support folder Creation when Rendering, but you can run a python script before the render starts. 1) Put under your Mantra-Node under Scripts > Pre-Render-Script execfile("$HIP/YOURSCRIPTLOCATION/YOURSCRIPT.py") 2) Your pathParm should point to the 'out/mantra1/vm_picture' parameter of your Node. Check if Folder-Exsists import os pathParm = hou.parm('out/mantra1/vm_picture') currentFile = hou.parm('vm_picture') # hou.parm('out/mantra1/vm_picture').unexpandedString() currentPath = os.path.dirname(currentFile) if not os.path.exists(currentPath): os.makedirs(currentPath) if os.path.isfile(currentFile): pathParm.set(currentFile.replace("$F", "$F+1oha")) 3) The above code is as
Read MoreFor 4 days, i had the opportunity to present our motion-capture system at the filmakademy Baden-Wuerttemberg. There was great interest from different departements and in the future there will be more mocap stuff here. It took us about 3 hours to setup the motion-capture system, callibrate it and make it ready for takeoff. I have to admit, that we were doing
Read MoreHere are some pictures of a fireshooting, played around with exposure time and different properties of fire.
Read MoreI am posting an image from our Set @ Studio Ade Filmakademie Baden-Württemberg
Read MoreProblems: "This project contained a sequence that could not be opened. No sequence preview preset file or codec could be associated with this sequence type" If you are encountering the same problem, there is a quick fix for it. For some reason, some presets are dissapearing in premiere, which leads to unopenable project files O_o. According to adobe this has to do
Read MoreHi, I present a short renamer script, which you can use to rename the tracking-points-data to match after-effects import convention. //Code snippet 4 Maya 2010+ -- Yafes Sahin //Change Name of Selected objects //to match after-effects global proc changeName(int $position) { string $data = `ls -sl`; int $i; for($i = 0; $i < size($data); $i++) { string $cutout = substring($data)); string $newString = ("null"
Read MoreWe are trying to find which method is more efficient: -) augmenting the resolotion of our meshes? -) Or using a pixel shader for the lighting?
Read More