mirror of
https://github.com/iv-org/invidious.git
synced 2025-03-13 09:26:44 -04:00
5 lines
348 B
Plaintext
5 lines
348 B
Plaintext
<video playsinline poster="<%= thumbnail %>" title="<%= HTML.escape(video.title) %>" id="player" class="video-js" data-setup="{}" 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> |