Skip to content

Commit

Permalink
Draft 1
Browse files Browse the repository at this point in the history
  • Loading branch information
felix920506 committed Feb 5, 2024
1 parent a1b1b1c commit 0925fdc
Showing 1 changed file with 47 additions and 53 deletions.
100 changes: 47 additions & 53 deletions docs/general/server/media/music.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,49 +5,40 @@ title: Music

# Music

The most common organization scheme for music is separation by artist and then album.
You should organize albums into folders, with one folder containing one and only one album. <br/>
Jellyfin does not care how you organize albums together, as long as each album is contained within one folder. <br/>
Filenames do not matter since the info will be scraped from the embedded metadata of the tracks.

```txt
/Music
/Artist
/Album
01 - Song.mp3
02 - Song.mp3
Music
├── Artist 1
│ ├── Album A
│ │ ├── Track 1.flac
│ │ ├── Track 2.flac
│ │ └── Track 3.flac
│ └── Album B
│ ├── Track 1.m4a
│ ├── Track 2.m4a
│ └── Track 3.m4a
└── Album X
├── Track 1.mp3
├── Track 2.mp3
├── Track 3.mp3
└── Track 4.mp3
```

You can also separate your music into artist folders or with no folder structure at all.

```txt
/Music
/Artist
01 - Song.flac
02 - Song.flac
08 - Song.ogg
09 - Song.ogg
```

Individual songs have no required parameters for filenames since the information will be scraped from metadata.

## Discs

Albums with several discs will be fine with the metadata tags, but you can also use subfolders for the discs. The number can be appended after a space, hyphen, or directly after one of the following keywords.

* Disc
* Disk
* CD
* Vol
* Volume
Albums with several discs are identified by the metadata tags. Please place the tracks for all disks in one folder

```txt
/Music
/Artist
/Album
/Disc 1
01 - Song.mp3
02 - Song.mp3
/Disc 2
01 - Song.mp3
02 - Song.mp3
Album
├── Disc 1 Track 1.ogg
├── Disc 1 Track 2.ogg
├── Disc 2 Track 1.ogg
├── Disc 3 Track 1.ogg
├── Disc 3 Track 2.ogg
└── Disc 3 Track 3.ogg
```

## Images
Expand All @@ -56,43 +47,46 @@ Images will be scraped from album or artist folders, and they can also be embedd

### Primary

* folder
* poster
* cover
* default
- folder
- poster
- cover
- default

### Art

* clearart
- clearart

### Backdrop

Multiple backdrop images can be used to cycle through several over time. Simply append a number to the end of the filename directly after or after a hyphen.

* backdrop
* fanart
* background
* art
* extrafanart
- backdrop
- fanart
- background
- art
- extrafanart

### Banner

* banner
- banner

### Disc

* disc
* cdart
- disc
- cdart

### Logo

* logo
- logo

### Thumb

* thumb
* landscape
- thumb
- landscape

## File Extensions / Containers

## File Extensions
Jellyfin should support most common music formats. Exceptions as follows:

Files with a ".mp4" file extension are not recognised as music. If the file does not contain a video change the extension to ".m4a", otherwise it is not found during a library scan.
- MP4 with only audio: `.mp4` files won't be recognized as music. Please rename them to `.m4a`.
- `.flac` files with embedded WebP images may fail to play in Chromium based browsers (Chrome, Edge, Opera, Brave etc.).

0 comments on commit 0925fdc

Please sign in to comment.