mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-03-02 22:46:55 -05:00
[Enhancement]: Metadata Scanner should be able to add multiple Series (or Sub-Series) via the additonal metadata sources #3084
Labels
No labels
authentication
awaiting release
backlog
bug
chapter editor
config-issue
ebooks
encoding/embedding
enhancement
help wanted
listening sessions & progress
planned
possible plugin
progress sync
sorting/filtering/searching
unable to reproduce
upload
users & permissions
waiting
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/audiobookshelf-advplyr#3084
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @saltedlolly on GitHub (Nov 11, 2025).
Type of Enhancement
Server Backend
Describe the Feature/Enhancement
In this issue, I propose an improvement to how the metadata scanner operates to better allow for adding multiple series to a single audiobook. Currently, only the first series found is added (unless you list multiple in the CONTENTGROUP meta tag - more on this below).
Additional metadata sources should be able to add other series, or sub-series, provided they have not already been added from a previous source.
A Detailed Explanation
Organizing multiple series via folders and meta tags
For this explanation, I will use the following example audiobook which can potentially belong to multiple series:
It is currently possible to add multiple series to the CONTENTGROUP id3 tag so all three series could be added in the meta tags like so:
However, there is a condiderable downside to this, particularly with large series, where the sequence numbering may change over time. If a new book later gets added to the middle of the sequence of the Cosmere, you need to update the mp3 metadata of many of your other books simple to accomodate this one change.
A better solution is to organize in this hybrid method using both meta tags and folder structure. The book goes in this folder to set it to "The Cosmere #16":
Then in the file meta tags you can include additional sub-series like this:
This makes it easy to quickly adjust the overall book order in "The Cosmere" series by changing vol number in the folder name, without needing to touch the metadata of any other books in the series.
The sub-series numbering are less likely to change, and also only require changing a few files if they do. This keeps things cleanly organized, while also supporting multiple series per book.
Now to the scanning part...
Scanning multiple series for a single book
Let's assume for this example that our scanner priority is set as follows:
The problem right now is that when Audiobookshelf scanner finds the CONTENTGROUP entry in the audio file meta tag, it sets this as the series and then ignores any additional series sources. (e.g. a series set in the folder stucture is ignored, simply because the series was already set via the meta tags.)
The Solution
I propose that scanner be changed to allow it to append another series or sub-series, from a later metadata source, provided the same series has not already been added via a prior metadata source.
So in the above example, when scanning the meta tags it would find and add the series:
The Mistborn Saga #4Mistborn: Wax & Wayne #1Then when it scans the folder structure, it will see that book is also in "The Cosmere" (Vol 16). Since "The Cosmere" series has not already been added via the meta tags, it will add it as an additional series for the same book:
The Cosmere #16Important
The higher priority scanner will always take precedence, so a series that exists in multiple sources will use the first one it finds based on the metadata order of precedence, unless the latter series entry includes a number and the former does not.
So in the above example, if the folder structure remained the same, but the audio file meta tags contained:
Then the series added would be:
The Cosmere #20The Mistborn Saga #4Mistborn: Wax & Wayne #1(The Cosmere is not
#16as set in the folder structure, as the#20was found first, and that takes precedence.)Similarly, if The Cosmere was set in the first source but without a series number:
Then the series added would be:
The Cosmere #16The Mistborn Saga #4Mistborn: Wax & Wayne #1This is because if the first source has no series number, but the second source does, it will add the latter number. If the first source has a series number
The Cosmere #16and the second source does not, then the first source would take precedence, since a series number is already set.Why would this be helpful?
Benefits
The advantage of this improvement to the scanner, is that multiple sources that individually can only specify a single series and number (such as using folder structure) can be supplemented to add additional series via a secondary source (such as via the meta tags).
It also allows users to organize their books into series folders, helping to keep their audiobooks well organized, while still being able to include metadata for sub-series, and other series outside of the current folder structure.
It also means for that for series that are only part of a single series, you can rely solely on folder structure, which makes it very quick and easy to organize you audiobooks for use in Audiobookshelf.
Future Implementation (Screenshot)
I explained this in detail above.
Audiobookshelf Server Version
v2.30.0
Current Implementation (Screenshot)
The scanner currently only uses the series metadata from the first source it finds, and ignores any additional series. In many cases, this means that only a single series per book can ve added via the scanner, escially if relying on folder structure.