-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable album art embedding #59
Comments
I think the convert.embed option is considered when a song is added to the alternative directory: https://github.com/geigerzaehler/beets-alternatives/blob/master/beetsplug/alternatives.py#L339 So yes, my expectation is that also beet alt update considers the convert.embed config option. Stepping back a little, I think it would be better (and easier to implement) to have a separate alternatives.name.embed option. Similar to the copy_album_art option I propose in #58. |
For me this seems to be the right way forward, too. |
Yeah, self._embed = config.get(dict).get(
'embed',
convert_plugin.config["embed"].get(bool)
) In fact, the I'll see if I can find some time to fix this, which could then serve as a starting point for your other PR. I won't be able to do so before the weekend, however. Another approach to the configuration might be to add an |
* copy-art: Introduce copy_album_art option Fix typo Introduce embed option. Solves geigerzaehler#59. Signed-off-by: Christopher Larson <[email protected]>
* kergoth-copy-art: Operate only on the albums which have files in the external COPY_ART for symlink views Use lexists in matched_album_action For copy_art, only include albums if they're the only album in the dest_dir For copy_art, only include albums if all the items share a dest_dir Fix an error with copy_album_art_pp Hack album art post processing. Introduce copy_album_art option Fix typo Introduce embed option. Solves geigerzaehler#59. Signed-off-by: Christopher Larson <[email protected]>
#53 is also related -- for |
This issue is follow-up for a question raised in #58.
I said:
@geigerzaehler answered:
The text was updated successfully, but these errors were encountered: