blob: 4f740c8944e98280d4ee80ace7c53f905ed8a661 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Moekyun Music Spec
1. Upload FLACs (Lossless) when possible, avoid m4a. No restrictions otherwise on sample rate or bit depth
2. If the audio is already lossy (aka covers on YouTube) upload as mp3
3. All albums and tracks must have album art, this can be either `cover.jpg` in the same folder or embedded into the file.
4. Always upload full albums if possible (exception for covers)
5. All upload audio must be normalized to `-8 LUFS`, via the `REPLAY GAIN` tag (do not modify the actual waveform)
6. When uploading follow the structure of `Music/GENRE/ARTIST/ALBUM`
# Normalizing Audio
Recommended to use [rsgain](https://github.com/complexlogic/rsgain)
The following config file will normalize to `-8 LUFS`
```toml
[Global]
TargetLoudness=-8
```
Command below runs with all CPU cores in the current directory.
`rsgain easy -p "PATH_TO_SETTINGS_FILE" -m MAX .`
# Downloding Covers from YouTube
Use the full thumbnail as album art
Useful Tool:
https://github.com/pinapelz/ytID3AutoTag
|