jeudi 23 juillet 2020

How to display mp4 file format with Nextjs?

I have the following code on my component and the video is stored under /public

<video autoPlay loop>
    <source src="./video.mp4" type="video/mp4" />
</video>

I have the next.config.js as followed

module.exports = withPlugins( // I use next-compose-plugins
  [
    ...some plugin
  ],
  withVideos(nextConfig), // I use next-videos
)

I cant seem to have my video play at all, and I got the following error as 206 Partial Content. The file video I have is only 180kB. Anyone know the solution to fix this?




Aucun commentaire:

Enregistrer un commentaire