Speed up /videoplayback streaming

This commit is contained in:
Omar Roth 2018-07-15 22:10:29 -05:00
parent 73247d75ca
commit f189cd7c48
1 changed files with 8 additions and 9 deletions

View File

@ -1051,17 +1051,16 @@ get "/videoplayback*" do |env|
env.response.headers["Access-Control-Allow-Origin"] = "*"
chunk = Bytes[8]
loop do
count = response.body_io.read(chunk)
begin
env.response.write(chunk)
begin
chunk_size = 4096
size = 1
while size > 0
size = IO.copy(response.body_io, env.response.output, chunk_size)
env.response.flush
rescue ex
break
Fiber.yield
end
rescue ex
break
end
end
end