Add the ability to export a kodi.m3u8#25
Open
CasperMcFadden95 wants to merge 1 commit intoDevLARLEY:mainfrom
Open
Add the ability to export a kodi.m3u8#25CasperMcFadden95 wants to merge 1 commit intoDevLARLEY:mainfrom
CasperMcFadden95 wants to merge 1 commit intoDevLARLEY:mainfrom
Conversation
| const export_button = document.getElementById('export'); | ||
| export_button.addEventListener('click', async function() { | ||
| const logs = await AsyncLocalStorage.getStorage(null); | ||
| SettingsManager.downloadFile(stringToUint8Array(JSON.stringify(logs)), "logs.json"); |
Author
There was a problem hiding this comment.
This code was replaced as a title can contain unicode characters and those need to be exported correctly
efed72e to
544d119
Compare
CasperMcFadden95
commented
Mar 1, 2025
| '#KODIPROP:inputstream=inputstream.adaptive', | ||
| '#KODIPROP:inputstream.adaptive.common_headers=' + | ||
| Object.entries(manifest.headers).map(([key, value]) => `${key}=${value}`).join('&'), | ||
| legacy_drm ? getKodiDrmLegacyProp(log) : getKodiDrmProp(log), |
Author
There was a problem hiding this comment.
inputstream.adaptive.drm_legacy is stable and thus made the default
inputstream.adaptive.drm is still under development and could break compatability
544d119 to
83ffd81
Compare
Author
|
@DevLARLEY any chance you can review this please? I think it would be a good addition. Thanks |
Repository owner
deleted a comment from
AboutSatyam
Nov 9, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Thanks for this awesome project.
I added the ability to export a kodi playlist with all the found items. Kodi 21.2+ is supported
A good link to test is https://www.aloula.sa/en/episode/21755 as it has a unicode title and requires the referer/origin headers to be passed to Kodi.