使用本地磁盘中的视频文件进行响应

发布于 2024-12-07 02:40:45 字数 279 浏览 1 评论 0原文

我正在尝试创建控制器操作,以响应应用程序公共目录之外的本地视频文件。我现在所拥有的是

def video
  render :text => File.read('D:/test.mp4'), :content_type => 'video/mp4'
end

浏览器识别出它应该威胁作为视频文件的响应,但是视频内容没有正确播放。我在这里错过了什么吗?您知道更好/其他的解决方案吗?将每个文件复制到公共目录似乎是一种解决方法,但这似乎也是一个非常糟糕的主意)。谢谢。

I'm trying to create controllers action that responds with local video file that is outside of the applications public directory. What I have now is

def video
  render :text => File.read('D:/test.mp4'), :content_type => 'video/mp4'
end

browser recognizes that it should threat response as a video file however video content is not played appropriately. Am I missing something here? Do you know some better/other solution? Copying each file to the public directory seems to be a workaround but it also seems to be a really bad idea ). Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南风起 2024-12-14 02:40:45

您应该使用 send_filesend_data 代替。

You should use send_file or send_data instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文