mirror of
https://github.com/Lidarr/Lidarr.git
synced 2026-03-02 22:56:57 -05:00
Improve parsing and identification of track files #11
Labels
No labels
Area: API
Area: Database
Area: Db-migration
Area: Download Clients
Area: Extras
Area: Import Lists
Area: Indexer
Area: Metadata API
Area: Notifications
Area: Organizer
Area: Parser
Area: Scanning
Area: Tooling
Area: UI
Area: Unit Tests
Area: Update API
On Hold: MetadataAPI Blocking
Priority: High
Priority: Low
Priority: Medium
Status: Accepted
Status: Cannot Reproduce
Status: Confirmed
Status: Don't Merge
Status: Help Wanted
Status: In Progress
Status: Info Needed
Status: Investigating
Status: Logs Needed
Status: Maybe One Day
Status: Needs Triage
Status: On Hold
Status: Ready for Review
Status: Unlikely
Status: Waiting for OP
Status: Won't Fix
Type: Bug
Type: Documentation
Type: Duplicate
Type: Enhancement
Type: Enhancement
Type: External Bug
Type: Feature Request
Type: Regression
Type: Support
Type: Support.
conflict
conflict
no-conflict
not-pulled
radarr-pull
readarr-pull
sonarr upstream
sonarr-pull
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Lidarr#11
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 @danielunderwood on GitHub (Aug 16, 2017).
Originally assigned to: @danielunderwood, @ta264 on GitHub.
Finish local file scanning to pick up files currently in library. At the moment, FLAC files may not be picked up at all.
@majora2007 commented on GitHub (Aug 16, 2017):
If I recall, only FLAC will fail due to a parsing bug with the regex.
@Qstick commented on GitHub (Aug 25, 2017):
FLAC seems to be working ok, I think we just need some fall-backs to the tag reading. Right now its failing to import if
albumartisttag is emptyEx. for artist we should look for
MBIDin tag first, if not available then look foralbumartist, if not available look for firstcontributingartistthen lastly we fall back on the artist folder. Also, during import the user is identifying the artist for a given folder and correcting during search if needed thus we should know the artist by the folder its in and which artist is assigned.@ghost commented on GitHub (Dec 19, 2017):
I believe my error below may be related. There is an error with track title though not album artist.
@thetrev commented on GitHub (May 18, 2018):
One of the improvements to the QOL for parsing would be going through a list of non-standard characters to help match against a track. For example, "Elian" will not match, but "Elián" will. I figure that if a match is looking for a that special character, to just run a method to detect them and reference the track title against the plain character?
@sbeaudoin commented on GitHub (May 18, 2018):
I think this would be very good to remove diacritics from the search string and all the found candidates. This is easily done in .Net. Here is an example from StackOverflow : https://stackoverflow.com/questions/249087/how-do-i-remove-diacritics-accents-from-a-string-in-net
@Qstick commented on GitHub (Nov 19, 2018):
Closing with #522, will open more defined issues for individual problems that come up.