본문 바로가기
카테고리 없음

서울재즈페스티벌 2025 - 도심 속 재즈의 낭만, 올림픽공원에서 만나다

by wjdflgkrl 2025. 5. 12.
반응형
서울재즈페스티벌 2025 - 도심 속 재즈의 낭만, 올림픽공원에서 만나다

목차

- 서울재즈페스티벌 소개
- 주요 출연진 및 프로그램 안내
- 편안하게 즐기기 위한 페스티벌 팁
- Q&A
- 관련 태그

서울재즈페스티벌 소개

서울재즈페스티벌 2025는 국내 최대 규모의 재즈 음악 축제로, 2025년 5월 24일부터 26일까지 서울 올림픽공원에서 개최됩니다. 2007년부터 시작되어 올해로 19회를 맞는 본 행사는 세계적인 재즈 아티스트와 한국의 뮤지션들이 한자리에 모이는 프리미엄 음악 페스티벌로, 매년 수만 명의 팬들이 찾는 서울의 봄 대표 문화 행사입니다.

주요 출연진 및 프로그램 안내

올해 서울재즈페스티벌 2025에는 다음과 같은 세계적 아티스트들이 참여합니다.

글로벌 아티스트:

  • Norah Jones (USA)
  • Jacob Collier (UK)
  • Snarky Puppy (USA)
국내 라인업:
  • 이소라
  • Crush
  • 선우정아

프로그램 구성:
  • 올림픽공원 내 88잔디마당, 체조경기장 등 5개 무대 운영
  • 재즈&와인존 운영 - 와인과 스낵을 즐기며 음악 감상
  • 포토존, 아티스트 사인회 등 부대행사

공식 예매처: 서울재즈페스티벌 공식 사이트

편안하게 즐기기 위한 페스티벌 팁

서울재즈페스티벌은 돗자리형 야외 좌석 중심으로 운영되어 자유로운 분위기에서 음악을 감상할 수 있습니다.

추천 준비물:

  • 돗자리, 접이식 의자
  • 와인잔, 간단한 간식류 (음식 반입 가능)
  • 햇빛 가림용 우산 또는 양산, 모자

팁:
  • 티켓은 조기 매진되므로 사전 예매 필수
  • 88잔디마당은 오전 입장 시 좋은 자리 선점 가능
  • 반려동물 동반은 불가, 1인 1티켓 원칙

Q&A

Q1: 전 연령 입장이 가능한가요?

A1: 네, 어린이부터 어르신까지 누구나 관람 가능하며, 가족 단위로도 많이 참여합니다.

Q2: 우천 시에도 진행되나요?

A2: 네, 공연은 우천 시에도 예정대로 진행되며, 일부 무대는 실내로 이동합니다.

Q3: 음식 반입이 가능한가요?

A3: 개인 도시락과 간단한 음료는 반입 가능하나, 주류는 와인존 내에서만 판매/소비 가능합니다.

관련 태그

#서울재즈페스티벌2025 #서울페스티벌 #재즈공연 #88잔디마당 #서울올림픽공원 #음악축제추천 #돗자리공연 #봄축제

반응형

/** * @license * Copyright 2019 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js'; import {LargestContentfulPaint as ComputedLcp} from '../../computed/metrics/largest-contentful-paint.js'; const UIStrings = { /** Description of the Largest Contentful Paint (LCP) metric, which marks the time at which the largest text or image is painted by the browser. This is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */ description: 'Largest Contentful Paint marks the time at which the largest text or image is ' + `painted. [Learn more about the Largest Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)`, }; const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings); class LargestContentfulPaint extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'largest-contentful-paint', title: str_(i18n.UIStrings.largestContentfulPaintMetric), description: str_(UIStrings.description), scoreDisplayMode: Audit.SCORING_MODES.NUMERIC, supportedModes: ['navigation'], requiredArtifacts: ['HostUserAgent', 'Trace', 'DevtoolsLog', 'GatherContext', 'URL', 'SourceMaps'], }; } /** * @return {{mobile: {scoring: LH.Audit.ScoreOptions}, desktop: {scoring: LH.Audit.ScoreOptions}}} */ static get defaultOptions() { return { mobile: { // 25th and 13th percentiles HTTPArchive -> median and p10 points. // https://bigquery.cloud.google.com/table/httparchive:lighthouse.2020_02_01_mobile?pli=1 // https://web.dev/articles/lcp#what_is_a_good_lcp_score // see https://www.desmos.com/calculator/1etesp32kt scoring: { p10: 2500, median: 4000, }, }, desktop: { // 25th and 5th percentiles HTTPArchive -> median and p10 points. // SELECT // APPROX_QUANTILES(lcpValue, 100)[OFFSET(5)] AS p05_lcp, // APPROX_QUANTILES(lcpValue, 100)[OFFSET(25)] AS p25_lcp // FROM ( // SELECT CAST(JSON_EXTRACT_SCALAR(payload, "$['_chromeUserTiming.LargestContentfulPaint']") AS NUMERIC) AS lcpValue // FROM `httparchive.pages.2020_04_01_desktop` // ) scoring: { p10: 1200, median: 2400, }, }, }; } /** * @param {LH.Artifacts} artifacts * @param {LH.Audit.Context} context * @return {Promise} */ static async audit(artifacts, context) { const trace = artifacts.Trace; const devtoolsLog = artifacts.DevtoolsLog; const gatherContext = artifacts.GatherContext; const metricComputationData = { trace, devtoolsLog, gatherContext, settings: context.settings, URL: artifacts.URL, SourceMaps: artifacts.SourceMaps, simulator: null, }; const metricResult = await ComputedLcp.request(metricComputationData, context); const options = context.options[context.settings.formFactor]; return { score: Audit.computeLogNormalScore( options.scoring, metricResult.timing ), scoringOptions: options.scoring, numericValue: metricResult.timing, numericUnit: 'millisecond', displayValue: str_(i18n.UIStrings.seconds, {timeInMs: metricResult.timing}), }; } } export default LargestContentfulPaint; export {UIStrings};