Move video options to <video> element

This commit is contained in:
Omar Roth 2018-07-19 10:30:54 -05:00
parent d997344f3e
commit 8861d31b21
2 changed files with 12 additions and 9 deletions

View File

@ -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: [

View File

@ -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: [