Releases: voxmedia/concert-vast
Releases · voxmedia/concert-vast
Support HLS for VAST Videos
Add HTTP Live Streaming (HLS) Support for VAST Videos.
Support for Internet Explorer 11
Thanks to @jeninedrew and @jplhomer for this build, Concert-vast now supports IE 11!
See further discussion: #23
1.3.0 - Our First Open Source Release
Yay! We made it! 🎉 🎈
No functionality change.
Support for Autoplay and Mute options in applications
Adds support for autoplay
and muted
options passed into Applications:
var v = new ConcertVast();
var url = 'https://vast.com/vast.xml';
v.loadRemoteVast(url).then(e => {
v.applyToVideoJs(vjs, {
autoplay: true,
muted: true,
});
});
Support for progress tracking events
Adds support for:
<Tracking event="progress" offset="00:00:10">http://example.com/tracking/progress-10</Tracking>
<Tracking event="progress" offset="00:01:40">http://example.com/tracking/progress-140</Tracking>
<Tracking event="progress" offset="15%">http://example.com/tracking/progress-15-percent</Tracking>
<Tracking event="progress" offset="50%">http://example.com/tracking/progress-50-percent</Tracking>