Hi,
opencast 16 and the new editor drives me crazy.
I think I've managed to get my workflows extended to strip off all presentation audio from scheduled recordings, at least the presentation video file from the editor shows no sign of an audio track.
But still I don't hear the presenter voice/audio in the editor (please see screenshot attached).
What did I do?
I extended the partial-preview.xml workflow with the following "select tracks" operation:
<!-- Strip off presentation audio -->
<operation
if="${hide_presentation_audio}"
id="select-tracks"
description="Select tracks for further processing">
<configurations>
<configuration key="source-flavor">*/source</configuration>
<configuration key="target-flavor">*/selected</configuration>
<configuration key="audio-muxing">force</configuration>
</configurations>
</operation>
<!-- Transcode video previews -->
<!-- CHANGEME: Add
if="NOT (${presenter_source_video} AND ${presentation_source_video})"
to this operation if you use the old editor -->
<operation
id="encode"
exception-handler-workflow="partial-error"
description="Create single-stream video preview">
<configurations>
<configuration key="source-flavors">*/selected</configuration>
<configuration key="target-flavor">*/preview</configuration>
<configuration key="target-tags">preview</configuration>
<configuration key="encoding-profile">mp4-preview.http</configuration>
</configurations>
</operation>
Maybe I need to do anything else?
Maybe someone has a more complete and comprehensible example then the one from the WOH description for select-tracks?
Regards
Sven