Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
audio-renamer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Janne Mareike Koschinski
audio-renamer
Commits
48651695
Unverified
Commit
48651695
authored
1 year ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
fix: correctly handle flac with split total numbers
parent
e4a7a427
Branches
master
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
extractors/FlacExtractor.py
+7
-4
7 additions, 4 deletions
extractors/FlacExtractor.py
with
7 additions
and
4 deletions
extractors/FlacExtractor.py
+
7
−
4
View file @
48651695
...
...
@@ -4,6 +4,7 @@ from mutagen.flac import FLAC
from
extractors.MediaExtractor
import
MediaExtractor
from
models.TrackMeta
import
TrackMeta
from
util.extract_numbers
import
extract_numbers
from
util.optional_map
import
optional_map
...
...
@@ -21,6 +22,8 @@ class FlacExtractor(MediaExtractor):
return
None
def
extract_tags
(
self
)
->
TrackMeta
:
discnumber
,
disctotal
=
optional_map
(
self
.
extract_tag
(
'
discnumber
'
),
extract_numbers
)
tracknumber
,
tracktotal
=
optional_map
(
self
.
extract_tag
(
'
tracknumber
'
),
extract_numbers
)
return
TrackMeta
(
album
=
self
.
extract_tag
(
'
album
'
),
albumsort
=
self
.
extract_tag
(
'
albumsort
'
),
...
...
@@ -29,14 +32,14 @@ class FlacExtractor(MediaExtractor):
artist
=
self
.
extract_tag
(
'
artist
'
),
artistsort
=
self
.
extract_tag
(
'
artistsort
'
),
catalognumber
=
self
.
extract_tag
(
'
catalognumber
'
),
discnumber
=
optional_map
(
self
.
extract_tag
(
'
discnumber
'
),
int
)
,
disctotal
=
optional_map
(
self
.
extract_tag
(
'
disctotal
'
),
int
),
discnumber
=
discnumber
,
disctotal
=
optional_map
(
self
.
extract_tag
(
'
disctotal
'
),
int
)
or
disctotal
,
label
=
self
.
extract_tag
(
'
label
'
),
media
=
self
.
extract_tag
(
'
media
'
),
originaldate
=
self
.
extract_tag
(
'
originaldate
'
),
originalyear
=
self
.
extract_tag
(
'
originalyear
'
),
title
=
self
.
extract_tag
(
'
title
'
),
titlesort
=
self
.
extract_tag
(
'
titlesort
'
),
tracknumber
=
optional_map
(
self
.
extract_tag
(
'
tracknumber
'
),
int
)
,
tracktotal
=
optional_map
(
self
.
extract_tag
(
'
tracktotal
'
),
int
),
tracknumber
=
tracknumber
,
tracktotal
=
optional_map
(
self
.
extract_tag
(
'
tracktotal
'
),
int
)
or
tracktotal
,
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment