Questions about plugins and the beets DB #4498
-
I wrote a plugin to create par2 sets for each music file here. As it is now I think it performs these actions:
Can anyone verify that it does indeed do these things correctly? Also, while developing this plugin my library is now in a state where the file metadate is out of sync with the beets DB. This raises a few questions related to how I get out of this mess. Does the DB store all tags that plugins add to a file (such as the acousticbrainz tags)? Whew, I think that covers it. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The main commands for "synchronizing" the beets database with on-disk file metadata are |
Beta Was this translation helpful? Give feedback.
The main commands for "synchronizing" the beets database with on-disk file metadata are
beet write
(database -> file tags) andbeet update
(file tags -> database).