我正在尝试使用 Mechanize::Download,这样我就可以即时处理 FLV 视频流,而无需将整个视频缓冲到内存中,但是 Mechanize 没有遵循“video/flv”的可插入解析器并不断返回 Mechanize: :文件代替。有没有办法使用 Mechanize 返回类似 IO 的文件流?该文件只需要读取一次,因此不需要查找。我需要 mechanize 提交正确的 Cookie 和推荐人来获取文件。
irb(main):072:0> nn.agent.pluggable_parser
=> #<Mechanize::PluggableParser:0x0000000192eea0 @parsers={"text/html"=>Mechanize::Page, "application/xhtml+xml"=>Mechanize::Page, "application/vnd.wap.xhtml+xml"=>Mechanize::Page, "image"=>Mechanize::Image, "text/xml"=>Mechanize::XmlFile, "application/xml"=>Mechanize::XmlFile, "video/flv"=>Mechanize::Download}, @default=Mechanize::Download>
irb(main):073:0> nn.agent.get(vid.video_url).response['content-type']
=> "video/flv"
irb(main):074:0> nn.agent.get(vid.video_url).class
=> Mechanize::File
irb(main):075:0>