Here you can find Javascript variables to create custom sources and titles.
To push sources and titles, StriveCast provides easy to use JavaScript variables, which can be filled with values of your choice and stored on our backend.
Notice that sources and titles are set automatically when using Microsoft Stream or any other enterprise video platform.
Analytics
The variable “striveCastMediaTracker.eventValues” is available on a global scope.
You can define a “.meta” property with the following fields. You do not have to set all of those fields.
<script>
striveCastMediaTracker.eventValues.meta = {
source: 'Awesome source #1',
title: 'Awesome title #1'
};
</script>
Peer-2-Peer
The variable “striveCastP2PDNProxy.eventValues” is available on a global scope.
You can define a “.meta” property with the following fields. You do not have to set all of those fields.
<script>
striveCastP2PDNProxy.eventValues.meta = {
source: 'Awesome source #1',
title: 'Awesome title #1'
};
</script>