This plugin support the standard Japanese media date format for daily shows episodes. This plugin only concerns itself with episodes,
If you want real metadata for the series itself or the season you should use NFO
files.
For Emby version of the plugin please visit emby-daily-plugin page.
Date can be in the following format (YYYY-mm-dd 2023-09-16
- date separator can be -
, .
or _
) or (YY?YYmmdd 20230916 or 230916
) (dates before 2000 should be in YYYYmmdd format),as we prefix two digits to the year to make it a four digit year with 20
.
So the filename itself can contain any of the previous date formats. However, the place where the date is located is important and must comply with the following spec. {date}
refers to the date in any of the previous formats.
{date}
title [720p].mkv- Series Title -
{date}
- title [720p].mkv - Title
{date}
.mkv
Note:
For the 2nd format Series title - {date} - title [720p].mkv
the year has to be 4 digit it's due to misidentifying files that has titles with 6 digit numbers in them.
This format is specially added to support a better looking title.
{date}
Series title -?(#0|ep0|DVD1|DVD1.1|SP1|SP1.1)
-? title [720p].mkv
The generated title will be (#0|ep0|DVD1|DVD1.1|SP1|SP1.1) - title
.
Go to the Releases page and download the latest release.
create a folder named DAILYExtender
in the plugins
directory inside your Jellyfin data directory. You can find your directory by going to Dashboard, and noticing the Paths section. Mine is the root folder of the default Metadata directory.
Unzip the downloaded file and place the resulting files in the plugins/DAILYExtender
restart jellyfin.
Go to your Japanese library Make sure DAILYExtender
is on the top of your Metadata readers
list. Disable all external metadata sources.
And Only enable Image fetchers (Episodes):
- Screen grabber (FFmpeg)
. if you don't have a local image for the episode, it will be fetched from the video file itself.
- Clone or download this repository.
- Ensure you have .NET Core SDK setup and installed.
- Build plugin with following command.
dotnet publish Jellyfin.Plugin.DAILYExtender --configuration Release --no-restore --output bin
- Create folder named
DAILYExtender
in theplugins
directory inside your Jellyfin data directory. You can find your directory by going to Dashboard, and noticing the Paths section. Mine is the root folder of the default Metadata directory.# mkdir <Jellyfin Data Directory>/plugins/DAILYExtender/
- Place the resulting files from step 3 in the
plugins/DAILYExtender
folder created in step 4.# cp -r bin/*.dll <Jellyfin Data Directory>/plugins/DAILYExtender/`
- Be sure that the plugin files are owned by your
jellyfin
user:# chown -R jellyfin:jellyfin /var/lib/jellyfin/plugins/DAILYExtender/
If performed correctly you will see a plugin named DAILYExtender in Admin -> Dashboard -> Advanced -> Plugins
.