|
|
|
@ -8,8 +8,8 @@
|
|
|
|
|
<% if listen == "true" %>
|
|
|
|
|
<audio id="player" class="video-js" data-setup="{}" style="width:100%;" controls>
|
|
|
|
|
<% adaptive_fmts.each do |fmt| %>
|
|
|
|
|
<% url = fmt["url"] %>
|
|
|
|
|
<% type = fmt["type"].to_s.split(";")[0] %>
|
|
|
|
|
<% url = fmt["url"]? %>
|
|
|
|
|
<% type = fmt["type"]? ? fmt["type"].to_s.split(";")[0] : "" %>
|
|
|
|
|
<% if type.starts_with?("audio") %>
|
|
|
|
|
<source src="<%= url %>" type="<%= type %>">
|
|
|
|
|
<% end %>
|
|
|
|
@ -18,7 +18,7 @@
|
|
|
|
|
<% else %>
|
|
|
|
|
<video id="player" class="video-js" data-setup="{}" style="width:100%;" controls>
|
|
|
|
|
<% fmt_stream.each do |fmt| %>
|
|
|
|
|
<source src="<%= fmt["url"] %>" type="<%= fmt["type"].split(";")[0] %>">
|
|
|
|
|
<source src="<%= fmt["url"]? %>" type="<%= fmt["type"]? ? fmt["type"].to_s.split(";")[0] : "" %>">
|
|
|
|
|
<% end %>
|
|
|
|
|
</video>
|
|
|
|
|
<% end %>
|
|
|
|
|