diff --git a/src/invidious.cr b/src/invidious.cr index 7e181bd9d..778556ba3 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -287,7 +287,7 @@ get "/watch" do |env| subscriptions ||= [] of String autoplay = env.params.query["autoplay"]?.try &.to_i - video_loop = env.params.query["video_loop"]?.try &.to_i + video_loop = env.params.query["loop"]?.try &.to_i if preferences autoplay ||= preferences.autoplay.to_unsafe @@ -1287,6 +1287,10 @@ get "/embed/:id" do |env| video_loop = env.params.query["loop"]?.try &.to_i video_loop ||= 0 + autoplay = autoplay == 1 + video_loop = video_loop == 1 + controls = controls == 1 + begin video = get_video(id, PG_DB) rescue ex @@ -1294,6 +1298,20 @@ get "/embed/:id" do |env| next templated "error" end + if video.info["hlsvp"]? + hlsvp = video.info["hlsvp"] + + if Kemal.config.ssl || CONFIG.https_only + scheme = "https://" + else + scheme = "http://" + end + host = env.request.headers["Host"] + url = "#{scheme}#{host}" + + hlsvp = hlsvp.gsub("https://manifest.googlevideo.com", url) + end + fmt_stream = [] of HTTP::Params video.info["url_encoded_fmt_stream_map"].split(",") do |string| if !string.empty? diff --git a/src/invidious/helpers.cr b/src/invidious/helpers.cr index 40eeb52fb..3cae652e1 100644 --- a/src/invidious/helpers.cr +++ b/src/invidious/helpers.cr @@ -891,16 +891,16 @@ def decode_time(string) time = string.try &.to_f? if !time - hours = /(?\d+)h/.match(string).try &.["hours"].try &.to_i + hours = /(?\d+)h/.match(string).try &.["hours"].try &.to_f hours ||= 0 - minutes = /(?\d+)m(?!s)/.match(string).try &.["minutes"].try &.to_i + minutes = /(?\d+)m(?!s)/.match(string).try &.["minutes"].try &.to_f minutes ||= 0 - seconds = /(?\d+)s/.match(string).try &.["seconds"].try &.to_i + seconds = /(?\d+)s/.match(string).try &.["seconds"].try &.to_f seconds ||= 0 - millis = /(?\d+)ms/.match(string).try &.["millis"].try &.to_i + millis = /(?\d+)ms/.match(string).try &.["millis"].try &.to_f millis ||= 0 time = hours * 3600 + minutes * 60 + seconds + millis / 1000 @@ -909,10 +909,12 @@ def decode_time(string) return time end -def decode_date(date : String) +def decode_date(string : String) # Time matches format "20 hours ago", "40 minutes ago"... - delta = date.split(" ")[0].to_i - case date + date = string.split(" ")[-3, 3] + delta = date[0].to_i + + case date[1] when .includes? "minute" delta = delta.minutes when .includes? "hour" @@ -926,7 +928,7 @@ def decode_date(date : String) when .includes? "year" delta = delta.years else - raise "Could not parse #{date}" + raise "Could not parse #{string}" end return Time.now - delta diff --git a/src/invidious/views/embed.ecr b/src/invidious/views/embed.ecr index e8df67fe0..82e5070a7 100644 --- a/src/invidious/views/embed.ecr +++ b/src/invidious/views/embed.ecr @@ -7,10 +7,11 @@ + - + <%= video.title %> - Invidious @@ -29,23 +30,31 @@ video, #my_video, .video-js, .vjs-default-skin } +<% if hlsvp %> + +<% end %> + @@ -59,18 +68,19 @@ var options = { 'volumePanel', 'progressControl', 'remainingTimeDisplay', + 'captionsButton', 'qualitySelector', 'playbackRateMenuButton', 'fullscreenToggle', ], }, }; + var player = videojs('player', options, function() { this.hotkeys({ volumeStep: 0.1, seekStep: 5, enableModifiersForNumbers: false, - enableVolumeScroll: false, customKeys: { play: { key: function(e) { @@ -107,11 +117,30 @@ var player = videojs('player', options, function() { }); }); -player.offset({ - start: <%= video_start %>, - end: <%= video_end %> +<% if video_start > 0 || video_end > 0 %> +player.markers({ + onMarkerReached: function(marker) { + if (marker.text === 'End') { + if (player.loop()) { + player.markers.prev('Start'); + } else { + player.pause(); + } + } + }, + markers: [ + {time: <%= video_start %>, text: 'Start'}, + <% if video_end < 0 %> + {time: <%= video.info["length_seconds"].to_f - 0.5 %>, text: 'End'} + <% else %> + {time: <%= video_end %>, text: 'End'} + <% end %> + ] }); +player.currentTime(<%= video_start %>); +<% end %> + <% if !listen %> var currentSources = player.currentSources(); for ( var i = 0; i < currentSources.length; i++ ) { diff --git a/src/invidious/views/watch.ecr b/src/invidious/views/watch.ecr index dfb94f9bc..8a9ef9789 100644 --- a/src/invidious/views/watch.ecr +++ b/src/invidious/views/watch.ecr @@ -24,10 +24,11 @@ + - + <%= video.title %> - Invidious <% end %> @@ -130,11 +131,31 @@ var player = videojs('player', options, function() { player.volume(<%= preferences.volume.to_f / 100 %>); player.playbackRate(<%= preferences.speed %>); <% end %> -player.offset({ - start: <%= video_start %>, - end: <%= video_end %> + +<% if video_start > 0 || video_end > 0 %> +player.markers({ + onMarkerReached: function(marker) { + if (marker.text === 'End') { + if (player.loop()) { + player.markers.prev('Start'); + } else { + player.pause(); + } + } + }, + markers: [ + {time: <%= video_start %>, text: 'Start'}, + <% if video_end < 0 %> + {time: <%= video.info["length_seconds"].to_f - 0.5 %>, text: 'End'} + <% else %> + {time: <%= video_end %>, text: 'End'} + <% end %> + ] }); +player.currentTime(<%= video_start %>); +<% end %> + <% if !listen %> var currentSources = player.currentSources(); for ( var i = 0; i < currentSources.length; i++ ) {