sane-tag-music: allow manually specifying the track number

This commit is contained in:
Colin 2024-04-17 09:07:19 +00:00
parent e5bad6a74c
commit e3898449b7
1 changed files with 4 additions and 1 deletions

View File

@ -26,7 +26,8 @@ options:
--album ALBUM manually specify the tag, rather than guessing from path.
--album-artist ARTIST often combined with DIRECTORY to tag an entire artist or album.
--artist ARTIST
--tile TITLE
--title TITLE
--trackno TRACK_NUMBER
fix-tags options:
--force: apply path-based tag to each file, even those which already have tags (only for fix-tags)
@ -466,6 +467,7 @@ def main():
parser.add_argument('--album-artist', help="manually specify the tag")
parser.add_argument('--artist', help="manually specify the tag")
parser.add_argument('--title', help="manually specify the tag")
parser.add_argument('--trackno', help="manually specify the tag")
subparsers = parser.add_subparsers(help="operation")
@ -493,6 +495,7 @@ def main():
albumartist=[args.album_artist] if args.album_artist else [],
artist=[args.artist] if args.artist else [],
title=[args.title] if args.title else [],
tracknumber=[args.trackno] if args.trackno is not None else [],
)
tagger = Tagger(