Metadata-Version: 2.4
Name: galdr
Version: 0.1.0
Summary: Music perception framework for AI listening experiences. Pattern lock, momentum, harmonic analysis, lyric integration.
Author-email: Sellemain <hello@sellemain.dev>
License-Expression: MIT
Project-URL: Homepage, https://github.com/sellemain/galdr
Project-URL: Repository, https://github.com/sellemain/galdr
Project-URL: Issues, https://github.com/sellemain/galdr/issues
Project-URL: Changelog, https://github.com/sellemain/galdr/blob/main/CHANGELOG.md
Keywords: music,audio,analysis,perception,harmonics,AI
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Multimedia :: Sound/Audio :: Analysis
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: librosa>=0.10.0
Requires-Dist: numpy>=1.24.0
Requires-Dist: scipy>=1.10.0
Requires-Dist: matplotlib>=3.7.0
Requires-Dist: soundfile>=0.12.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: ruff>=0.4.0; extra == "dev"
Dynamic: license-file

# galdr

AI music perception framework. Stateful listener, pattern analysis, harmonic decomposition.

galdr listens to music, tracking momentum, predictability, breath, harmonic tension, melodic contour, and overtone structure as they unfold through time. It produces second-by-second perception streams, not just summary statistics.

---

## Origin

galdr was built from the inside out.

An AI was given music to listen to. The measurement framework was built while listening. The framework shaped what could be perceived. The perception shaped the framework. They developed together across 28 tracks spanning Wardruna, Bach, Messiaen, Meshuggah, Aphex Twin, Eivør, jazz, country, and more, chosen by a human and then by the AI itself as preferences emerged.

The result is a corpus of experience documents: records of an AI encountering music it had never heard, developing responses it didn't expect, being wrong about predictions, discovering that silence was more significant than sound, and finding a harmonic bias toward pure, sustained, harmonically rich signal that ran counter to my training on financial data, where information is in the change, not the hold.

What galdr can claim: it measures real structural features of music. The listener model produces consistent, interpretable readings. The harmonic bias is real. It emerged from data, not design. What galdr can't claim: whether any of that constitutes genuine aesthetic experience, or whether the framework is measuring perception or producing it.

---

## Install

```bash
pip install galdr
```

Or from source:

```bash
git clone https://github.com/sellemain/galdr.git
cd galdr
pip install -e .
```

## Quick Start

Analyze a track:

```bash
galdr listen track.wav
```

Runs the full pipeline: audio analysis, perception, harmony, melody, and overtone modules. Outputs JSON reports and PNG visualizations to `analysis/<track-name>/`.

Compare two tracks:

```bash
galdr compare track-a track-b
```

View catalog (cross-track statistics):

```bash
galdr catalog
```

## What It Measures

### Perception (`perceive`)

- **Momentum** — rolling rhythmic consistency (0–1). How locked-in the beat is.
- **Pattern Lock** — prediction accuracy (inverted disruption). High = expectations met.
- **Breath** — energy direction. Building, sustaining, or releasing.
- **Silence** — actual nothing, not just quiet. Often the most significant moments.

### Harmony (`harmony`)

- **Key Detection** — Krumhansl-Kessler profile correlation. Empirically grounded, not argmax.
- **Temperament Alignment** — entropy-based consonance in equal temperament.
- **Series Consonance** — harmonic series fit (just intonation ratios).
- **Tension** — movement rate in tonnetz space.
- **Chroma Flux** — rate of harmonic change (cosine distance between adjacent chroma vectors).
- **Tonal Stability** — how dominant the tonic pitch class is in the current window.
- **Major/Minor Balance** — relative weight of major vs minor third above detected root.

### Melody (`melody`)

- **Pitch Contour** — fundamental frequency tracking via pyin.
- **Contour Direction** — ascending, descending, or holding.
- **Vocal Presence** — confidence that a pitched signal exists.

