[nodes] New node ConvertAnimatedCamera

This commit is contained in:
Fabien Castan 2018-01-01 20:28:27 +01:00
parent 0291033b85
commit 32e94d27b7

View file

@ -0,0 +1,27 @@
import sys
from meshroom.core import desc
class ConvertAnimatedCamera(desc.CommandLineNode):
internalFolder = '{cache}/{nodeType}/{uid0}/'
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='{cache}/{nodeType}/{uid0}/animatedCamera.abc',
uid=[],
),
]