mirror of
https://github.com/iv-org/invidious
synced 2025-09-20 01:27:08 +02:00
5 lines
368 B
Plaintext
5 lines
368 B
Plaintext
<video playsinline poster="<%= thumbnail %>" title="<%= HTML.escape(video.title) %>" id="player" class="video-js" data-setup="{}" style="width:100%;" controls>
|
|
<% fmt_stream.each_with_index do |fmt, i| %>
|
|
<source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>' label="<%= fmt["quality"] %>" selected="<%= i == 0 ? true : false %>">
|
|
<% end %>
|
|
</video> |