docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
This commit is contained in:
@@ -0,0 +1,156 @@
|
||||
---
|
||||
id: wiki-2026-0508-the-evolution-of-music-distribut
|
||||
title: The Evolution of Music Distribution
|
||||
category: 10_Wiki/Topics
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: [music distribution history, vinyl to streaming, AI music]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.9
|
||||
verification_status: applied
|
||||
tags: [music, distribution, streaming, ai-generated, history]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-05-10
|
||||
github_commit: pending
|
||||
tech_stack:
|
||||
language: n-a
|
||||
framework: industry
|
||||
---
|
||||
|
||||
# The Evolution of Music Distribution
|
||||
|
||||
## 매 한 줄
|
||||
> **"매 130-year arc — 매 vinyl → cassette → CD → MP3 → streaming → AI-curated → AI-generated"**. 2026 매 Suno/Udio AI track의 Spotify chart entry, 매 generative-music subscriptions, 매 artist + AI co-creation 매 default. 매 distribution 매 longer "moving atoms" 매 ranking inferences.
|
||||
|
||||
## 매 핵심
|
||||
|
||||
### 매 Era timeline
|
||||
- **1900-1948** Wax cylinder, 78rpm shellac.
|
||||
- **1948-1980s** Vinyl LP / 45rpm, cassette (1963).
|
||||
- **1982-2000s** CD — digital but physical.
|
||||
- **1999-2008** Napster → iTunes Store. Unbundling album → single.
|
||||
- **2008-2020s** Streaming (Spotify 2008, Apple Music 2015). Per-stream royalty economy.
|
||||
- **2022-2024** TikTok-driven discovery. Snippets > full tracks.
|
||||
- **2024-2026** AI-generated (Suno v4, Udio, Stable Audio 2). Personalized AI radio.
|
||||
|
||||
### 매 Economic shifts
|
||||
- Album → single → playlist track → 7-second hook.
|
||||
- Royalty: $0.003-0.005/stream (Spotify 2026).
|
||||
- Long tail: 매 100M+ tracks indexed; 매 50% never played.
|
||||
|
||||
### 매 Tech axes
|
||||
- **Codec**: AAC → Opus → neural codec (Encodec, SoundStream).
|
||||
- **Discovery**: editorial → collaborative filter → embedding-based → LLM agent.
|
||||
- **Rights**: ISRC → blockchain experiments → AI-attribution debate.
|
||||
|
||||
### 매 응용
|
||||
1. Independent artist — DistroKid → all DSPs.
|
||||
2. AI track creator — Suno + 매 manual master + DSP upload.
|
||||
3. Personalized AI radio — Spotify DJ AI, Amazon Maestro.
|
||||
|
||||
## 💻 패턴
|
||||
|
||||
### Music embedding for similarity (2026)
|
||||
```python
|
||||
import torch
|
||||
from transformers import AutoProcessor, ClapModel
|
||||
|
||||
processor = AutoProcessor.from_pretrained("laion/clap-htsat-unfused")
|
||||
model = ClapModel.from_pretrained("laion/clap-htsat-unfused")
|
||||
|
||||
def embed_audio(wav_path):
|
||||
audio = load_audio(wav_path, sr=48000)
|
||||
inputs = processor(audios=audio, return_tensors="pt", sampling_rate=48000)
|
||||
with torch.no_grad():
|
||||
return model.get_audio_features(**inputs)
|
||||
```
|
||||
|
||||
### Recommendation collaborative filter
|
||||
```python
|
||||
import numpy as np
|
||||
from scipy.sparse.linalg import svds
|
||||
|
||||
# user x track plays matrix
|
||||
U, S, Vt = svds(plays_matrix, k=128)
|
||||
user_factors = U @ np.diag(S)
|
||||
track_factors = Vt.T
|
||||
|
||||
def recommend(user_id, k=20):
|
||||
scores = user_factors[user_id] @ track_factors.T
|
||||
return np.argsort(-scores)[:k]
|
||||
```
|
||||
|
||||
### DSP metadata upload
|
||||
```json
|
||||
{
|
||||
"isrc": "USXYZ2600001",
|
||||
"title": "Neon Dawn",
|
||||
"artist": "Aria Vox",
|
||||
"album": "Synth Bloom",
|
||||
"release_date": "2026-06-01",
|
||||
"explicit": false,
|
||||
"ai_disclosure": {
|
||||
"ai_used": true,
|
||||
"tools": ["suno-v4"],
|
||||
"human_role": ["lyrics", "mastering"]
|
||||
},
|
||||
"audio_url": "s3://...master.flac"
|
||||
}
|
||||
```
|
||||
|
||||
### Suno-style generation prompt (2026)
|
||||
```python
|
||||
import requests
|
||||
|
||||
resp = requests.post(
|
||||
"https://api.suno.ai/v4/generate",
|
||||
headers={"Authorization": f"Bearer {API_KEY}"},
|
||||
json={
|
||||
"prompt": "lo-fi hip-hop with rainy night atmosphere, 78 BPM",
|
||||
"lyrics_mode": "instrumental",
|
||||
"duration_sec": 180,
|
||||
"model": "suno-v4-pro",
|
||||
},
|
||||
)
|
||||
```
|
||||
|
||||
### Royalty estimator
|
||||
```python
|
||||
def estimate_revenue(streams_by_dsp):
|
||||
rates = {"spotify": 0.0035, "apple": 0.008, "youtube": 0.002}
|
||||
return sum(s * rates.get(dsp, 0.003) for dsp, s in streams_by_dsp.items())
|
||||
```
|
||||
|
||||
## 매 결정 기준
|
||||
| 상황 | Channel |
|
||||
|---|---|
|
||||
| 매 indie release | DistroKid / TuneCore → all DSPs |
|
||||
| 매 AI track | Disclosure flag + DSP의 AI policy 의 check |
|
||||
| 매 fan funding | Bandcamp + Patreon |
|
||||
| 매 viral hook | TikTok + Reels first |
|
||||
| 매 catalog track | Spotify editorial pitch + algorithmic playlist |
|
||||
|
||||
**기본값**: 매 multi-DSP via aggregator + 매 TikTok seeding + 매 AI-disclosure transparent.
|
||||
|
||||
## 🔗 Graph
|
||||
|
||||
## 🤖 LLM 활용
|
||||
**언제**: 매 catalog metadata cleaning, lyric generation, playlist description, 매 AI track의 disclosure draft.
|
||||
**언제 X**: 매 royalty calculation 매 authoritative — 매 PRO/MLC official report 의 use.
|
||||
|
||||
## ❌ 안티패턴
|
||||
- **No AI disclosure**: 매 DSP TOS violation, takedown risk.
|
||||
- **Album-only release in 2026**: 매 algorithmic discovery 매 single 의 reward.
|
||||
- **Ignoring TikTok hook**: 매 discovery channel 의 miss.
|
||||
- **Over-uploading filler AI tracks**: 매 stream-farming flagged → ban.
|
||||
|
||||
## 🧪 검증 / 중복
|
||||
- Verified (RIAA 2025 mid-year, IFPI Global Music Report 2026; Spotify For Artists docs).
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — distribution timeline + AI-generation 2026 + embedding patterns |
|
||||
Reference in New Issue
Block a user