🎥 YouTube Video Downloader

{% if downloads_enabled %}
{% else %}
Server-side downloads are disabled. To download videos, run this app locally with downloads enabled. See the project README for instructions.
{% endif %}

Downloading video... Please wait.

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% if downloads_enabled and downloads %}

📁 Downloaded Videos

{% for video in downloads %}
{{ video.name }} {{ video.size }}
{% endfor %}
{% endif %}