Search Results for

    Show / Hide Table of Contents

    Vidispine

    This plug-in is using Vidispine to store, convert and stream your video files. Once installed, videos uploaded to ImageVault will be stored on your configured Vidispine server. This means ImageVault will be able to preview, publish and stream movies using the Vidispine API. From the editors perspective there is no difference between working with locally stored files or movies stored on Vidispine.

    Configuration

    The vidispine access is configured using a separate configuration section in the ImageVault.Core.Host.exe.config.

    Example

    The following is an example for a Vidispine configuration.

    <configSections>
      <section name="vidispine" type="ImageVault.Vidispine.Common.Configuration.VidispineConfigurationSection,ImageVault.Vidispine.Common"/>
    </configSections>
    <vidispine>
      <appSettings>
        <add key="username" value="admin"/>
        <add key="password" value="mySecretPassword"/>
        <add key="baseUri" value="http://vidispine-poc.cloudapp.net:8080/"/>
        <add key="locale" value="en-us"/>
        <add key="storageId" value="VX-1"/>
        <add key="importTag" value="__mp4,__mov,__mpeg2"/>
      </appSettings>
    </vidispine>
    

    Keys

    The configuration consists of a set of key/value pairs described below.

    username

    Defines the username used to access the Vidispine API.

    password

    Defines the password used to access the Vidispine API.

    baseUri

    Defines the base uri to the Vidispine API.

    locale

    Defines the locale to use to parse data retrieved from Vidispine.

    storageId

    Defines the storage id in Vidispine to use for storing uploaded files.

    importTag

    Specifies the shape tags to use for transcoding upon import. http://apidoc.vidispine.com/latest/item/shape-tag.html

    In This Article
    Back to top (c) Meriworks 2002-2022