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

Closed
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
Ayaka removed the
wontfix
label 2025-01-06 16:22:26 +13:00
Ayaka referenced this issue from a commit 2025-01-06 16:34:21 +13:00
Ayaka closed this issue 2025-01-06 16:34:21 +13:00
Sign in to join this conversation.
No Milestone
No project
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: iridium/redsunlib#10
No description provided.