mirror of
https://github.com/iv-org/invidious.git
synced 2026-01-13 15:22:39 +00:00
7 lines
348 B
Plaintext
7 lines
348 B
Plaintext
<audio poster="<%= thumbnail %>" title="<%= HTML.escape(video.title) %>" id="player" class="video-js" data-setup="{}" style="width:100%;" controls>
|
|
<% adaptive_fmts.each do |fmt| %>
|
|
<% if fmt["type"].starts_with?("audio") %>
|
|
<source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>'>
|
|
<% end %>
|
|
<% end %>
|
|
</audio> |