Error occured while returning the streaming response from FastAPI, unable to bind into vuejs video-player library since it required src to play a video. Can you help me to solve this problem ?
 I have tried api call to download the stream response in vuejs.
I have tried api call to download the stream response in vuejs.
    async videoDownload() {
      var url = '/api/v1/docs/1955/video'
      const resp = await this.axios.get(url);
      console.log("Video is streaming live !!")
      this.videoOptions.sources[0].src = resp;
      this.showvideo = true
    },
 
    