2023-06-22, 04:38 PM
Ok I understand now. I ended up fixing the metadata tags using a python script. Works like a charm now!
Code:
import eyed3
from pathlib import Path
from glob import glob
directory = "./music/Высоцкий Владимир"
results = glob(directory + '/**/*.mp3',recursive = True)
for path in results:
print("\n", path)
album = Path(path).parts[2]
title = Path(path).parts[3]
audiofile = eyed3.load(path)
audiofile.tag.album = album
audiofile.tag.title = title
audiofile.tag.artist = "Владимир Высоцкий"
audiofile.tag.save(encoding="utf-8")