Fix URI for storyboard extractor

pull/553/head
Omar Roth 5 years ago
parent c049ba59ff
commit 71cd8918be
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2

@ -721,10 +721,13 @@ struct Video
return items
end
url = storyboards.shift
url = URI.parse(storyboards.shift)
params = HTTP::Params.parse(url.query || "")
storyboards.each_with_index do |storyboard, i|
width, height, count, storyboard_width, storyboard_height, interval, _, sigh = storyboard.split("#")
params["sigh"] = sigh
url.query = params.to_s
width = width.to_i
height = height.to_i
@ -734,7 +737,7 @@ struct Video
storyboard_height = storyboard_height.to_i
items << {
url: "#{url}&sigh=#{sigh}".sub("$L", i).sub("$N", "M$M"),
url: url.to_s.sub("$L", i).sub("$N", "M$M"),
width: width,
height: height,
count: count,

Loading…
Cancel
Save