You should advertVideo element before play() call, then unmute it on STREAM_STATUS.PLAYING:
var options = {
name: "vod://advert.mp4",
display: advertVideo,
constraints: {audio: true, video: false}
}
advertVideo.muted = true;
session.createStream(options).on(STREAM_STATUS.PLAYING...