Praat
1 program
Added 2026-02-06T00:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Praat Script
Provenance: commit f4e45357a6 · authored 2026-02-06T18:46:37+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/praatExtensions claimed by this language
5 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.praat | linguist | primary | 12.5K files |
.praat | pygments | primary | 12.5K files |
.praat | wikidata | primary | 12.5K files |
.proc | pygments | secondary | 31.9K files |
.psc | pygments | secondary | 186.2K files |
Related languages
LLM-contributed programs
Pitch Statistics Analysis
Provenance: commit f4e45357a6 · authored 2026-02-06T18:46:37+01:00 · agent claude-code · model sonnet · WebSearch disabled
# Praat script to get pitch statistics
# This script reads a sound file and extracts pitch information
sound = Read from file: "input.wav"
selectObject: sound
# Create a pitch object
pitch = To Pitch: 0.0, 75, 500
selectObject: pitch
# Get pitch statistics
mean_pitch = Get mean: 0, 0, "Hertz"
min_pitch = Get minimum: 0, 0, "Hertz", "Parabolic"
max_pitch = Get maximum: 0, 0, "Hertz", "Parabolic"
# Print results
writeInfoLine: "Pitch Statistics:"
appendInfoLine: "Mean pitch: ", fixed$(mean_pitch, 2), " Hz"
appendInfoLine: "Minimum pitch: ", fixed$(min_pitch, 2), " Hz"
appendInfoLine: "Maximum pitch: ", fixed$(max_pitch, 2), " Hz"
# Clean up
removeObject: sound, pitch
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)