mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 00:43:05 +05:30
Move video options to <video> element
This commit is contained in:
parent
d997344f3e
commit
8861d31b21
@ -29,8 +29,12 @@ video, #my_video, .video-js, .vjs-default-skin
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<video playsinline poster="<%= thumbnail %>" title="<%= HTML.escape(video.title) %>" id="player" class="video-js vjs-default-skin">
|
<video playsinline poster="<%= thumbnail %>" title="<%= HTML.escape(video.title) %>" id="player"
|
||||||
|
<% if autoplay == 1 %>autoplay<% end %>
|
||||||
|
<% if controls == 1 %>controls<% end %>
|
||||||
|
<% if video_loop == 1 %>loop<% end %>
|
||||||
<% if listen %>
|
<% if listen %>
|
||||||
|
class="video-js vjs-default-skin">
|
||||||
<% audio_streams.each_with_index do |fmt, i| %>
|
<% audio_streams.each_with_index do |fmt, i| %>
|
||||||
<source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>' label="<%= fmt["bitrate"] %>k" selected="<%= i == 0 ? true : false %>">
|
<source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>' label="<%= fmt["bitrate"] %>k" selected="<%= i == 0 ? true : false %>">
|
||||||
<% end %>
|
<% end %>
|
||||||
@ -44,9 +48,6 @@ video, #my_video, .video-js, .vjs-default-skin
|
|||||||
<script>
|
<script>
|
||||||
var options = {
|
var options = {
|
||||||
preload: "auto",
|
preload: "auto",
|
||||||
<% if autoplay == 1 %>autoplay: true, <% end %>
|
|
||||||
<% if controls == 1 %>controls: true, <% end %>
|
|
||||||
<% if video_loop == 1 %>loop: true, <% end %>
|
|
||||||
playbackRates: [0.5, 1, 1.5, 2],
|
playbackRates: [0.5, 1, 1.5, 2],
|
||||||
controlBar: {
|
controlBar: {
|
||||||
children: [
|
children: [
|
||||||
|
@ -10,7 +10,13 @@
|
|||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<div class="h-box">
|
<div class="h-box">
|
||||||
<video style="width:100%" playsinline poster="<%= thumbnail %>" title="<%= HTML.escape(video.title) %>" id="player" class="video-js vjs-16-9" data-setup="{}" controls>
|
<video style="width:100%" playsinline poster="<%= thumbnail %>" title="<%= HTML.escape(video.title) %>"
|
||||||
|
id="player" class="video-js vjs-16-9" data-setup="{}"
|
||||||
|
<% if preferences %>
|
||||||
|
<% if preferences.autoplay %>autoplay<% end %>
|
||||||
|
<% if preferences.video_loop %>loop<% end %>
|
||||||
|
<% end %>
|
||||||
|
controls>
|
||||||
<% if listen %>
|
<% if listen %>
|
||||||
<% audio_streams.each_with_index do |fmt, i| %>
|
<% audio_streams.each_with_index do |fmt, i| %>
|
||||||
<source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>' label="<%= fmt["bitrate"] %>k" selected="<%= i == 0 ? true : false %>">
|
<source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>' label="<%= fmt["bitrate"] %>k" selected="<%= i == 0 ? true : false %>">
|
||||||
@ -30,10 +36,6 @@
|
|||||||
<script>
|
<script>
|
||||||
var options = {
|
var options = {
|
||||||
preload: "auto",
|
preload: "auto",
|
||||||
<% if preferences %>
|
|
||||||
<% if preferences.autoplay %>autoplay: true, <% end %>
|
|
||||||
<% if preferences.video_loop %>loop: true, <% end %>
|
|
||||||
<% end %>
|
|
||||||
playbackRates: [0.5, 1, 1.5, 2],
|
playbackRates: [0.5, 1, 1.5, 2],
|
||||||
controlBar: {
|
controlBar: {
|
||||||
children: [
|
children: [
|
||||||
|
Loading…
Reference in New Issue
Block a user