“Hi, I can log in and see the video library, but when I try to play any video on Firefox, it just stays loading forever. On Chrome it works perfectly. I cleared my cache and cookies but still no luck.”
“Thanks for reporting this. Can you please tell me your Firefox version and operating system?”
“Firefox 110.0 on Windows 10.”
Steps:
1. Download Firefox 110 from Mozilla archive: https://ftp.mozilla.org/pub/firefox/releases/ 2. Use a separate profile to avoid affecting main browser: firefox.exe -P "Firefox110Profile" 3. Open the site and try to play a video.
Use DevTools Console:
const v = document.createElement("video"); ["video/mp4; codecs='avc1.42E01E, mp4a.40.2'", "video/webm; codecs='vp8, vorbis'", "video/webm; codecs='vp9, opus'"] .forEach(type => console.log(type, "=>", v.canPlayType(type)));
Likely outcome: Firefox 110 may not support the format the site delivers.
1. Open Network tab → filter by 'media' 2. Attempt playback → look for failed requests or CORS errors 3. Console test: const videoTest = document.createElement("video"); videoTest.src = "https://example.com/test.mp4"; videoTest.play().catch(e => console.error("Playback failed:", e));