{% extends "base.html" %} {% from "_macros.html" import empty %} {% block title %}Collections — Video to LLM{% endblock %} {% block content %}

Collections

Videos you have already processed, put in an order you choose.

New collection
{% if collections %}
{% for collection in collections %} {{ "Split into parts" if collection.mode == "packs" else "One document" }} {{ collection.name }}

{{ collection.sources|length }} video{{ '' if collection.sources|length == 1 else 's' }} · {{ status.format_duration(collection.total_duration_seconds) }}

{% if collection.current_version %}built · version {{ collection.current_version }}{% else %}not built yet{% endif %} {% if collection.warning_count %} · {{ collection.warning_count }} thing(s) to know{% endif %}
{% endfor %}
{% else %}
{{ empty("No collections yet.", "A collection puts already-processed videos in an order you choose. Building one is free and takes seconds.") }}
{% endif %} {% endblock %}