This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
music_management [2023/09/12 00:42] – qlyoung | music_management [2024/08/25 15:38] (current) – [Phone] fix broken link qlyoung | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== 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 to their music library, | ||
+ | |||
+ | - artist makes music | ||
+ | - you pay the artist for a copy | ||
+ | - you own that copy | ||
+ | |||
+ | 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: | ||
+ | |||
+ | <code mermaid> | ||
+ | flowchart TD | ||
+ | Source -.-> |download| staging | ||
+ | W[" | ||
+ | subgraph server[" | ||
+ | staging --> |beet import| library | ||
+ | library --> W | ||
+ | end | ||
+ | subgraph devices[" | ||
+ | library -.-> |syncthing| desktop((" | ||
+ | W -.-> |tunefusion| phone((" | ||
+ | end | ||
+ | click phone " | ||
+ | </ | ||
+ | |||
+ | In short: | ||
+ | |||
+ | - Acquire the music from somewhere; for me, I usually buy it on [[https:// | ||
+ | - Download it to a " | ||
+ | - Log into the server and run '' | ||
+ | |||
+ | The rest of the diagram depicts how the 3 devices I play my library on end up with access to my music. | ||
+ | |||
+ | ==== Desktop & Laptop ==== | ||
+ | |||
+ | My server, desktop and laptop all run [[https:// | ||
+ | |||
+ | 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, "why don't you [[just]] play back your music over the network using a network player"? | ||
+ | |||
+ | 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 with my music library). The VM has the music directory mounted from the file server via Samba. | ||
+ | |||
+ | 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. | ||
+ | |||
+ | ====== Historical methods ====== | ||
+ | |||
+ | I used to do it a much more complicated way than depicted above because I had an Android phone with not enough storage to store my lossless music collection. Android meant I could run background file syncing utilities and not enough storage meant that I had to transcode my collection to something lossy in order to crunch it down small enough to fit on my phone. Buying an iPhone with 512gb of storage meant that 1) I lost the ability to run any kind of background syncing software because iOS doesn' | ||
+ | |||
+ | These are the unintelligible notes I took about how I used to do it, replete with ascii diagrams from a time before I caved a little bit on my static site elitism and just used [[https:// | ||
+ | |||
1. Tx from source to local staging directory | 1. Tx from source to local staging directory | ||
2. `beet import` from staging directory into mounted remote share[0] | 2. `beet import` from staging directory into mounted remote share[0] | ||
Line 88: | Line 165: | ||
</ | </ | ||
- | {{tag> | + | {{tag> |