Page 4 of 9

Re: Smooth & Easy Camera Animation for OR Standalone, ORC v1.21

PostPosted: Wed Jan 14, 2015 8:39 am
by jitendra
I have been looking for such script from very long.
Thank you so much "Mithrandir" for making and sharing this amazing script.

Re: Smooth & Easy Camera Animation for OR Standalone, ORC v1.21

PostPosted: Wed Jan 14, 2015 10:21 am
by whersmy
It still crashes for me....what version of octane and ORC`cam are you using jtendra?

Re: Smooth & Easy Camera Animation for OR Standalone, ORC v1.21

PostPosted: Wed Jan 14, 2015 11:53 am
by jitendra
whersmy wrote:It still crashes for me....what version of octane and ORC`cam are you using jtendra?


Hi,
I am using OctaneRender 2.20. And OlReadyCam_v1_21.zip.
Thanks

Re: Smooth & Easy Camera Animation for OR Standalone, ORC v1.21

PostPosted: Wed Jan 14, 2015 11:56 am
by jitendra
Is it possible to create the animation frames for multi-passes (For example, Reflectiona and Refraction Channels? If yes, how? Thanks.

Re: Smooth & Easy Camera Animation for OR Standalone, ORC v1.21

PostPosted: Wed Jan 14, 2015 3:38 pm
by Interfaces
it does not work, should execute the file ffmepg.exe
can you give me your way for all the file. (c / program / ......)
thank you (version 2.20 and ORC v1.21)

Re: Smooth & Easy Camera Animation for OR Standalone, ORC v1.21

PostPosted: Thu Jan 15, 2015 4:10 am
by jitendra
Interfaces wrote:it does not work, should execute the file ffmepg.exe
can you give me your way for all the file. (c / program / ......)
thank you (version 2.20 and ORC v1.21)


Hey, I didn't tried the ffmepg.exe, this is because, I usually create movie file in other program.

Re: Smooth & Easy Camera Animation for OR Standalone, ORC v1.21

PostPosted: Tue Jan 27, 2015 10:17 am
by Interfaces
hi, I do not get to run the script, I found by chance. I use a server (I :) for all file.
the script does not work on server it runs on (C :) only.
I'm glad it works,
would be possible to:
- Add keyboard shortcuts.
- Add del key frame buttons
- To have scripting with the server (I :) or other letters

THANKS

Sans-titre-1.jpg

Re: Smooth & Easy Camera Animation for OR Standalone, ORC v1.21

PostPosted: Tue Feb 17, 2015 2:08 pm
by Refracty
How can I delete keyframes?

Re: Smooth & Easy Camera Animation for OR Standalone, ORC v1.21

PostPosted: Wed Mar 04, 2015 4:41 am
by ssouth
Hi all, I'm trying to use Octane 1.50 with ORC 1.21

getting this error:

ORCerror.jpg


The script crashes when I press [Alt] + [R] to run ORC

Any thoughts?

Thanks,
Steve

Re: Smooth & Easy Camera Animation for OR Standalone, ORC v1.21

PostPosted: Thu Mar 26, 2015 10:22 pm
by ssouth
Ok, was able to finally sit down and look at the code... and fixed (at least to my satisfaction) the issue I was having. Seems the render call was defaulting to 4000 samples/pixel but was being told to do just one/pixel...

so I added a couple lines to the code to set the sample/pixel variable.

Here render.lua:

Code: Select all
 373       octane.render.start
 374       {
 375           renderTargetNode = self.targetNode,
 376           maxSamples       = samples,            -- added this line
 377           callback         = self.callback,
 378       }


and here keyframe.lua:

Code: Select all
754    octane.render.start
755    {
756        renderTargetNode = Render.targetNode,
757        maxSamples       = keyframe.samples.slider.value,  -- added this line
758        callback         = Render.callback
759    }