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