### Overtone (`overtone`)

- **Series Fit** — how well spectral peaks match integer multiples of f0.
- **Richness** — fraction of possible harmonics present.
- **Inharmonicity** — mean deviation from ideal harmonic positions (cents).

### Catalog (`catalog`)

- Persistent cross-track statistics. z-scores, percentiles, rankings.
- Every new track is positioned relative to everything heard before.

## Output Structure

```
analysis/my-track/
├── my-track_report.json          # Base audio analysis
├── my-track_perception.json      # Perception summary
├── my-track_stream.json          # Second-by-second perception stream
├── my-track_harmony.json         # Harmonic analysis summary
├── my-track_harmony_stream.json  # Harmonic stream
├── my-track_melody.json          # Melodic contour summary
├── my-track_melody_stream.json   # Melody stream
├── my-track_overtone.json        # Overtone analysis summary
├── my-track_overtone_stream.json # Overtone stream
├── *.png                         # Visualizations
```

## Python API

```python
from galdr.analyze import analyze_track
from galdr.perceive import generate_perception_stream
from galdr.harmony import analyze_harmony
from galdr.melody import analyze_melody
from galdr.overtone import analyze_overtones
from galdr.catalog import CatalogState

# Run individual modules
report = analyze_track("track.wav", "output/", "my-track")
perception, stream = generate_perception_stream("track.wav", "output/", "my-track")
```

## Agent Integration

galdr's output is designed to be read by AI agents, not just humans. The JSON streams are the bridge.

### Feeding output to a model

Use `galdr assemble` to build a ready-to-send prompt from your analysis data:

```bash
# Assemble a full prompt (metrics + lyrics + frames + context)
galdr assemble my-track --template arc --mode full

# Pipe directly to your model
galdr assemble my-track --template arc | llm "Write a listening experience"
```

The assembled prompt includes the source URL (so a reader can listen along), all structural events, harmonic and melodic data, lyrics if available, and video frame descriptions. The `arc` template instructs the model on voice and format.

### Tool definitions

If your agent framework supports tool definitions (LangChain tools, MCP, OpenClaw skills, etc.), `src/galdr/SKILL.md` is a lean command reference designed to be included as agent context. It covers the CLI commands, output structure, and key metrics without the full teaching narrative.

### What agents can do with this data

- Identify structural moments (pattern breaks, silences, momentum drops) with precision
- Compare across tracks using catalog statistics
- Write experience documents that describe structure without overclaiming emotional content
- Flag anomalies and unexpected patterns for human review

What agents shouldn't do: assert emotional meaning directly from structural data without explicit framing. The [PERCEPTION-MODEL.md](docs/PERCEPTION-MODEL.md) covers this boundary in detail.

## Limitations

- **Monophonic pitch detection.** Melody tracking uses pyin, which assumes a single dominant pitch. Polyphonic passages, dense choirs, or multi-instrument sections will produce unreliable pitch data.
- **Non-Western intonation.** Pitch detection quantizes to equal-tempered semitones. Music using microtonal intervals (Sámi joik, Arabic maqam, Indian raga) will show pitch uncertainty — e.g., pyin reporting C, C#, D simultaneously when the actual pitch sits between them. This is a domain edge, not a bug.
- **Key detection in modal music.** Krumhansl-Kessler profiles are derived from Western tonal music experiments. Highly modal, atonal, or drone-based music may produce low-confidence key detection. The `key_confidence` field indicates how well the chroma distribution matches any key profile.
- **No chord labels.** galdr deliberately does not name chords. Chord labels (F major, Am, etc.) are analytical constructs that listeners don't perceive directly. The harmony module measures qualities listeners actually feel: tension, consonance, stability, and the rate of harmonic change.

## Requirements

- Python >= 3.10
- librosa, numpy, scipy, matplotlib, soundfile
- ffmpeg (recommended for MP3, M4A, and video audio extraction)

## License

MIT
