-
Notifications
You must be signed in to change notification settings - Fork 72
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
Use m3u playlist spec for import/export #41
Comments
That wouldn't work if you have a stream like TWiT's HLS stream as it uses On Mon, Aug 31, 2015, 3:59 PM Nick notifications@github.com wrote:
|
The TWiT stream used is Though streams that use adaptive bitrates will still work as long as there is a single file which can be opened, this format should work. |
I think I found some code that can do this. I'll see if I can integrate that at some point. |
Import works. Export has not been implemented yet. It will soon along with individual channel sharing options. |
How to import? |
You can get the m3u file and then open it with Cumulus TV. It will import
the channels.
|
Not finding any way to import an m3u file. Doesn't open with nor does it understand the format when adding it as a stream. Any pointers? Using Android TV and stock Android. |
Use a file Explorer, try to open the file, a cumulus action handler should appear |
Have done so with two different file explorers - ES and the one that comes default with the phone. Cumulus isn't appearing as a handler. Perhaps it's invalid? There's 1000 channels on this list. |
Whilst quickly editing a python script, the open with offered Cumulus to create a channel. I then renamed the file.m3u to file.py and bizarrely it works. |
Hmm maybe there's a problem with identifying .m3u specifically. Using the
|
There was no handler for m3u8 on my Android TV system. That said, I was trying to open it from an sftp location which doesn't always behave the same as opening locally. |
Ah, right now it only opens locally or from http. I don't know how much On Sat, Feb 13, 2016, 4:58 PM Billy McIntosh notifications@github.com
|
To be honest, I don't think it's going to be a hugely requested feature. |
You're probably correct. If more people request it and there's an easy way On Sat, Feb 13, 2016, 5:05 PM Billy McIntosh notifications@github.com
|
On ES it's other when you try to open the file, not as text. A simpler method would be cool |
What would you recommend? On Sat, Feb 13, 2016, 5:38 PM Gabriel Redondo notifications@github.com
|
I meant on "other" section on ES. About a simpler method, no idea, probably ftp/sftp isn't going to be a popular request, but maybe a local file picker and not depending on a external file Explorer would be helpful |
Is integrating a local file picker something that would make sense? It'd On Sat, Feb 13, 2016, 5:52 PM Gabriel Redondo notifications@github.com
|
Yeah, that's true. Also there is the Google Drive picker |
I believe Google Drive will often be preferable as most people will likely On Sat, Feb 13, 2016, 6:04 PM Gabriel Redondo notifications@github.com
|
Channels can now be imported and exported through the app |
Build a two-way parser for m3u playlists. This is a common format for many people already using this technology, as opposed to the custom JSON format.
JSON might remain the primary format underneath, but make it easy to import an m3u playlist from Google Drive to be your channel list. Then make it export to that same file type.
Maybe export to both JSON and m3u.
The text was updated successfully, but these errors were encountered: