{% extends "base.html" %} {% block title %}Catalog — Pitchkit{% endblock %} {% block content %}
{{ total }} song{% if total != 1 %}s{% endif %} in your library.
| Title | Artist | BPM | Key | Genre | Mood | Duration | |
|---|---|---|---|---|---|---|---|
|
{{ title or filename|replace('.mp3','')|replace('.wav','')|replace('.aif','')|replace('.aiff','') }}
{% if album %}{{ album }} {% endif %}
|
{{ artist or "—" }} | {% if bpm %}{{ bpm|int }}{% else %}—{% endif %} | {{ key_ or "—" }} | {% if genre_tags %} {% for t in genre_tags.split(',')[:2] %}{{ t.strip() }}{% endfor %} {% else %}—{% endif %} | {% if mood_tags %} {% for t in mood_tags.split(',')[:2] %}{{ t.strip() }}{% endfor %} {% else %}—{% endif %} | {% if duration %} {% set m = (duration|int) // 60 %}{% set s = (duration|int) % 60 %}{{ m }}:{{ "%02d"|format(s) }} {% else %}—{% endif %} | Details & Lyrics |
No songs found{% if search or genre or mood %} matching your filters{% endif %}.
{% if search or genre or mood %}Clear Filters{% endif %}