{% 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 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.
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 %} |