{% extends "base.html" %} {% load static %} {% block title %}Jingle Detections - Stream Processor{% endblock %} {% block page_title %} Jingle Detections {% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Jingle Detections

Monitor and analyze jingle detection results from stream processing

About Jingle Detections

Jingle detections are individual instances where the AI system has identified a jingle template match in the stream content. Each detection includes confidence scores, timing information, and extracted frames for verification.

Total Detections

{{ detections|length|default:0 }}

Confirmed

{% for detection in detections %}{% if detection.is_confirmed %}{{ forloop.counter0|add:1 }}{% endif %}{% empty %}0{% endfor %}

Avg Confidence

{% if detections %} {% for detection in detections %}{{ detection.confidence_score|floatformat:3 }}{% if not forloop.last %},{% endif %}{% endfor %} {% else %} 0.000 {% endif %}

Templates Used

{{ templates|length|default:0 }}

Filters
Clear Filters
Detection Results
{% if detections %}
{% for detection in detections %} {% endfor %}
Template Session Detection Time Confidence Status Frame Actions
{{ detection.template.name }}
{{ detection.template.category|capfirst }}
{{ detection.session.channel.name }}
{{ detection.detection_time|date:"M d, Y" }}
{{ detection.detection_time|time:"H:i:s" }}
{{ detection.confidence_score|floatformat:3 }}
{% if detection.confidence_score >= 0.9 %} High {% elif detection.confidence_score >= 0.7 %} Medium {% else %} Low {% endif %}
{% if detection.is_confirmed %} Confirmed {% else %} Pending {% endif %} {% if detection.frame_path %} {% else %} {% endif %}
{% if not detection.is_confirmed %} {% endif %}
{% if is_paginated %} {% endif %} {% else %}
No Detections Found

No jingle detections have been recorded yet.

{% endif %}
{% endblock %}