{% extends "base.html" %} {% block title %}{{ song.title or song.filename }} — Pitchkit{% endblock %} {% block content %}
{{ song.title or song.filename }}
{% if song.artist %}
{{ song.artist }}
{% endif %} {% if song.album %}
{{ song.album }}
{% endif %}
{% if song.bpm and song.bpm != '0' and song.bpm != 0 %} ♩ {{ song.bpm|int }} BPM {% endif %} {% if song.key %}{{ song.key }}{% endif %} {% if song.energy %} {% set e = song.energy|float %} {% if e > 0.65 %}High energy{% elif e < 0.4 %}Chill{% else %}Mid energy{% endif %} {% endif %} {% if song.danceability %} {% set d = song.danceability|float %} {% if d > 0.6 %}Danceable{% endif %} {% endif %}
{% if song.genre_tags %}
Genre
{{ song.genre_tags }}
{% endif %} {% if song.mood_tags %}
Mood
{{ song.mood_tags }}
{% endif %} {% if song.themes %}
Themes
{{ song.themes }}
{% endif %} {% if song.sound_desc %}
Sound
{{ song.sound_desc }}
{% endif %} {% if song.notes %}
Notes
{{ song.notes }}
{% endif %} {% if song.duration %}
Duration
{% set dur = song.duration|float|int %} {{ '%d:%02d'|format(dur // 60, dur % 60) }}
{% endif %} {% if song.lyrics_source %}
Lyrics source
{{ song.lyrics_source }}
{% endif %}
{% if song.lyrics %}
Lyrics
Download .txt
{{ song.lyrics }}
{% else %}
No lyrics yet for this song.
Run Analyze Catalog with Whisper enabled to auto-transcribe vocals.
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}