{% extends 'base.html' %} {% load static %} {% block title %}I-Frame Gallery - {{ channel.name }} - Stream Processor{% endblock %} {% block page_title %}
I-Frame Gallery - {{ channel.name }}
{% endblock %} {% block content %}

I-Frame Gallery

Extracted frames from {{ channel.name }} stream segments

I-Frame Extraction

These frames are automatically extracted from stream segments for jingle detection and visual monitoring.

Total I-Frames

{{ total_iframes }}

Channel

{{ channel.name }}

Storage Path

{{ iframes_path }}

Extracted I-Frames

Sorted by newest first
{% if iframe_files %}
{% for iframe in iframe_files %}
I-Frame {{ iframe.filename }}

{{ iframe.filename }}

{{ iframe.size|filesizeformat }}

{% endfor %}
{% if is_paginated %}
{% if page_obj.has_previous %} Previous {% endif %} {% if page_obj.has_next %} Next {% endif %}
{% endif %}
{% else %}

No I-Frames found

No extracted frames are available for this channel yet.

{% endif %}
{% endblock %}