Oral Tradition Preservation
구전 전통 보존
Less than 500 speakers estimated
추정 화자 500명 미만
Phoneme Inventory:
Consonants: /p, b, t, d, k, g, m, n, ŋ, f, v, s, z, ʃ, ʒ, h, l, r, j, w/
Vowels: /i, e, æ, a, ɔ, o, u, ə/
Diphthongs: /aɪ, aʊ, eɪ, oʊ/
Prosodic Features:
- Stress: Initial syllable (82% occurrence)
- Tone: Level (no lexical tone detected)
- Rhythm: Syllable-timed
Morphological Patterns:
- Agglutinative structure detected
- Average morphemes per word: 2.4
- Productive affixes: 15 prefixes, 23 suffixes
Total recordings: 1,247 | Storage: 45.6 GB | Last backup: 2 hours ago
총 녹음: 1,247개 | 저장소: 45.6 GB | 마지막 백업: 2시간 전
ID: LANG001-2025-0123 | Ainu folktale - "Kamuy Yukar" | Duration: 15:43 | Speaker: Elder Nakamura
ID: LANG001-2025-0122 | Choctaw conversation | Duration: 8:21 | Speaker: Community recording
ID: LANG001-2025-0121 | Manx song - "Arrane Oie Vie" | Duration: 3:55 | Speaker: Revival choir
ID: LANG001-2025-0120 | Livonian interview | Duration: 45:12 | Speaker: Last native speaker (1994)
ID: LANG001-2025-0119 | Cornish poetry reading | Duration: 6:38 | Speaker: Language learner
Supporting endangered and minority languages from all continents
모든 대륙의 멸종위기 및 소수 언어 지원
Current usage: 45/1000 requests
현재 사용량: 45/1000 요청
// JavaScript/Node.js
const WIA_LANG = require('@wia/lang-001');
const client = new WIA_LANG.Client({
apiKey: 'your-api-key-here',
region: 'global'
});
// Record and analyze endangered language
const recording = await client.record({
language: 'ainu',
format: 'flac',
sampleRate: 96000,
metadata: {
speaker: 'Elder Nakamura',
location: 'Hokkaido, Japan',
context: 'Traditional storytelling'
}
});
// Analyze phonetics
const analysis = await client.analyze(recording.id, {
features: ['phonemes', 'prosody', 'morphology'],
generateIPA: true
});
console.log('Detected phonemes:', analysis.phonemes);
console.log('IPA transcription:', analysis.ipa);
// Python
from wia_lang_001 import Client
client = Client(api_key='your-api-key-here')
# Upload to archive
result = client.archive.upload(
file_path='recording.flac',
language='che', # Cherokee
tags=['ceremonial', 'elder', 'prayer'],
metadata={
'speaker': 'Traditional leader',
'date': '2025-12-27',
'endangerment_level': 'vulnerable'
}
)
print(f'Archived as: {result.archive_id}')