{% extends "base.html" %} {% set active_nav = "explore" %} {% block title %}Voxint — explore{% endblock %} {% block cb_breadcrumb %}explore{% endblock %} {% block cb_summary %}{{ stats.total_runs }} recording{{ "s" if stats.total_runs != 1 else "" }} · {{ "%.0f"|format(stats.total_hours) }} hour{{ "s" if (stats.total_hours | round(0) | int) != 1 else "" }}{% endblock %} {% block body %}

Explore

{% if projects %} {% endif %} {% if speakers %} {% endif %}
{% if query %}
{{ total }} match{{ "es" if total != 1 }} for "{{ query|e }}" {% if total > 0 %} Export CSV{% if total > 500 %} (first 500){% endif %} {% endif %}
{% endif %}
{% if not query %}

Search finds every occurrence across all your transcripts, with context, speakers, and timestamps.

{% if top_terms %}

Try: {% for t in top_terms %} {{ t.term }}{% if not loop.last %} · {% endif %} {% endfor %}

{% endif %}

After searching, you will see a word cloud, a meaning map, and concordance matches you can export.

{% elif total == 0 %}

No matches for "{{ query|e }}".

{% else %}
{% for row in rows %} {% endfor %}
Context Match Context Source
{{ row.left_context }} {{ row.hit }} {{ row.right_context }} {% if row.speaker_name %}{{ row.speaker_name }}{% endif %} {{ row.media_title }} · {{ "%.1f"|format(row.start_seconds) }}s {% if row.suspect %}suspect{% endif %} {% if row.confidence is not none and row.confidence < 0.7 %}low conf{% endif %}
{% if total > page_size %} {% endif %} {% endif %}
{% endblock %}