mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-29 18:27:23 +02:00
42 lines
962 B
Python
42 lines
962 B
Python
from meshroom.core import desc
|
|
|
|
|
|
class AppendFiles(desc.CommandLineNode):
|
|
commandLine = 'cat {inputValue} {input2Value} {input3Value} {input4Value} > {outputValue}'
|
|
|
|
inputs = [
|
|
desc.File(
|
|
name='input',
|
|
label='Input File',
|
|
description='''''',
|
|
value='',
|
|
),
|
|
desc.File(
|
|
name='input2',
|
|
label='Input File 2',
|
|
description='''''',
|
|
value='',
|
|
),
|
|
desc.File(
|
|
name='input3',
|
|
label='Input File 3',
|
|
description='''''',
|
|
value='',
|
|
),
|
|
desc.File(
|
|
name='input4',
|
|
label='Input File 4',
|
|
description='''''',
|
|
value='',
|
|
),
|
|
]
|
|
|
|
outputs = [
|
|
desc.File(
|
|
name='output',
|
|
label='Output',
|
|
description='''''',
|
|
value='{nodeCacheFolder}/appendText.txt',
|
|
)
|
|
]
|
|
|