Python Reference Guide
 
Loading...
Searching...
No Matches
Samples\Video\VideoOutput.py
1# Copyright 2012 Autodesk, Inc. All rights reserved.
2# Use of this software is subject to the terms of the Autodesk license agreement
3# provided at the time of installation or download, or which otherwise accompanies
4# this software in either electronic or hard copy form.
5# ...
6# This script shows how to put video output online.
7# ...
8#
9# Topic: FBVideoOut
10#
11
12from pyfbsdk import *
13
14# Create a video output
15videoOutList = FBSystem().VideoOutputs
16if(len(videoOutList) > 0):
17 videoOutput = videoOutList[0]
18 videoOutput.Online = True
19
Provides access to the underlying system, and the MotionBuilder scene.
Definition: pyfbsdk_generated.h:18771