diff --git a/meshroom/nodes/aliceVision/ConvertAnimatedCamera.py b/meshroom/nodes/aliceVision/ConvertAnimatedCamera.py new file mode 100644 index 00000000..1c9e749f --- /dev/null +++ b/meshroom/nodes/aliceVision/ConvertAnimatedCamera.py @@ -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=[], + ), + ]