videojs-player
videojs-player copied to clipboard
i'am try to change sources src but video-player doesn't work
problem:
i'am try to change sources src but video-player doesn't work
one: this.userOptions.source[0].src = this.videoUrl;
two: this.userOptions.source[0].src = this.videoUrlTwo;
but the second operation doesn't work...
video alaways play one : this.videoUrl
how to fix this problem?
I have the same problem
You cannot change the video source by directly modifying the configuration file. Change as follows. The same is true for changing the cover image. this.$refs.videoPlayer.player.src(this.videoUrl) this.$refs.videoPlayer.player.poster(this.posterImg)
You cannot change the video source by directly modifying the configuration file. Change as follows. The same is true for changing the cover image. this.$refs.videoPlayer.player.src(this.videoUrl) this.$refs.videoPlayer.player.poster(this.posterImg)
use this method ,the video frame also cannot change in vue, do you have some advises?