Video Utilization Capture and Secure Video Streaming - Help

Enabling Utilization Record generation on Video Play

Note: this relies on user session data. May only be used on non-public pages

Adding fox-video-embed as a class to a video element will generate utilization records when played. You can also provide a value to the data-title attribute to give the record a name.

Inspect working example below for more context.

            <video class="fox-video-embed"  
            data-title="Welcome" ...
            > . . . </video>
        

Enabling Secure OnStream Media URLs

Note: this relies on user session data. May only be used on non-public pages

To enable play of secure OnStream Media files:

  1. Add class fox-video-embed to video tag
  2. Add attribute secure to video tag
  3. Add url to data-src attribute in source tag

The video below renders a secured OnStream video as well as generate utilization records when play is pressed.

Inspect working example below for more context.

            <video class="fox-video-embed"  
            data-title="2020 Economic Outlook"  
            secure
            ><source data-src="(url_to_secure_onstream_file)  
            ...></video>