Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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:

Code Block
languagec#
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
    });