[PR #6027] [MERGED] Improve series matching #10785

Closed
opened 2026-02-07 06:26:37 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jellyfin/jellyfin/pull/6027
Author: @fredriklindberg
Created: 5/11/2021
Status: Merged
Merged: 11/2/2021
Merged by: @cvium

Base: masterHead: improve-series-matching


📝 Commits (1)

  • ea439c5 Improve series name matching

📊 Changes

8 files changed (+233 additions, -3 deletions)

View changed files

📝 Emby.Naming/Common/NamingOptions.cs (+14 -0)
Emby.Naming/TV/SeriesInfo.cs (+29 -0)
Emby.Naming/TV/SeriesPathParser.cs (+61 -0)
Emby.Naming/TV/SeriesPathParserResult.cs (+19 -0)
Emby.Naming/TV/SeriesResolver.cs (+49 -0)
📝 Emby.Server.Implementations/Library/Resolvers/TV/SeriesResolver.cs (+5 -3)
tests/Jellyfin.Naming.Tests/TV/SeriesPathParserTest.cs (+28 -0)
tests/Jellyfin.Naming.Tests/TV/SeriesResolverTests.cs (+28 -0)

📄 Description

Improves series name matching (thus better hit ratio at tmdb) for paths that contain more information that just the series name (ex. show.s01). The output from the SeriesResolver is a "clean" series name.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/jellyfin/jellyfin/pull/6027 **Author:** [@fredriklindberg](https://github.com/fredriklindberg) **Created:** 5/11/2021 **Status:** ✅ Merged **Merged:** 11/2/2021 **Merged by:** [@cvium](https://github.com/cvium) **Base:** `master` ← **Head:** `improve-series-matching` --- ### 📝 Commits (1) - [`ea439c5`](https://github.com/jellyfin/jellyfin/commit/ea439c5ccf7a61157544accd60109afc12dbc2d2) Improve series name matching ### 📊 Changes **8 files changed** (+233 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `Emby.Naming/Common/NamingOptions.cs` (+14 -0) ➕ `Emby.Naming/TV/SeriesInfo.cs` (+29 -0) ➕ `Emby.Naming/TV/SeriesPathParser.cs` (+61 -0) ➕ `Emby.Naming/TV/SeriesPathParserResult.cs` (+19 -0) ➕ `Emby.Naming/TV/SeriesResolver.cs` (+49 -0) 📝 `Emby.Server.Implementations/Library/Resolvers/TV/SeriesResolver.cs` (+5 -3) ➕ `tests/Jellyfin.Naming.Tests/TV/SeriesPathParserTest.cs` (+28 -0) ➕ `tests/Jellyfin.Naming.Tests/TV/SeriesResolverTests.cs` (+28 -0) </details> ### 📄 Description Improves series name matching (thus better hit ratio at tmdb) for paths that contain more information that just the series name (ex. show.s01). The output from the SeriesResolver is a "clean" series name. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-07 06:26:37 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#10785