diff --git a/src/components/WatchVideo.vue b/src/components/WatchVideo.vue index c457c1f0..159170a5 100644 --- a/src/components/WatchVideo.vue +++ b/src/components/WatchVideo.vue @@ -202,11 +202,14 @@ export default { ); } - if (!this.audioplayer) { + if (!this.audioplayer) this.audioplayer = new Audio( this.video.audioStreams.slice(-1)[0].url ); - } + else + this.audioplayer.src = this.video.audioStreams.slice( + -1 + )[0].url; this.player.src(src);