mirror of
https://github.com/beetbox/beets.git
synced 2026-01-07 16:34:45 +01:00
convert: write tags from library to copied files
This commit is contained in:
parent
02fd9bf809
commit
cf98bfcbe6
1 changed files with 4 additions and 3 deletions
|
|
@ -88,12 +88,13 @@ def convert_item(lib, dest_dir):
|
|||
util.copy(item.path, dest)
|
||||
else:
|
||||
encode(item.path, dest)
|
||||
item.path = dest
|
||||
item.write()
|
||||
|
||||
item.path = dest
|
||||
item.write()
|
||||
|
||||
artpath = lib.get_album(item).artpath
|
||||
if artpath and conf['embed']:
|
||||
_embed(artpath, [library.Item.from_path(dest)])
|
||||
_embed(artpath, [item])
|
||||
|
||||
|
||||
def convert_func(lib, config, opts, args):
|
||||
|
|
|
|||
Loading…
Reference in a new issue