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

« Previous Version 5 Current »

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

VideoPlaybackType.Redirect
Will redirect the episerver url to digizuite.

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

VideoPlaybackType.Cdn
Will redirect the episerver 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