This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
music_management [2024/01/06 05:25] – add tags qlyoung | music_management [2024/08/25 15:38] (current) – [Phone] fix broken link qlyoung | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | I'm a big music enjoyer. What I'm not a big enjoyer of is streaming services. Maybe I'll write another article about that, but the short of it is that instead of paying a tech company to rent temporary access their music library which they pay to license from a label who gives some tiny fraction of their revenue to the artist, I prefer a more traditional model where an artist makes some music, you pay the artist for a copy, and then you own that copy. That way the artist gets the money and you own something in return for your money. | + | ====== music management ====== |
+ | I'm a big music enjoyer. What I'm not a big enjoyer of is streaming services. Maybe I'll write another article about that, but the short of it is that instead of paying a company to rent temporary access | ||
- | One of the benefits of owning | + | - artist makes music |
+ | - you pay the artist for a copy | ||
+ | - you own that copy | ||
- | ====== Methods | + | That way the artist gets money and you own something in return for your money. |
+ | |||
+ | One of the benefits of owning music is that you can put it on whatever device you want and use whatever program you prefer to play it. However, if you have multiple devices getting your music collection available on all of them becomes an exercise in file management. This article roughly depicts how I solve it. | ||
+ | |||
+ | ===== Methods ===== | ||
Here's a chart that shows a rough outline of data flow: | Here's a chart that shows a rough outline of data flow: | ||
Line 16: | Line 23: | ||
end | end | ||
subgraph devices[" | subgraph devices[" | ||
- | library -.-> |nfs| desktop((" | + | library -.-> |syncthing| desktop((" |
W -.-> |tunefusion| phone((" | W -.-> |tunefusion| phone((" | ||
end | end | ||
Line 30: | Line 37: | ||
The rest of the diagram depicts how the 3 devices I play my library on end up with access to my music. | The rest of the diagram depicts how the 3 devices I play my library on end up with access to my music. | ||
- | For my desktop and laptop, they have the filesystem where my music library resides mounted using NFS. Once the library is mounted, it's accessible like any other local directory, and then I use my [[https:// | + | ==== Desktop & Laptop ==== |
- | The phone is a little trickier. Ideally I would like to run a sync daemon in the background on my server and phone that syncs the music directory to the device, but that's not how things work on iOS. For one, background daemons cannot really exist on iOS (there are exceptions to this - iCloud for example - but nothing worth using). For two, there is not really a place to put the music. Due to how sandboxing works on iOS, you need to pick an app to put the music " | + | My server, desktop |
- | I can already hear you saying, why don't you [[just]] play back your music over the network using a network player? | + | In the past, both of these devices mounted the directory containing music via NFS. Since they' |
+ | |||
+ | For playback on the computer, I prefer [[https:// | ||
+ | |||
+ | ==== Phone ==== | ||
+ | |||
+ | The phone is a little trickier. Ideally I would use the same approach as for my desktop and laptop - run a sync program to keep the music library up to date on my iPhone disk. Unfortunately, | ||
+ | |||
+ | - background daemons cannot really exist on iOS | ||
+ | - the concept of a filesystem that is shared between apps does not exist on iOS | ||
+ | |||
+ | Regarding backgrounding, | ||
+ | |||
+ | Even if a sync program was viable on iOS, we would hit another blocker. iOS does not have the concept of a shared filesystem. Apps are only able to write to their own sandboxed filesystems. Consequently any files downloaded by a sync app would not be accessible by a music player app. | ||
+ | |||
+ | The upshot is that to solve this problem you need a music playback app that also has its own syncing service built in. Obviously this is [[https:// | ||
+ | |||
+ | I can already hear you saying, | ||
- | Anyway, as luck would have it, the [[https:// | + | Anyway, as luck would have it, the [[https:// |
+ | |||
+ | - is Windows only | ||
+ | - is closed source | ||
+ | - costs money | ||
+ | |||
+ | However, it is surprisingly full featured and works very well. Since it's Windows only, I run it inside a windows VM on my hypervisor (which also hosts the file server | ||
The end result is that every time I open the foobar2000 app on iOS, any new music in my library downloads to my device. After that it's available for local playback. Since my phone is also on Tailscale, this works anywhere. | The end result is that every time I open the foobar2000 app on iOS, any new music in my library downloads to my device. After that it's available for local playback. Since my phone is also on Tailscale, this works anywhere. |