AudioRenderingJobFolderToFolder Workflow
This workflow renders audio projects found in a source folder to a target format and path specified inside the project.
The workflow is usually configured via a Workflow Folder Watcher. Please see Configuring Workflow Folder Watcher for more information.
Located in DpeTemplates 2.x under AllCustomers/AudioTranscoding/AudioRenderingJobFolderToFolder.
Minimum WorkflowServer version: 2.1.19
Workflow Arguments
Name Type | Description |
---|---|
Arg_File System.String | Input project XML file. |
DeleteSource System.Boolean | If true, delete the XML project file after processing. Default: false |
ErrorFailsWorkflow System.Boolean | If true, an error leads to setting the state of the workflow to failed. Default: true |
Job Description Xml File Format
<?xml version="1.0" encoding="utf-8"?>
<TranscodingJob>
<JobID>ABC123</JobID>
<OutputParameters>
<TargetAudioFormat>[FILETYPE]RAW[FORMAT]MPEG-LAYER3[BITRATE]256[SAMPLERATE]48000[MODE]STEREO</TargetAudioFormat>
<TargetAudioPath>\\full\path\to\destination\audio\folder+filename+extension </TargetAudioPath>
<XmlReportPath>\\full\path\to\destination\xml\folder\my-xml-filename.xml</XmlReportPath>
<OverwriteExisting>True</OverwriteExisting> <!-- valid for Audio and Report -->
</OutputParameters>
<Project>
<Clip>
<File>\\full\path\to\file.wav</File>
<Offset>00:06:20.067</Offset>
<Duration>00:01:26.035</Duration>
</Clip>
<Clip>
<File>\\full\path\to\another_file.wav</File>
<Offset>00:28:43.266</Offset>
<Duration>00:01:15.496</Duration>
</Clip>
<Clip>
<File>\\full\path\to\etc\etc\etc.wav</File>
<Offset>00:50:26.384</Offset>
<Duration>00:00:45.953</Duration>
</Clip>
</Project>
</TranscodingJob>
Report Format
<?xml version="1.0" encoding="utf-8"?>
<TranscodingJobResult>
<JobID>ABC123</JobID>
<XmlFilename>\\vm-dpedemo\Pub\Jobs\job1.xml</XmlFilename>
<AudioFilename>\\vm-dpedemo\Pub\AudioOut1\test.mp3</AudioFilename>
<Status>Ok</Status>
<Message></Message>
<Start>2020-03-25T16:50:39.1596189+01:00</Start>
<End>2020-03-25T16:50:41.880457+01:00</End>
</TranscodingJobResult>
Example Folder Watcher Config