You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the fromFilename plugin on music files with blank Title tags, and choosing "Use as-is" options, does not update the tags.
Source file:
$ beet import "D:\BeetsTest"
Imported file:
I need to use the "Use as-is" option because none of the MusicBrainz candidates match.
Passing -A does the same.
I want it to update the Title tag from the filename, without then choosing a candidate for incorrectly updating the tags. I'm not sure what the intended behavior of the plug-in is here.
I've managed to achieve this by adding the following to the end of filename_task, however this applies the tags to both the source file and the imported file.
# Write the new tags nowforiteminitems:
item.try_write()
I guess a better solution is to set the action of the manipulate_files task to action.RETAG, but I don't know how to edit subsequent tasks from the plug-in.
Setup
OS: Windows 11
Python version: 3.12.3
beets version: 2.0.0
Turning off plugins made problem go away (yes/no): n/a
My configuration (output of beet config) is:
directory: D:\BeetsTest\Librarylibrary: D:\BeetsTest\musiclibrary.dbignore:
- Library # Being written to during import
- Various Artistsplugins: fromfilename
The text was updated successfully, but these errors were encountered:
Problem
Using the fromFilename plugin on music files with blank Title tags, and choosing "Use as-is" options, does not update the tags.
Source file:
$ beet import "D:\BeetsTest"
Imported file:
I need to use the "Use as-is" option because none of the MusicBrainz candidates match.
Passing -A does the same.
I want it to update the Title tag from the filename, without then choosing a candidate for incorrectly updating the tags. I'm not sure what the intended behavior of the plug-in is here.
I've managed to achieve this by adding the following to the end of
filename_task
, however this applies the tags to both the source file and the imported file.I guess a better solution is to set the action of the
manipulate_files
task toaction.RETAG
, but I don't know how to edit subsequent tasks from the plug-in.Setup
My configuration (output of
beet config
) is:The text was updated successfully, but these errors were encountered: