--- id: wiki-2026-0508-recording-academy-the-grammys title: Recording Academy (The Grammys) category: 10_Wiki/Topics status: verified canonical_id: self aliases: [Grammy Awards, NARAS, The Recording Academy] duplicate_of: none source_trust_level: A confidence_score: 0.9 verification_status: applied tags: [music, awards, industry] raw_sources: [] last_reinforced: 2026-05-10 github_commit: pending tech_stack: language: industry framework: music-awards --- # Recording Academy (The Grammys) ## 매 한 줄 > **"매 US-based peer-voted music awards body"**. NARAS (1957 founded) 의 Grammy Awards (1959 first ceremony) 의 host. 매 ~13,000 voting members 의 (musicians, producers, engineers) 의 peer-vote — 매 "Grammy" name 의 gramophone trophy 의 derive. 67th ceremony 의 2025-02-02 의 LA 의 Crypto.com Arena 의 hold. ## 매 핵심 ### 매 Structure - **NARAS** (National Academy of Recording Arts and Sciences) 의 official entity. - **12 chapters** (LA, NY, Nashville, Atlanta, Chicago, etc.). - **30+ genre fields** → ~94 categories (2025 ceremony). - **CEO**: Harvey Mason Jr. (since 2021). ### 매 Voting Process 1. **Submission** — labels/members 의 submit recordings. 2. **Screening** — committees 의 verify eligibility + category placement. 3. **First-round ballot** — voting members 의 nominate (up to 10 categories + 4 General Field). 4. **Final ballot** — 매 5 nominees per category 의 winner 의 vote. ### 매 General Field ("Big Four") 1. Record of the Year. 2. Album of the Year. 3. Song of the Year. 4. Best New Artist. ### 매 응용 1. Career inflection — 매 nomination/win 의 streaming spike (~+50% week-over). 2. Industry signal — 매 critical consensus 의 codify. 3. Diversity audit — 매 historical bias (e.g., women, non-pop genres) 의 ongoing reform. ## 💻 패턴 ### Grammy data scrape (Python) ```python import requests from bs4 import BeautifulSoup url = "https://www.grammy.com/awards/67th-annual-grammy-awards" soup = BeautifulSoup(requests.get(url).text, "html.parser") winners = [ {"category": c.find("h3").text, "artist": c.find(".winner").text} for c in soup.select(".category-card") ] ``` ### Wikidata SPARQL — Grammy winners ```sparql SELECT ?artist ?artistLabel ?year WHERE { ?award wdt:P31 wd:Q368441. # Grammy Award ?artist p:P166 ?stmt. ?stmt ps:P166 ?award; pq:P585 ?date. BIND(YEAR(?date) AS ?year) SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } } LIMIT 100 ``` ### Spotify API — nominee playlist (TS) ```typescript import { SpotifyApi } from "@spotify/web-api-ts-sdk"; const sdk = SpotifyApi.withClientCredentials(id, secret); const search = await sdk.search("Grammy 2025 nominees", ["playlist"]); const tracks = await sdk.playlists.getPlaylistItems(search.playlists.items[0].id); ``` ### Grammy buzz sentiment (Python) ```python from transformers import pipeline clf = pipeline("sentiment-analysis", model="cardiffnlp/twitter-roberta-base-sentiment-latest") tweets = ["Beyoncé deserved AOTY!", "Grammys irrelevant again"] print(clf(tweets)) ``` ### Streaming bump analysis ```python import pandas as pd df = pd.read_csv("spotify_daily_streams.csv", parse_dates=["date"]) ceremony = pd.Timestamp("2025-02-02") window = df[(df.date >= ceremony) & (df.date <= ceremony + pd.Timedelta("7d"))] bump = window.streams.sum() / df[df.date < ceremony].tail(7).streams.sum() print(f"7d post-ceremony streaming multiple: {bump:.2f}x") ``` ## 매 결정 기준 | 상황 | Approach | |---|---| | Industry credibility check | Grammy nom/win 의 weight | | Commercial popularity | Billboard Hot 100 의 prefer | | Critic consensus | Metacritic / Pitchfork 의 cross-ref | | Genre-specific | Country (CMA), Latin (Latin Grammys), R&B (BET) 의 separate | **기본값**: 매 Grammy 의 institutional, 매 streaming 의 popular signal. ## 🔗 Graph - 부모: [[Music-Industry]] · [[Awards]] - 변형: [[Latin-Grammys]] · [[Grammy-Hall-of-Fame]] - 응용: [[Album-of-the-Year]] · [[Music-Marketing]] - Adjacent: [[Billboard]] · [[RIAA]] · [[Streaming]] ## 🤖 LLM 활용 **언제**: nominee/winner lookup, category structure 의 explain, historical trend 의 summarize. **언제 X**: real-time ceremony updates — 매 official broadcast / live source 의 use. ## ❌ 안티패턴 - **"Grammy = best music"**: 매 voter bias (genre, gender, race) 의 documented — single signal 의 X. - **Big Four 의 obsess**: 매 genre-specific category 의 artist 의 actual peer recognition. - **Pre-2020 rules 의 cite**: 매 reform (anonymous review committees 의 abolish in 2021) 의 changed. ## 🧪 검증 / 중복 - Verified (grammy.com official, Wikipedia "Grammy Award"). - 신뢰도 A. ## 🕓 Changelog | 날짜 | 변경 | |---|---| | 2026-05-08 | Phase 1 | | 2026-05-10 | Manual cleanup — voting process + Big Four + 67th ceremony |