Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

When working with video assets, you have 3 options for playback. By default, it will be streamed from Digizuite DAM through Optimizely.

VideoPlaybackType.Redirect
Will redirect the Optimizely url to digizuite.

VideoPlaybackType.Streaming (default)
Will stream from Digizuite DAM through Optimizely.

VideoPlaybackType.Cdn
Will redirect the Optimizely url to the cdn url that has been configure in VideoCdnBaseUrl.

Her is an example how to override the default settings:

services.AddDigizuiteDAM(
    new Digizuite.Optimizely.Configuration.DAMIntegrationConfiguration()
    {                   
        Connection = new Digizuite.Models.DigizuiteConfiguration()
        {
            BaseUrl = new Uri("x"),
            SystemUsername = "x",
            SystemPassword = "x",
            ConfigVersionId = "x"
        },
        VideoPlaybackType = Enums.VideoPlaybackType.Redirect
    });

  • No labels