Publish Storage Configuration [VE OG]
In order to render new output files from the VidiEditor Timeline, at least one Vidispine storage must be configured as a VidiEditor publishing storage. This is done by adding Key-value metadata fields to the storage. ( https://apidoc.vidispine.com/latest/ref/metadata/key-value.html#key-value-metadata )
Key-value metadata | Value | Use case |
ME_PublishStorage | true or false | Mandatory. Enables storage as destination for MediaEditor Timeline Rendering. |
ME_StorageName | string | Optional. Used to display proper name of storage to end user in Publish modal |
Example:
PUT /storage/VX-1/metadata
<SimpleMetadataDocument xmlns="http://xml.vidispine.com/schema/vidispine">
<field>
<key>ME_PublishStorage</key>
<value>true</value>
</field>
<field>
<key>ME_StorageName</key>
<value>MyStorage</value>
</field>
</SimpleMetadataDocument>
Note: The VidiEditor reads storage metadata upon user login. If you add a new storage for publishing while being logged in, you must logout and log in again in order for VidiEditor to display the new storage.