Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Github Pages won't load video from Git LFS

I have an index.html file that has a <video> element (stored in Git LFS) set up as a background, however GitHub pages recently stopped loading it – it did work just a few weeks ago. There are also no issues in the console.

On the local server it works as expected in any browser, also all changes were pushed to git.

Has anyone run into a similar issue and would know how to fix it?

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

<!-- The video -->
    <video id="background-video" autoplay muted loop playsinline >
          <source src="assets/animation/star_burst.mp4" type="video/mp4">
          <source src="assets/animation/star_burst.mov" type="video/mov">
          <source src="assets/animation/star_burst.mp4" type="video/webm">
    </video>

Link to the file in case that helps.

Thank you

>Solution :

Your file was working a few weeks ago but is now moved to their Git Large File Storage which means that assets/animation/star_burst.mp4 is now a text file pointing to the storage location.

Try to specify direct access link. Something like https://media.githubusercontent.com/media/AnnaxT/AnnaxT.github.io/main/assets/animation/star_burst.mp4.

You can get it by clicking on "view raw" button on https://github.com/AnnaxT/AnnaxT.github.io/blob/main/assets/animation/star_burst.mp4

Or just upload less larger file.

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading