2024-08-06, 09:02 PM
I went the same route as @dontcryforme
Disable the missing episode fetcher for effected library in Jellyfin.
Now do a rescan of the affected library in Jellyfin, this should be fast.
Disable the missing episode fetcher for effected library in Jellyfin.
Code:
root@tuxserver01:/home/tuxfoo# cd /home/docker/jellyfin/config/data/
# Backup Database
root@tuxserver01:/home/docker/jellyfin/config/data# cp library.db library.db.bak3
# You might need to install sqlite3 if running Jellyfin in docker
root@tuxserver01:/home/docker/jellyfin/config/data# sqlite3 library.db
# Check to make sure that nothing important is going to get removed:
sqlite> select * from TypedBaseItems where isVirtualItem=1 AND MediaType='Video';
# Delete from database
sqlite> delete from TypedBaseItems where isVirtualItem=1 AND MediaType='Video';
sqlite> exit
Now do a rescan of the affected library in Jellyfin, this should be fast.