Using syncthing to sync between two or more freetube instalations #7343
Closed
Seeker-of-Novelty
started this conversation in
General
Replies: 2 comments 8 replies
-
|
I would highly discourage trying to sync the files while FreeTube is running, as it assumes it has exclusive access and control over the files while it is running. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Is there a way to sync between two instalations, maybe just history.db, playlists.db, and subscription-cache.db? Or maybe we there can be a sort of "duplicate" playlist, history, and subscription that freetube looks at that is not the main one and can compare to. For example, a share-playlist.db, that can be read so that copy any changes made to its original playlist.db. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, if you want to make it so you can play a freetube video on your desktop, stop playing, and come back to it, I believe you can do this by using syncthing.
I do not quite know how to do this cleanly though, I have a code from ChatGPT to help me, but I believe it is not going to be clean, ie. if freetube is open in both computers there will be a conflict.
Does anyone have a better idea on how to sync freetube?
'''
(?d) # Allow deletion of ignored files so empty dirs can be pruned :contentReference[oaicite:0]{index=0}
(?i) # Case‑insensitive matching (Windows) :contentReference[oaicite:1]{index=1}
// Ignore all cache and temporary data
Cache/**
DawnGraphiteCache/**
// Ignore everything else by default
**
Include only the core user‑data files:
!profiles.db # subscription & profile info :contentReference[oaicite:2]{index=2}
!settings.db # app preferences :contentReference[oaicite:3]{index=3}
!playlists.db # your playlists & saved videos :contentReference[oaicite:4]{index=4}
!history.db # watch history :contentReference[oaicite:5]{index=5}
!search-history.db # search history :contentReference[oaicite:6]{index=6}
!subscription-cache.db # cached uploads/posts from your channels :contentReference[oaicite:7]{index=7}
'''
Beta Was this translation helpful? Give feedback.
All reactions