与Git LFS一起存储的MP4文件在Github页面中无法播放
我的存储库中有一个MP4文件,与Git LFS一起存储,我希望能够在我的网站上播放它。当我打开带有GitHub页面的网站时,视频不可见。
您知道发生了什么事吗?
解决方案
您可以在git-lfs/git-lfs issue 1342中看到建议的解决方法:GitHub页面提供参考文件,而不是实际的二进制文件
latest one(自2019年2月):
https://media.githubusercontent.com/media/_Username_/_Project_/_Branch_/_Path_to_file_
您应该将所有
_UNDERSCORED_
内容替换为您的
此项目中的示例:labcesi-strasbourg/labcesi-strasbourg.github.io
commit c53bd39
vrView.setContent({
//image: 'V0050069.jpg',
image: 'https://media.githubusercontent.com/media/labcesi-strasbourg/labcesi-strasbourg.github.io/master/V0050069.jpg',
//preview:'/url/to/amazing-512.jpg',
is_stereo: false
});
相关文章