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

도심 속 낭만, 서울재즈페스티벌 2025 완벽 가이드

by wjdflgkrl 2025. 4. 14.
반응형

도심 속 낭만, 서울재즈페스티벌 2025 완벽 가이드

서울재즈페스티벌 2025란?

서울재즈페스티벌 2025는 매년 서울 올림픽공원에서 열리는 대한민국 대표 음악 축제입니다. 17회를 맞이한 이번 행사에서는 재즈는 물론 팝, 록, R&B 등 다양한 장르의 세계적 아티스트들이 출연하여 풍성한 무대를 선보일 예정입니다.

📅 일정: 2025년 5월 30일(금) ~ 6월 1일(일)
📍 장소: 서울 올림픽공원 전역
🎫 예매처: 멜론티켓

서울재즈페스티벌 전경

출연 아티스트 라인업

🎤 5월 30일 (금)

  • LANY
  • Kamasi Washington
  • RAYE
  • Snarky Puppy
  • The Yussef Dayes Experience
  • 잔나비, 루시, 존박 with Jazz Band, 드루브(Dhruv)

🎤 5월 31일 (토)

  • Crush
  • Alex Sampson
  • Daybreak
  • 소피아 앤드 더 앙투아네츠
  • 김윤아, MIHYANG MOON 등

🎤 6월 1일 (일)

  • Tower of Power
  • Damiano David
  • Gallant
  • CNBLUE, 이영지, 홍이삭
서재페 2025 라인업 포스터

티켓 정보

🎟️ 티켓 종류 및 가격:

  • 3일권 프리세일: 390,000원
  • 3일권 정가: 460,000원
  • 1일권: 187,000원

티켓은 멜론티켓을 통해 예매 가능합니다. 빠르게 매진되는 프리세일 티켓은 서두르세요!

관람 꿀팁

  • 입장: 모바일 티켓(QR) 지참 → 입장 팔찌 교환
  • 준비물: 돗자리, 간식, 물, 휴대용 의자
  • 우천 대비: 우비 또는 양산

넓은 공원을 무대로 진행되기 때문에 가벼운 복장과 편한 신발은 필수입니다.

서울재즈페스티벌 즐기는 사람들

마무리 및 예매 링크

서울재즈페스티벌 2025는 음악과 자연이 어우러지는 서울의 대표적인 음악 문화 행사입니다. 글로벌 아티스트들의 멋진 공연과 함께, 도심 속 여유로운 힐링을 경험해보세요.

반응형

/** * @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};