Hi there,
I’m using the template below to concatenate two audiofiles. However sometimes it happens in the wrong order. It doesn’t seem to make any difference in which order i feed them, the smaller file is always appended to the larger. Any help much appreciated!
{
“steps”: {
“import”: {
“robot”: “/http/import”,
“url”: “{fields.import_url}"
},
"preroll_imported": {
"robot": "/http/import",
"url": "{fields.preroll_url}”
},
“concat”: {
“use”: {
“steps”: [
{
“name”: “preroll_imported”
},
{
“name”: “import”
}
],
“bundle_steps”: true
},
“robot”: “/audio/concat”,
“ffmpeg_stack”: “v3.3.3”
},
“export”: {
“use”: [
“concat”
],
“robot”: “/s3/store”,
“credentials”: “S3_test”
}
}
}