{% extends "base.html" %} {% block title %}Queue — Dionysis Media Video{% endblock %} {% block content %}

Dionysis Media Video

Combine an image and an audio file into a YouTube-ready 1080p MP4 video. Uploads are queued and processed in order.

New Job

{% if cfg.ADMIN_PASSWORD %}

This app is password protected. Add ?password=... to URLs or use /admin/login.

{% endif %}

Queue

{% if jobs %} {% for job in jobs %} {% endfor %}
#ID Title Status Created Updated Actions
#{{ job.id }} {{ job.title }} {% if job.status == 'error' %} {{ job.status }} {% else %} {{ job.status }} {% endif %} {{ job.created_at }} {{ job.updated_at }} {% if job.status == 'complete' %} Download MP4 {% endif %} {% if job.status == 'error' %}
{% endif %}
{% else %}
No jobs yet. Upload an image and audio file above.
{% endif %}
{% endblock %}