我正在努力让mp4视频可以搜索
视频位于不同的服务器上,然后是PHP文件
关于标题,它会发送所有正确的信息
但问题是fseek不支持远程视频
我尝试使用stream_get_contents而不是
stream_get_contents($fp, $start);
fseek($fp, $start);
它自己已经转换并准备好传输的视频
任何想法怎么做?
感谢
答案 0 :(得分:1)
要从different offset开始阅读string stream_get_contents ( resource $handle [, int $maxlength = -1 [, int $offset = -1 ]] )
的内容,您应该使用该函数的第3个参数:
stream_get_contents($fp, -1, $start);
在你的情况下:
class Contact
include Mongoid::Document
has_one :lead
field :reference_number, type: String
end
class Lead
include Mongoid::Document
belongs_to :contact
end
(在原始代码中,您将第二个参数设置为$ start,这是错误的。)
请记住,并非所有流媒体支持都会偏移,因此可能无效。