mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-11-03 22:21:55 +00:00 
			
		
		
		
	Fix HLS being used for non-livestream videos (#5189)
Invidious does not currently support non-livestream hls playback Originally, the HLS manifest check was essentially a boolean: if the HLS manifest field was present, it was assumed to be a livestream. Some videos include the HLS Manifest but aren't livestreams. In the case where they are livestreams, the video contains a videoType field with the value "Livestream". In the case that they're normal videos, the videoType is "Video". This is exposed via the `video.live_now` property. This commit just checks that `video.live_now` is true before treating it as a livestream
This commit is contained in:
		@@ -4,7 +4,7 @@
 | 
			
		||||
    <% if params.autoplay %>autoplay<% end %>
 | 
			
		||||
    <% if params.video_loop %>loop<% end %>
 | 
			
		||||
    <% if params.controls %>controls<% end %>>
 | 
			
		||||
    <% if (hlsvp = video.hls_manifest_url) && !CONFIG.disabled?("livestreams") %>
 | 
			
		||||
    <% if (hlsvp = video.hls_manifest_url) && video.live_now && !CONFIG.disabled?("livestreams") %>
 | 
			
		||||
        <source src="<%= URI.parse(hlsvp).request_target %><% if params.local %>?local=true<% end %>" type="application/x-mpegURL" label="livestream">
 | 
			
		||||
    <% else %>
 | 
			
		||||
        <% if params.listen %>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user