Back

How to render .mov gif files from an Appwrite storage bucked

  • 1
  • Databases
  • Web
  • Storage
lordrhodes.
3 Apr, 2025, 16:02

So I've read the support thread and the guides about file uploads.

But I'm still having trouble rendering my .mov files to my React.js front end using the appwrite bucket url.

When I take that same URL and put it in the browser I get ''No video with supported format or MIME type found.

I've configured things so there is all the necessary permissions and no security

Steps to reproduce:

  1. Upload .mov gif from pc to bucket
  2. Query Current question and extract the GIF_URL from the question object
  3. Render the URL in a video or image JSX Element
  4. See that nothing renders even with the URL being logged in the right format in the console

Do I need to do something like reference the ID instead of the URL?

TL;DR
null
lordrhodes.
3 Apr, 2025, 16:11

Maybe it's a problem with the file itself. Because when I paste the url into the browser or try and play it with media player I get a MIME type error. But when I play it in VLC Windows Media Player I can see the gif working fine

SillyDryCoder
3 Apr, 2025, 16:28

Hey there,

It sounds like the issue isn’t with how you reference the file but rather with the file format or MIME type itself. When you see the error “No video with supported format or MIME type found,” it means the browser isn’t recognizing your .mov file as a playable video.

Here are a few things to check:

MIME Type:
 When you access the URL directly, open your browser’s developer tools (Network tab) and verify the Content-Type header. For HTML5 video playback, browsers expect types like video/mp4, video/webm, or video/ogg. If it’s being served as video/quicktime (common for .mov), the browser might not support it.

File Encoding:
 Even if the file extension is .mov, the video codec inside the file might not be supported by your browser. Many browsers have better support for MP4 files encoded with H.264. You might need to convert your .mov file to an MP4 format.

Reference by URL vs. ID:
 There’s no need to reference the file by ID—the bucket URL should work fine as long as the file format is supported.

So, to solve the issue, double-check the MIME type being returned and consider re-encoding your .mov file to a more widely supported format like MP4. That should resolve the error and allow your React component (or <video> element) to play the video correctly.

Reply

Reply to this thread by joining our Discord

Reply on Discord

Need support?

Join our Discord

Get community support by joining our Discord server.

Join Discord

Get premium support

Join Appwrite Pro and get email support from our team.

Learn more