{% extends "base.html" %} {% block title %}Recipes - Art-DAG L1{% endblock %} {% block content %}

Recipes

Recipes define processing pipelines for audio and media. Each recipe is a DAG of effects.

{% if recipes %}
{% for recipe in recipes %}
{{ recipe.name }} {% if recipe.version %} v{{ recipe.version }} {% endif %}
{% if recipe.description %}

{{ recipe.description }}

{% endif %}
{{ recipe.step_count or 0 }} steps {% if recipe.last_run %} Last run: {{ recipe.last_run }} {% endif %}
{% if recipe.tags %}
{% for tag in recipe.tags %} {{ tag }} {% endfor %}
{% endif %}
{% if recipe.friendly_name %} {{ recipe.friendly_name }} {% else %} {{ recipe.recipe_id[:24] }}... {% endif %}
{% endfor %}
{% if has_more %}
Loading more...
{% endif %} {% else %}

No recipes available.

Recipes are S-expression files (.sexp) that define processing pipelines.

{% endif %}
{% endblock %}