Skip to content

Releases: voxmedia/concert-vast

Support HLS for VAST Videos

29 Aug 22:26
14c6144
Compare
Choose a tag to compare

Add HTTP Live Streaming (HLS) Support for VAST Videos.

Support for Internet Explorer 11

11 Jun 17:21
ecdbd02
Compare
Choose a tag to compare

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

01 Apr 14:57
f8ff58b
Compare
Choose a tag to compare

Yay! We made it! 🎉 🎈

No functionality change.

Support for Autoplay and Mute options in applications

21 Mar 11:01
c9e0d32
Compare
Choose a tag to compare

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

17 Mar 04:27
e9b2aeb
Compare
Choose a tag to compare

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>