|
Hey, All--
I’m trying to change the transport control frame rate to 120 fps in MoBu2009, and I’m having a tough time making it work. I’ve tried this:
FBPlayerControl().SetTransportFps=FBTimeMode.kFBTimeMode120Frames
It doesn’t return an error (which is good), but it doesn’t change the frame rate, either. I’ve tried a number of variations, but so far, no luck. It’s starting to drive me a little insane.
Has anyone tried this successfully?
Thanks much!
--D
|
|
|
|
You are not getting the error, which is bad (but normal for python). You should call this like a function:
FBPlayerControl().SetTransportFps(FBTimeMode.kFBTimeMode120Frames)
Cheers
|
|
|
|
Ah, yes, that does indeed work. I thought I’d tried that before, but I guess not-- I reached the point where I was just re-arranging terms and parentheses in the hopes that I’d get lucky.
Wonderful. Thanks much.
--D
|
|
|