{% extends "base.html" %} {% block title %}汽水任务{% endblock %} {% block content %}

批量作词

{% set categories = [] %} {% set ns = namespace(by_cat={}) %} {% for t in templates %} {% if t.category not in ns.by_cat %} {% set _ = ns.by_cat.update({t.category: []}) %} {% endif %} {% set _ = ns.by_cat[t.category].append(t) %} {% endfor %} {% for category, items in ns.by_cat.items() %}
{{ category }} {% if items|length > 1 %} {% endif %}
{% for t in items %} {% endfor %}
{% endfor %}

{% if is_authorized %}需要已配置 SmsForwarder 接收验证码。每首歌发行时会等待短信验证。{% else %}自动把导出的歌曲安排到后台静默流程自动对接抖音发行(免费版需前往「发行管理」手动操作)。{% endif %}

说明 每个模板内置 12-18 个随机变量(含乐器编排/声线质感/编排密度),同模板每次生成都不同。批量作词会按变量笛卡尔积均匀采样,并把组合直接写入 prompt,作曲模型读到风格描述时能落到具体音色。失败的歌词会自动重试一次。
{% if batches %}

批量任务

{% for b in batches %} {% endfor %}
ID 账号 模板 语言 话题 作词进度 作曲/导出 状态 创建时间
{{ b.id }} {{ b.account_name or '-' }} {{ b.template_display }} {{ b.language or '中文' }} {{ ('#' + b.hashtag) if b.hashtag else '-' }} {{ b.completed_count }}/{{ b.total_count }}{% if b.failed_count %} ({{ b.failed_count }}失败){% endif %} {% if b.auto_compose %}{{ b.composed_count or 0 }}曲 / {{ b.exported_count or 0 }}导出{% else %}-{% endif %} {{ b.status }} {{ b.created_at[:16] }}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}