Add 'raw' and 'quality' options to embedded videos

This commit is contained in:
Omar Roth 2018-07-19 11:04:29 -05:00
parent b965c8a7a4
commit ac8fb9d8c8
2 changed files with 23 additions and 0 deletions

View file

@ -40,7 +40,11 @@ video, #my_video, .video-js, .vjs-default-skin
<% end %>
<% else %>
<% fmt_stream.each_with_index do |fmt, i| %>
<% if quality != "hd720" %>
<source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>' label="<%= fmt["label"] %>" selected="<%= quality == fmt["label"].split(" - ")[0] %>">
<% else %>
<source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>' label="<%= fmt["label"] %>" selected="<%= i == 0 ? true : false %>">
<% end %>
<% end %>
<% end %>
</video>