mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-02 19:02:29 +02:00
27 lines
623 B
Python
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=[],
|
|
),
|
|
]
|