{% extends "base.html" %} {% block content %}

Videos

블로그 포스트 → 1~2분 뉴스 비디오 → YouTube ({{ channel_name }}). 기본 공개 상태: {{ default_privacy }}, 일일 업로드 한도 {{ daily_cap }}건. {% if not enabled %} ⚠ 비디오 생성 비활성화됨. Settings에서 활성화하세요. {% endif %}

reference voice: {{ reference_voice_path or '(base voice)' }}
auto upload: {{ 'on' if auto_upload else 'off' }}
{% if missing %}

비디오가 아직 생성되지 않은 포스트 ({{ missing|length }})

{% endif %} {% if videos %}
{% for v in videos %}
{% if v.thumb_url %} thumbnail {% else %}
no thumbnail
{% endif %}
{% if v.duration %}{{ '%0.0f' % v.duration }}s{% else %}--{% endif %}
{% set color = 'bg-emerald-600' if v.status in ('uploaded','success') else 'bg-amber-500' if v.status == 'running' else 'bg-rose-600' if v.status == 'failed' else 'bg-slate-500' %} {{ v.status }}
{{ v.title }}
{{ v.slug }}
{% if v.youtube_url %}
{{ v.youtube_url }} ({{ v.youtube_privacy or 'unlisted' }})
{% endif %} {% if v.last_error %}
{{ v.last_error }}{% if v.fail_count %} (fail #{{ v.fail_count }}){% endif %}
{% endif %}
{% if v.status in ('success','uploaded','failed') %} {% endif %} {% if v.status == 'success' and not v.youtube_video_id %} {% endif %} {% if v.youtube_video_id and v.youtube_privacy == 'unlisted' %} {% elif v.youtube_video_id and v.youtube_privacy == 'public' %} {% endif %}
{% if v.status in ('success','uploaded') and v.id %} {% endif %}
{% endfor %}
{% else %}
아직 생성된 비디오가 없습니다. 위의 포스트 목록에서 "Generate video"를 눌러 시작하거나, Settings에서 비디오 생성을 활성화하면 daemon이 자동 실행합니다.
{% endif %} {% endblock %}