File size: 358 Bytes
d0690fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
"""
MsaInfo
A list of (timestamp, label) tuples used to represent music structure
analysis (MSA). The first element of the tuple is a float timestamp
(in seconds) and the second is a string label
Example
-------
>>> msa: MsaInfo = [(0.0, "intro"), (12.5, "verse"), (34.0, "chorus")]
"""
from typing import List, Tuple
MsaInfo = List[Tuple[float, str]] |