Изменение логики выставления даты для .m4a

This commit is contained in:
Lev Plyusnin 2025-05-04 09:32:14 +07:00
parent 661e94ee77
commit 6b115c9b41
No known key found for this signature in database
GPG key ID: 21C6C2C9C0A4460D
2 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "yandex-music-downloader"
version = "3.4.6b0"
version = "3.4.6b1"
description = "Загрузчик музыки с сервиса Яндекс.Музыка"
requires-python = ">=3.9"
readme = "README.md"

View file

@ -214,8 +214,8 @@ def set_tags(
tag["aART"] = album_artists_value
if iso8601_release_date is not None:
tag["rldt"] = iso8601_release_date
if release_year is not None:
tag["\xa9day"] = iso8601_release_date
elif release_year is not None:
tag["\xa9day"] = release_year
if track_number:
tag["trkn"] = [(track_number, 0)]