{% extends "base.html" %} {% block title %}Audio Transcriber — {{ settings.APP_NAME }}{% endblock %} {% block content %}
{% if status == "started" or status == "started-mus" %}
Transcribing…
{% endif %}

Audio Transcriber

Turn an audio or video file into MIDI (via Spotify Basic Pitch). Upload or pick a file from your bucket, then the worker produces a MIDI you can download. Video files get their audio extracted automatically.

Your audio

{% if audio_files %}
    {% for k in audio_files %}
  • {{ k }}
  • {% endfor %}
{% else %}

No audio files yet. Upload one below.

{% endif %}

Upload audio / video

Saved to {{ bucket }} under audio/…. MIDI = Basic Pitch (fast); Sheet music = MuScriptor (MIDI+MusicXML+PDF, slower).

Transcriptions

{% if transcriptions %}
    {% for t in transcriptions %}
  • {{ t }} Download
  • {% endfor %}
{% else %}

Nothing transcribed yet.

{% endif %}
{% if task %} {% endif %} {% endblock %}