Page 2 of 3
Re: Camera Path Animation
Posted: Sun Apr 27, 2014 12:12 am
by MB
The need to be created in the modelling application, you will probabaly have to write a script for that too.
there is one posted on this thread for Rhino.
best
Re: Camera Path Animation
Posted: Sun Apr 27, 2014 1:42 am
by kavorka
Is there one for Blender by chance?
As of right now, I am trying to get my camera path out of Blender into the stand alone but the Alembic export/import somehow messes it up.
Re: Camera Path Animation
Posted: Tue Apr 29, 2014 4:04 pm
by gmillas
I have create a plugin for rhino that uses curves and point int camera frames
it is posted above

Re: Camera Path Animation
Posted: Wed Apr 30, 2014 9:41 am
by MB
gmillas
Would it be possible for u to fix the path output to ffmpeg in your cool app to be able to handle file names and folder names with spaces in them, this would help a lot.
Thx
mark
Re: Camera Path Animation
Posted: Wed Apr 30, 2014 4:10 pm
by gmillas
I 'll give a shot. I think its easy

Re: Camera Path Animation
Posted: Tue May 13, 2014 6:55 pm
by MB
Did it turn out to be harder than you thought?
thx
Re: Camera Path Animation
Posted: Wed May 14, 2014 2:00 pm
by BroAugustine
MB & gmillas,
Handling of space values for os.execute() is a bit tricky.
If you replace line 660 thru 671 in the latest script with the following, things should work.
Cheers
Code: Select all
function ffmpeg()
if OUT_PATH == nil then
return 0
end
FORMAT=formatComboBox:getProperties().items[formatComboBox:getProperties().selectedIx]
FPS=frameRateSlider:getProperties().value
scriptDir = octane.file.getSpecialDirectories()["userScriptDirectory"]
local octane_dir=[["]]..scriptDir.."\\ffmpeg.exe"..[["]]
local ffmpeg_cmd = octane_dir .. " -i \"".. OUT_PATH .."\"".."%04d.png -c:v libx264 -r ".. FPS .." -pix_fmt yuv420p ".."\"".. OUT_PATH .."." .. FORMAT.."\""
local cmd = ffmpeg_cmd:gsub("\\", "/")
os.execute([["]]..cmd..[["]])
end
Re: Camera Path Animation
Posted: Thu May 15, 2014 5:50 am
by gmillas
Thanks for the addition

Re: Camera Path Animation
Posted: Thu May 15, 2014 11:43 am
by MB
Many many thanks

Re: Camera Path Animation
Posted: Fri Jun 13, 2014 11:23 am
by erges
Hi, Please, How to create the camera path in Maya? Is there the plugin or mel script?
Thanks