2.1 KiB
uid, title
uid | title |
---|---|
server-media-movies | Movies |
Movies
Movies can be added to a Jellyfin server using the "Movies" library type.
import VideoHeader from './_video-header.md';
Organization
Movies should be organized into individual folders for each movie. The folder can optionally contain extra files.
Movies
├── Best_Movie_Ever (2019)
│ ├── Best_Movie_Ever (2019).mp4
│ ├── Best_Movie_Ever (2019).nfo
│ ├── Best_Movie_Ever (2019).en_us.srt
│ ├── cover.png
│ └── theme.mp3
└── Movie (2021) [imdbid-tt12801262]
├── backdrop.jpg
└── VIDEO_TS
├── VIDEO_TS.BUP
├── VIDEO_TS.IFO
├── VIDEO_TS.VOB
├── VTS_01_0.BUP
├── VTS_01_0.IFO
├── VTS_01_0.VOB
├── VTS_01_1.VOB
└── VTS_01_2.VOB
Naming
The folder containing the movie should be named in the following format:
Movie Name (year) [external id]
The year
and external id
fields are optional, but they will help identify media more reliably.
The video files within the folder should have the same name has the folder. I.e. if the folder is named Super Fun Movie
, the video file within should be named Super Fun Movie.mp4
(or any other extension), optionally with tags defined below.
- Example with name only:
Jellyfin Documentary.mkv
- Example with year:
Jellyfin Documentary (2030).mkv
- Example with external id:
Jellyfin Documentary [imdbid-tt00000000].mkv
- Example with both year and external id:
Jellyfin Documentary (2030) [imdbid-tt00000000].mkv
import VideoMetadataProviders from './_video-metadata-providers.md';
import ExternalStreams from './_video-external-streams.md';
import Multiversion from './_video-multiversion.md';
import Video3D from './_video-3d.md';
import Multipart from './_video-multipart.md';
import ExternalExtras from './_video-external-extras.md';
import ExternalImages from './_external-images.md';