Offline sync #808
Replies: 3 comments 12 replies
-
I think we should prioritize offline playback even when online. Why waste bandwidth and kill baby dolphins when you can use your cached version? I also think we could have cache and synced stuff, like Spotify. Cache would just keep played stuff and be cleared from a single button. Synced would be manually marked and downloaded stuff, which you could review somewhere and wouldn't get cleaned by the clear cache button. Wdyt? |
Beta Was this translation helpful? Give feedback.
-
This is not 100% on topic, but I think we should accomplish this before we even start with offline stuff.
• DNS resolution issues. Right now Websocket can also recover from a prolonged disconnection. Best way to reproduce it is to leave the client open, put your computer in standby mode for a few hours and come back. Lots of exceptions will be thrown and basically you must relogin. |
Beta Was this translation helpful? Give feedback.
-
Hi, maybe helpful: I found the android client Finamp which is able to sync music offline. https://github.com/UnicornsOnLSD/finamp On my phone i works like a charm, much better and more stable than the original Jellyfin-App. BW |
Beta Was this translation helpful? Give feedback.
-
The recent Kakao/Spotify debacle motivated me enough to start thinking about how to do this. This is very early and meanly meant for brainstorming, but it's always good to have an idea of where to start when we get there.
So, in keeping with the store structure in #801, we could imagine an added
availableOffline
array with the index of items we cached.canPlay
in theitemHelper
would be adjusted to look at$nuxt.isOnline
and/or$nuxt.isOffline
.If we are online, it would proceed as usual. However, if we are offline, it would look at the
availableOffline
array to see if the item is cached, then mark it as playable if it is cached.For the caching process itself, we can use
cache.add()
and workbox.Shaka Player also supports offline playback natively.
There's the whole thing of being able to choose tracks and bandwidth too, but that would likely hook up to the normal playback system.
Beta Was this translation helpful? Give feedback.
All reactions