{% extends "base.html" %} {% block title %}Match Brief β€” Pitchkit{% endblock %} {% block content %}
{% if error %}
{{ error }}
{% endif %} {% if notice %}
{{ notice }}
{% endif %} {% if catalog_total and catalog_analyzed < catalog_total %}
{{ catalog_analyzed }} of {{ catalog_total }} songs analyzed. Matching only searches analyzed songs β€” more will appear as analysis continues. View analysis progress β†’
{% endif %}
{% if brief_text and results %}
Found {{ results|length }} matching song{% if results|length != 1 %}s{% endif %}
{% endif %}
{% if results %}
{{ results|length }} matches
{% for score, reasons, row in results %} {% if row|length >= 20 %} {% set song_id, filename, title, artist, album, duration, bpm, key_, energy, brightness, danceability, lyrics, lyrics_source, themes, genre_tags, mood_tags, sound_desc, notes, vocal_gender, has_vocals = row %} {% else %} {% set song_id, filename, title, artist, album, duration, bpm, key_, energy, brightness, danceability, lyrics, lyrics_source, themes, genre_tags, mood_tags, sound_desc, notes = row %} {% set vocal_gender = none %} {% endif %}
{{ title or filename|replace('.mp3','')|replace('.wav','')|replace('.aif','') }}
{{ artist or "β€”" }}
{% if genre_tags or mood_tags or vocal_gender %}
{% if genre_tags %}{% for t in genre_tags.split(',')[:3] %}{{ t.strip() }}{% endfor %}{% endif %} {% if mood_tags %}{% for t in mood_tags.split(',')[:2] %}{{ t.strip() }}{% endfor %}{% endif %} {% if vocal_gender == 'female' %}♀ female vocal{% endif %} {% if vocal_gender == 'male' %}β™‚ male vocal{% endif %}
{% endif %} {% if reasons %}
{% for r in reasons[:3] %}{{ r }}{% endfor %}
{% endif %}
{% if bpm %}
{{ bpm|int }} BPM
{% endif %} {% if key_ %}
{{ key_ }}
{% endif %}
{% endfor %}
{% elif brief_text %} {% if catalog_total and catalog_analyzed == 0 %}

None of your {{ catalog_total }} songs have been analyzed yet.

Matching reads BPM, energy, mood and genre from analysis, so there's nothing to search against yet. Results will start appearing as soon as songs are processed.

Start analysis β†’

{% elif catalog_total and catalog_analyzed < catalog_total %}

{{ catalog_analyzed }} of {{ catalog_total }} songs are ready so far.

Matching only searches analyzed songs, and none of the {{ catalog_analyzed }} analyzed so far fit this brief. More songs will appear here as analysis continues β€” try again in a few minutes.

View analysis progress β†’

{% else %}

No matches found. Try rephrasing the brief or using different genre/mood keywords.

{% endif %} {% else %}

Paste a brief on the left and hit Find Matching Songs.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}