Skip to content

Commit 4fd7e3b

Browse files
committed
Add the "Music collecting" notes.
1 parent 453622a commit 4fd7e3b

File tree

3 files changed

+58
-0
lines changed

3 files changed

+58
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
+++
2+
title = "What format to store in?"
3+
+++
4+
5+
While lossless formats ([FLAC](https://en.wikipedia.org/wiki/FLAC), [WAV](https://en.wikipedia.org/wiki/WAV)) are great for preserving original quality, using them for a local music collection can result in significant usage of storage space. If that's undesirable, using lossy formats can solve the problem.
6+
7+
While choosing between [many lossy audio coding formats](https://en.wikipedia.org/wiki/Audio_coding_format#List_of_lossy_formats), transcoding to the [Opus](https://en.wikipedia.org/wiki/Opus_(audio_format)) format in the VBR mode with highest compression level is a good way of having the best quality at the smallest file size.
8+
9+
Lossless audio files can be transcoded using [FFmpeg](https://ffmpeg.org) with the [`libopus`](https://ffmpeg.org/ffmpeg-codecs.html#libopus-1) audio encoder. The default settings for that encoder have `vbr` set to `on` and `compression_level` set to 10 (the highest).
10+
11+
Thus, it is enough to call
12+
13+
```bash
14+
ffmpeg -i "file.flac" -c:a libopus "file.opus"
15+
```
16+
17+
See also [my script](https://gitlab.com/paveloom-g/other/convert-to-opus) with an example of size difference for a release.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
+++
2+
title = "Where to download lossless music from?"
3+
+++
4+
5+
There are three widely known services providing music in lossless formats:
6+
7+
- [Deezer](https://www.deezer.com/) [*16-Bit/44.1 kHz FLAC*]
8+
- [Qobuz](https://www.qobuz.com/) [*16-Bit/44.1 kHz FLAC*, *24-Bit/96 kHz FLAC*]
9+
- [TIDAL](https://tidal.com) [*16-Bit/44.1 kHz "HiFi" FLAC*, *24-Bit/44.1 kHz "MQA" FLAC*]
10+
11+
You can obtain tokens for these at [Firehawk52](https://firehawk52.com/).
12+
13+
Additionally, [Bandcamp](https://bandcamp.com) supports FLAC and WAV as well.
14+
15+
Alternatively, download from a proxy service:
16+
17+
- [DoubleDouble](https://us.doubledouble.top)
18+
- [Lucida](https://lucida.to)
19+
20+
Download clients:
21+
22+
- [`streamrip`](https://github.com/nathom/streamrip)
23+
24+
More information:
25+
26+
- [Rentry: Firehawk52](https://rentry.co/firehawk52)
27+
28+
Finally, if all else fails, check P2P networks:
29+
30+
- [BitTorrent](https://en.wikipedia.org/wiki/BitTorrent)
31+
- [Soulseek](https://en.wikipedia.org/wiki/Soulseek)
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
+++
2+
title = "Music collecting"
3+
+++
4+
5+
While streaming services (e.g., Spotify, Apple Music, etc.) are popular, they don't provide real ownership of the music releases. Rather, you are renting the music, paying either via money or attention. Any release can get removed from such services at any time for whatever reason, and you might not even notice it. The following notes focus on the use case of having a local collection of music files.
6+
7+
Child notes:
8+
9+
- [Where to download lossless music from?](@/notes/Music_collecting/Where_to_download_lossless_music_from.md)
10+
- [What format to store in?](@/notes/Music_collecting/What_format_to_store_in.md)

0 commit comments

Comments
 (0)