← back ↑ albums
{% set art_url = album|album_art_url %}
{% if art_url %} {% else %} {% endif %}

{{ album.album|display_album_title }}{% if album_year_text %}{{ album_year_text }}{% endif %}

{% if album_artist_parts or album_genre_parts %}
    {% if album_artist_parts %}
  • {% for part in album_artist_parts %}{{ part }}{% if not loop.last %}, {% endif %}{% endfor %}
  • {% endif %} {% if album_genre_parts %}
  • {% for part in album_genre_parts %}{{ part }}{% if not loop.last %}, {% endif %}{% endfor %}
  • {% endif %}
{% endif %} {% if album_style_parts %}
  • {% for part in album_style_parts %}{{ part }}{% if not loop.last %}, {% endif %}{% endfor %}
{% endif %}
{% set has_multiple_musicbrainz_groups = album_musicbrainz_sections|length > 1 %} {% set album_level_fields_musicbrainz_disabled = ( not has_multiple_musicbrainz_groups and album_musicbrainz_sections|length == 1 and ( album_musicbrainz_sections[0].musicbrainz_url or album_musicbrainz_release_mbid or album_musicbrainz_release_group_mbid ) ) %}

These actions queue jobs that edit the metadata stored in the audio files on disk. On rescan, Kukicha will extract the updated metadata into Kukicha's library database.

MusicBrainz IDs

Saves the release or release-group link for this album and writes MusicBrainz-derived album artist, album, and genre tags to the matching audio files. Clearing the URL removes the saved IDs without rewriting tags.

{% for section in album_musicbrainz_sections %} {% set musicbrainz_value = section.musicbrainz_url %} {% if not musicbrainz_value and album_musicbrainz_sections|length == 1 and album_musicbrainz_release_mbid %} {% set musicbrainz_value = "https://musicbrainz.org/release/" ~ album_musicbrainz_release_mbid %} {% elif not musicbrainz_value and album_musicbrainz_sections|length == 1 and album_musicbrainz_release_group_mbid %} {% set musicbrainz_value = "https://musicbrainz.org/release-group/" ~ album_musicbrainz_release_group_mbid %} {% endif %}
{% if section.label or section.meta %}
{% if section.label %}

{{ section.label }}

{% endif %} {% if section.meta %}
    {% for item in section.meta %}
  • {{ item }}
  • {% endfor %}
{% endif %}
{% endif %} {% for item in section.tracks %} {% endfor %}
{% endfor %}
{% if album_tag_edit_section is defined and not has_multiple_musicbrainz_groups %}

Update Audio Tags

Writes the album, album artist, genre, track artist, track number, and title fields directly to these audio files.

Album, album artist, and genre are disabled because the MusicBrainz URL will write those album-level tags.

{% set section = album_tag_edit_section %}
{% for item in section.tracks %} {% set track = item.track %}
{% if track.track_number %}{{ track.track_number }}. {% endif %}{{ track.display_title }} {{ track.path }}
{% endfor %}
{% endif %}