Spaces:
Running on Zero
Running on Zero
File size: 10,158 Bytes
39c83e4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 | from __future__ import annotations
from bisect import bisect_right
from collections import defaultdict, deque
from pathlib import Path
from typing import Any
import gradio as gr
import mido
ROOT = Path(__file__).resolve().parent
FRONTEND = ROOT / "frontend"
MAX_FILE_BYTES = 5 * 1024 * 1024
MAX_NOTES = 50_000
TRACK_COLORS = [
"#8b5cf6",
"#22d3ee",
"#fb7185",
"#fbbf24",
"#34d399",
"#60a5fa",
"#f472b6",
"#a3e635",
"#fb923c",
"#c084fc",
]
PROGRAM_FAMILIES = [
"Piano",
"Percussions chromatiques",
"Orgue",
"Guitare",
"Basse",
"Cordes",
"Ensemble",
"Cuivres",
"Anches",
"Bois",
"Synthé lead",
"Synthé pad",
"Effets synthétiques",
"Instruments ethniques",
"Percussions",
"Effets sonores",
]
def _read_frontend(name: str) -> str:
return (FRONTEND / name).read_text(encoding="utf-8")
from gradio.events import Dependency
class MidiPlayer(gr.HTML):
"""A browser-synthesized MIDI player built with Gradio's custom HTML API."""
def __init__(self, value: Any | None = None, **kwargs: Any) -> None:
initial_value = value or {
"status": "empty",
"message": "Déposez un fichier MIDI pour commencer.",
}
super().__init__(
value=initial_value,
html_template=_read_frontend("player.html"),
css_template=_read_frontend("player.css"),
js_on_load=_read_frontend("player.js"),
apply_default_css=False,
min_height=680,
**kwargs,
)
def api_info(self) -> dict[str, Any]:
return {"type": "object"}
from typing import Callable, Literal, Sequence, Any, TYPE_CHECKING
from gradio.blocks import Block
if TYPE_CHECKING:
from gradio.components import Timer
from gradio.components.base import Component
class TempoMap:
def __init__(self, events: list[tuple[int, int]], ticks_per_beat: int) -> None:
if ticks_per_beat <= 0:
raise ValueError("Les fichiers MIDI avec division temporelle SMPTE ne sont pas pris en charge.")
collapsed: dict[int, int] = {0: 500_000}
for tick, tempo in sorted(events):
collapsed[tick] = tempo
self.ticks_per_beat = ticks_per_beat
self.segments: list[tuple[int, float, int]] = []
elapsed = 0.0
previous_tick = 0
previous_tempo = collapsed[0]
for tick, tempo in sorted(collapsed.items()):
if tick > 0:
elapsed += mido.tick2second(
tick - previous_tick,
ticks_per_beat,
previous_tempo,
)
self.segments.append((tick, elapsed, tempo))
previous_tick = tick
previous_tempo = tempo
self._ticks = [segment[0] for segment in self.segments]
def seconds(self, tick: int) -> float:
index = max(0, bisect_right(self._ticks, tick) - 1)
start_tick, start_seconds, tempo = self.segments[index]
return start_seconds + mido.tick2second(
tick - start_tick,
self.ticks_per_beat,
tempo,
)
def _display_name(track: mido.MidiTrack, index: int) -> str:
for message in track:
if message.type == "track_name" and message.name.strip():
return message.name.strip()[:80]
return f"Piste {index + 1}"
def _instrument_name(programs: set[int], channels: set[int]) -> str:
if 9 in channels:
return "Percussions"
if not programs:
return "Instrument MIDI"
names = list(dict.fromkeys(PROGRAM_FAMILIES[program // 8] for program in sorted(programs)))
return ", ".join(names[:2]) + ("…" if len(names) > 2 else "")
def parse_midi(path: str | Path, original_name: str | None = None) -> dict[str, Any]:
file_path = Path(path)
midi = mido.MidiFile(file_path, clip=True)
if midi.type == 2:
raise ValueError("Les fichiers MIDI type 2 (séquences asynchrones) ne sont pas pris en charge.")
tempo_events: list[tuple[int, int]] = []
time_signatures: list[dict[str, int]] = []
global_end_tick = 0
title = ""
for track in midi.tracks:
tick = 0
for message in track:
tick += message.time
if message.type == "set_tempo":
tempo_events.append((tick, message.tempo))
elif message.type == "time_signature":
time_signatures.append(
{
"tick": tick,
"numerator": message.numerator,
"denominator": message.denominator,
}
)
elif message.type == "track_name" and not title and message.name.strip():
title = message.name.strip()[:120]
global_end_tick = max(global_end_tick, tick)
tempo_map = TempoMap(tempo_events, midi.ticks_per_beat)
tracks: list[dict[str, Any]] = []
total_notes = 0
min_pitch = 127
max_pitch = 0
for source_index, track in enumerate(midi.tracks):
tick = 0
programs_by_channel: defaultdict[int, int] = defaultdict(int)
active: defaultdict[tuple[int, int], deque[tuple[int, int, int]]] = defaultdict(deque)
raw_notes: list[tuple[int, int, int, int, int, int]] = []
channels: set[int] = set()
programs: set[int] = set()
for message in track:
tick += message.time
if message.type == "program_change":
programs_by_channel[message.channel] = message.program
programs.add(message.program)
elif message.type == "note_on" and message.velocity > 0:
channel = message.channel
program = programs_by_channel[channel]
active[(channel, message.note)].append((tick, message.velocity, program))
channels.add(channel)
programs.add(program)
elif message.type in {"note_off", "note_on"}:
key = (message.channel, message.note)
if active[key]:
start_tick, velocity, program = active[key].popleft()
raw_notes.append(
(start_tick, max(tick, start_tick + 1), message.note, velocity, message.channel, program)
)
for (channel, pitch), pending in active.items():
while pending:
start_tick, velocity, program = pending.popleft()
raw_notes.append(
(start_tick, max(global_end_tick, start_tick + 1), pitch, velocity, channel, program)
)
if not raw_notes:
continue
raw_notes.sort(key=lambda note: (note[0], note[2]))
track_index = len(tracks)
notes = []
for start_tick, end_tick, pitch, velocity, channel, program in raw_notes:
start = tempo_map.seconds(start_tick)
end = tempo_map.seconds(end_tick)
notes.append(
{
"s": round(start, 6),
"e": round(max(end, start + 0.01), 6),
"p": pitch,
"v": velocity,
"c": channel,
"g": program,
"t": track_index,
}
)
min_pitch = min(min_pitch, pitch)
max_pitch = max(max_pitch, pitch)
total_notes += len(notes)
if total_notes > MAX_NOTES:
raise ValueError(f"Le fichier dépasse la limite de {MAX_NOTES:,} notes.")
tracks.append(
{
"index": track_index,
"source_index": source_index,
"name": _display_name(track, source_index),
"color": TRACK_COLORS[track_index % len(TRACK_COLORS)],
"instrument": _instrument_name(programs, channels),
"channels": sorted(channel + 1 for channel in channels),
"notes": notes,
}
)
if not tracks:
raise ValueError("Ce fichier MIDI ne contient aucune note lisible.")
duration = max(
tempo_map.seconds(global_end_tick),
max(note["e"] for track in tracks for note in track["notes"]),
)
initial_tempo = tempo_map.segments[0][2]
safe_name = Path(original_name or file_path.name).name[:160]
return {
"status": "ready",
"file_name": safe_name,
"title": title or Path(safe_name).stem,
"format": midi.type,
"ticks_per_beat": midi.ticks_per_beat,
"duration": round(duration, 6),
"bpm": round(mido.tempo2bpm(initial_tempo), 1),
"tempo_changes": len(tempo_map.segments),
"time_signature": (
f"{time_signatures[0]['numerator']}/{time_signatures[0]['denominator']}"
if time_signatures
else "—"
),
"track_count": len(tracks),
"note_count": total_notes,
"pitch_min": min_pitch,
"pitch_max": max_pitch,
"tracks": tracks,
}
def load_midi(value: Any) -> dict[str, Any]:
try:
if not isinstance(value, dict) or value.get("status") != "uploaded":
raise ValueError("Aucun fichier MIDI valide n’a été transmis.")
path = Path(str(value.get("path", "")))
original_name = Path(str(value.get("name", path.name))).name
if path.suffix.lower() not in {".mid", ".midi"} and Path(original_name).suffix.lower() not in {
".mid",
".midi",
}:
raise ValueError("Formats acceptés : .mid et .midi.")
if not path.is_file():
raise ValueError("Le fichier uploadé est introuvable.")
if path.stat().st_size > MAX_FILE_BYTES:
raise ValueError("Le fichier dépasse la limite de 5 Mo.")
return parse_midi(path, original_name)
except (EOFError, OSError, ValueError, mido.KeySignatureError) as exc:
return {
"status": "error",
"message": str(exc) or "Impossible de lire ce fichier MIDI.",
} |