Samples/Video/VideoOutput.py
Main Page
Groups
Classes
Examples
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
12
from
pyfbsdk
import
*
13
14
# Create a video output
15
videoOutList =
FBSystem
().VideoOutputs
16
if(len(videoOutList) > 0):
17
videoOutput = videoOutList[0]
18
videoOutput.Online =
True
19