使用本地磁盘中的视频文件进行响应
我正在尝试创建控制器操作,以响应应用程序公共目录之外的本地视频文件。我现在所拥有的是
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用 send_file 或 send_data 代替。
You should use send_file or send_data instead.