Meshroom/meshroom/nodes/aliceVision/ConvertAnimatedCamera.py
2018-07-19 13:50:45 +02:00

27 lines
623 B
Python

__version__ = "1.0"
from meshroom.core import desc
class ConvertAnimatedCamera(desc.CommandLineNode):
commandLine = 'aliceVision_convertAnimatedCamera {allParams}'
inputs = [
desc.File(
name='input',
label='Input',
description='''SfMData file.''',
value='',
uid=[0],
),
]
outputs = [
desc.File(
name='output',
label='Output',
description='Path to the output Alembic file.',
value=desc.Node.internalFolder + 'animatedCamera.abc',
uid=[],
),
]