在 Rails 应用程序中播放存储在 S3 或 Dropbox 中的视频
我将一个音频文件上传到 Dropbox,并将其链接放入我的 Rails 应用程序中。当我单击该链接时,它会自动打开一个音频播放器。然而,当我对视频进行同样的尝试时,无论是在 S3 还是 Dropbox(使用 S3)中,它都不起作用。有没有办法在 Rails 应用程序中播放 Dropbox 或 S3 中的视频?
I uploaded an audio file to Dropbox and put a link to it in my Rails application. When I clicked the link, it automatically opened an audio player. However, when I tried the same with video, it didn't work, either in S3 or Dropbox (which uses S3). Is there a way to play video from Dropbox or S3 in a Rails application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为在浏览器中打开音频文件而不是视频的原因更多是浏览器的功能而不是 Rails 应用程序的功能。如果您想控制这些内容的显示,则需要对视频使用
标签,对音频使用
标签。您可以在此处和此处。
I think the reason the audio file opened in the browser and not the video is more a function of your browser and not your Rails app. If you want to control the display of those things you will need to use
<video>
tags for videos, and<audio>
tags for audio. You can find references for both of those here and here.