🐛 Bug Report: Video downloads wont work on HLS compatible devices #10

Open
opened 2024-06-23 21:23:41 +12:00 by Ayaka · 1 comment
Owner

Describe the bug

./static/videoUtils.js

// If HLS is supported natively then don't use hls.js
if (oldVideo.canPlayType(source.type) === "probably") {
    if (autoplay) {
        oldVideo.play();
    }
    return;
}

if a device can use hls it wont need to use hls.js bypassing ffmpeg downloads. i could resolve this by always using hls with downloads on even if hls is supported, or (i assume?) just download the file directly if the device itself remuxes it.

anyway i dont use redlib on anything that has hls supported. so this will probably just go unsolved

## Describe the bug `./static/videoUtils.js` ```js // If HLS is supported natively then don't use hls.js if (oldVideo.canPlayType(source.type) === "probably") { if (autoplay) { oldVideo.play(); } return; } ``` if a device can use hls it wont need to use hls.js bypassing ffmpeg downloads. i could resolve this by always using hls with downloads on even if hls is supported, or (i assume?) just download the file directly if the device itself remuxes it. anyway i dont use redlib on anything that has hls supported. so this will probably just go unsolved
Ayaka added the
wontfix
label 2024-06-23 21:24:26 +12:00
Author
Owner

*maybe

*maybe
Ayaka added the
bug
label 2024-06-23 21:27:04 +12:00
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: iridium/redsunlib#10
No description provided.