ytdl-sub/src/ytdl_sub/prebuilt_presets/music_videos/music_videos.yaml
Jesse Bannon a68d5e4539
[FEATURE] Emby prebuilt presets (#1232)
Gives Emby first class support by creating prebuilt presets for each variant, including
- `Emby TV Show by Date`
- `Emby TV Show Collection`
- `Emby Music Videos`

Emby is identical to Jellyfin except in TV Show Collection, where it requires a `season.nfo`. A new plugin `StaticNfoTags` has been created to create those.

Huge thanks to @Kamaroth92 for the initial code for this feature!
2025-06-01 09:56:48 -07:00

46 lines
No EOL
1.1 KiB
YAML

presets:
"Jellyfin Music Videos":
preset:
- "_base"
- "_music_video_base"
- "_music_video_nfo"
- "_music_video_tags"
"Emby Music Videos":
preset: "Jellyfin Music Videos"
"Kodi Music Videos":
preset:
- "_kodi_base"
- "_music_video_base"
- "_music_video_nfo"
- "_music_video_tags"
"Plex Music Videos":
preset:
- "_plex_video_base"
- "_music_video_base"
- "_music_video_tags"
_music_video_nfo:
nfo_tags:
nfo_name: "{music_video_file_name}.nfo"
nfo_root: "musicvideo"
tags:
artist: "{music_video_artist}"
title: "{music_video_title}"
album: "{music_video_album}"
genre:
- "{music_video_genre}"
# Kodi v20 to not use year, so removing
premiered: "{music_video_date}"
_music_video_tags:
video_tags:
artist: "{music_video_artist}"
title: "{music_video_title}"
album: "{music_video_album}"
genre: "{music_video_genre}"
year: "{music_video_year}"
premiered: "{music_video_date}"