-
Notifications
You must be signed in to change notification settings - Fork 249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Lily/Video] add m3u8 support #1785
base: master
Are you sure you want to change the base?
Conversation
jexjws
commented
Dec 11, 2024
•
edited
Loading
edited
- using hls.js to play m3u8
- bundled hls.js directly into the extension
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (!(await Scratch.canFetch(url))) return;
WARNING : If the resource URLs in a .m3u8 file are not on the same domain as the .m3u8 file itself, the client can fetch resources from other domains without using Scratch.fetch.
If you use an outside library, you must make an offline copy of it and imbibe it into the extension directly, and include the license of said library in the extension as well. |
OK. I will do this. |
Add hls.js license and usage information
|
Addressed. Please review the changes. |