嗨,我试图从Cloudinary网站上播放以下视频,它在除Safari以外的所有浏览器中播放
我尝试了f_auto,q_50和许多其他组合
我什至尝试将其转换为MP4
我还注意到,大多数50MB以上的文件都在做同样的事情,
请帮助!!!
值得一提的是,我是免费版本的。
视频链接:
Hi I am trying to stream the following video on my website from cloudinary, it is playing in all browsers except safari
I have attempted f_auto, q_50, and many other combinations
I have even tried to convert it to mp4
I also noticed that most files above 50MB are doing the same thing
Please help !!!
It is to mention that I am in cloudinary free version.
video link:
https://res.cloudinary.com/impromek-com/video/upload/v1652337443/ucfj0kmirnsmgffrhzyd.mkv
发布评论
评论(1)
Safari不支持MKV的本地,因此您必须通过使用转换在播放之前转换视频。
在视频中,您总体上提供了错误的结果,以帮助调试云URL,响应包括X-CLD-ERROR标题,并查看您分享的URL,我看到标头返回了:
有一个在线(同步)视频转换限制(免费计划的40MB,付费为100 MB),这意味着,对于大于急切地执行视频转换。
可以在上传时设置急切的转换或使用显式API 。
请看一下,看看这是否可以解决问题,如果您还有其他问题或需要任何指导,请告诉我。
这是我使用的示例代码,
Safari doesn't support MKV's natively so you'd have to convert your video before playback by using a transformation.
Doing that with the video you've provided results in an error In general, to help debug Cloudinary URLs, the response includes an x-cld-error header, and looking at the URL you've shared, I see the header comes back with:
There is an online (synchronous) video transformation limit(40MB for free plans and 100 MB for paid ones), which means that for videos larger than the limit you'll need to perform the video transformations eagerly.
Eager transformations can be set upon upload or by updating your current resources using the explicit API.
Please take a look and see if that resolves the issue for you, and if you have any additional questions or need any guidance, just let me know.
Here is a sample code that I used,