I’m not quite sure what you mean by reimporting the whole album together.
My config.yaml looks like this. It creates 2 folders because some tracks have higher samplerate.
item_fields:
my_samplerate: str(round(samplerate / 1000))
is_flac: 1 if format == "FLAC" else 0
is_album: 1 if albumtype.upper() == "ALBUM" else 0
multidisc: 1 if disctotal > 1 else 0
compilation_display: '''Soundtracks'' if albumtype.upper() == ''SOUNDTRACK'' else ''Compilations'''
#first_artist: albumartist.split(', ',1)[0:1][0]
album_fields:
fileformat: |
formatList = []
for item in items:
formatList.append(item.format.upper())
return formatList
av_bitrate: |
total = 0
for item in items:
total += item.bitrate
return str(round(total / len(items) / 1000))
paths:
default: '%the{$albumartist}/%if{$original_year,$original_year,0000} - $album%aunique{albumartist album year, albumtype label catalognum albumdisambig} [%ifdef{how,$how }%upper{$format}%if{$is_flac, $my_samplerate-$bitdepth, $av_bitrate}]/%if{$multidisc,$disc-}$track - $title'
albumtype:single: '%the{$albumartist}/Singles/%if{$original_year,$original_year,0000} - $album%aunique{albumartist album year, albumtype label catalognum albumdisambig} [%ifdef{how,$how }%upper{$format}%if{$is_flac, $my_samplerate-$bitdepth, $av_bitrate}]/%if{$multidisc,$disc-}$track - $title'
albumtype:ep: '%the{$albumartist}/EPs/%if{$original_year,$original_year,0000} - $album%aunique{albumartist album year, albumtype label catalognum albumdisambig} [%ifdef{how,$how }%upper{$format}%if{$is_flac, $my_samplerate-$bitdepth, $av_bitrate}]/%if{$multidisc,$disc-}$track - $title'
albumtype:soundtrack: Soundtracks/%if{$year,$year - ,%if{$original_year,$original_year - }}$album%aunique{} [%ifdef{how,$how }%upper{$format}%if{$is_flac, $my_samplerate-$bitdepth, $av_bitrate}]/%if{$multidisc,$disc-}$track - $title
comp: $compilation_display/%if{$year,$year - ,%if{$original_year,$original_year - }}$album%aunique{} [%ifdef{how,$how }%upper{$format}%if{$is_flac, $my_samplerate-$bitdepth, $av_bitrate}]/%if{$multidisc,$disc-}$track - $title
What would be the quickest fix for this? Can I tell beet to move files from one album in the other?