marsupial

marsupial

About Me

Connect

LOCATION
Not Specified
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

Problem to load hou module in the standart OSX Python July 2, 2015, 1:14 a.m.

I don't think it's possible using DYLD_LIBRARY_PATH as theres a few competing library versions between Houdini and the OS (at least for 10.10). I've been able to get it working by changing where _hou.so looks for it's libraries. But this might only be a good solution locally.

installNameChanges()
{
# installNameChanges <file> <replace> <with>
otool -L "$1" | while read line; do
echo "$line" | grep -q "$2"
if [ $? -eq 0 ]; then
lib=$(echo ${line} | awk -F''"$2"'| ' '{print $2}')
if [ -n "$4" ]; then
echo install_name_tool -change "$2$lib" "$3/$lib" "$1"
else
sudo install_name_tool -change "$2$lib" "$3/$lib" "$1"
fi
fi
done
}

installNameChanges "${HFS}/houdini/python2.6libs/_hou.so" @rpath/ @loader_path/../../../Libraries/
installNameChanges "${HFS}/houdini/python2.7libs/_hou.so" @rpath/ @loader_path/../../../Libraries/

IMG_File::jumpToFrame June 11, 2010, 1:23 p.m.

Trying to get a Quicktime IMG_File plugin working, but I need to access the current frame being requested.

IMG_FilejumpToFrame and other time related methods are marked as deprecated.

Is there a way to get this information?
The moment I try to use $F in the filename, Houdini sees the expanded filename doesn't exists and my format is no longer called.

Is there some sort of meta tag similar to FBX import, ( $HFS/../file.fbx#object ) one can set up to get this information.

Thanks