-
Hi everyone! I discovered recently this wonderful piece of FOSS and I am very excited to migrate my current library to beets. I have been looking at the feasibility of this, and particularly at the best way to reproduce my file organisation with beets. I have discovered (from I understand that I thought flexible attributes could be a solution, using something like ffprobe -v 0 -select_streams a:0 -show_entries stream_tags=albumsort /path/to/file.ogg | grep TAG | sed "s/TAG:albumsort=//g" I guess I could write a shell script to loop over all files, read the tag with |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Good question! The way to add support for custom on-disk tags is to write a (very small) plugin that provides a media file specification: This way, you can provide beets field names for any metadata tags you like. |
Beta Was this translation helpful? Give feedback.
Good question! The way to add support for custom on-disk tags is to write a (very small) plugin that provides a media file specification:
https://beets.readthedocs.io/en/stable/dev/plugins.html#extend-mediafile
This way, you can provide beets field names for any metadata tags you like.