본문 바로가기
이모저모

웨이브 추천작: 지금 가장 주목받는 콘텐츠!

by wjdflgkrl 2024. 12. 29.
반응형

웨이브에서 가장 인기 있는 추천작을 소개합니다. 최신 드라마, 영화, 예능까지 다양한 콘텐츠를 확인하고 지금 바로 감상해보세요! 빠르게 추천작 정보를 원하시면 아래 버튼을 클릭하세요.

 

약한 영웅 Class 1

  • 장르: 액션, 성장 드라마
  • 줄거리: 평범한 학생이 잔혹한 학교 폭력에 맞서는 이야기를 그린 드라마.
  • 추천 포인트: 강렬한 연출과 현실적인 스토리로 시청자들의 공감을 얻은 명작.

더 글로리(The Glory)

  • 장르: 스릴러, 복수극
  • 줄거리: 학교 폭력 피해자가 가해자들에게 복수를 다짐하며 벌어지는 이야기.
  • 추천 포인트: 화려한 캐스팅과 긴장감 넘치는 스토리로 인기몰이 중.

라켓소년단

  • 장르: 스포츠, 청춘
  • 줄거리: 시골 마을의 배드민턴 팀이 전국 대회를 목표로 성장해가는 이야기.
  • 추천 포인트: 유쾌한 웃음과 감동을 동시에 선사하는 청춘 드라마.

스트리트 우먼 파이터 2

  • 장르: 댄스 서바이벌, 예능
  • 줄거리: 국내 최고의 댄스 크루들이 펼치는 치열한 경쟁과 감동적인 순간들.
  • 추천 포인트: 화려한 퍼포먼스와 개성 넘치는 참가자들로 큰 인기를 얻고 있습니다.

신병 시즌 2

  • 장르: 군대, 코미디
  • 줄거리: 군 생활을 리얼하게 그려내며 공감과 웃음을 선사하는 드라마.
  • 추천 포인트: 군대 경험을 바탕으로 한 리얼리티와 재미가 가득한 콘텐츠.

결혼작사 이혼작곡

  • 장르: 로맨스, 가족 드라마
  • 줄거리: 결혼 생활 속에서 벌어지는 갈등과 사랑, 그리고 복잡한 인간관계를 다룬 드라마.
  • 추천 포인트: 흥미로운 전개와 긴장감 넘치는 스토리로 사랑받는 작품.

웨이브는 다양한 장르와 수준 높은 콘텐츠를 통해 항상 새로운 재미를 제공합니다. 특히 독점 제공 콘텐츠와 국내외 화제작을 통해 누구나 즐길 수 있는 콘텐츠를 보유하고 있죠. 지금 웨이브에서 추천작을 감상하며 특별한 시간을 만들어보세요!

반응형

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