# Copyright 2012 Autodesk, Inc. All rights reserved. # Use of this software is subject to the terms of the Autodesk license agreement # provided at the time of installation or download, or which otherwise accompanies # this software in either electronic or hard copy form. # ... # This script shows how to put video output online. # ... # # Topic: FBVideoOut # from pyfbsdk import * # Create a video output videoOutList = FBSystem().VideoOutputs if(len(videoOutList) > 0): videoOutput = videoOutList[0] videoOutput.Online = True