Click here to Skip to main content
15,885,216 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am working on a product that takes a file from API and read as a blob. But pressing the play button on the video does not work. I have tried using tried using querySelector or a useState variable. All not working. There are no errors as you can see from the Logs.



It can read a local file but not from the API.



<pre lang="Javascript">
const [outputImg, setOutputImg] = useState(null);

useEffect(() => {

getOutput()

}, [])

async function getOutput() {

await axios.get("/output-image", {responseType: "blob"})

.then((response) => {

var imageUrl = (window.URL || window.webkitURL).createObjectURL(response.data);

setOutputImg(imageUrl);

var vid = document.querySelector(".img1")

console.log(response)

})

console.log("Output image", outputImg)

}



HTML section



HTML
<VideoPlayer className="img1" src={outputImg} poster={posterImg} controls width="100%" height="100%" />








Data type log: https://i.stack.imgur.com/8fVLh.png

Display: https://i.stack.imgur.com/DYwAo.png

What I have tried:

I have tried multiple different player and I have tried source.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900