1.0.1 • Published 4 months ago

chzzk-sdk v1.0.1

Weekly downloads
-
License
AGPL-3.0-or-later
Repository
github
Last release
4 months ago

Chzzk SDK

Install

npm install chzzk-sdk

Features

HLS & LLHLS

import { getHLS, getLLHLS } from "chzzk-sdk";

const channelID = '9381e7d6816e6d915a44a13c0195b202'
const HLS = await getHLS(channelID)
const LLHLS = await getLLHLS(channelID)
ArgumentsTypeDescription
Channel IDstringChzzk Channel ID

Output

{
  audio: 'https://livecloud.pstatic.net/.....m3u8',
  video: {
    '1080p': 'https://livecloud.pstatic.net/.....m3u8',
    '720p': 'https://livecloud.pstatic.net/.....m3u8',
    '480p': 'https://livecloud.pstatic.net/.....m3u8',
    '360p': 'https://livecloud.pstatic.net/.....m3u8',
    '144p': 'https://livecloud.pstatic.net/.....m3u8'
  }
}

Live Detail

import { getLiveDetail } from "chzzk-sdk";

const channelID = '9381e7d6816e6d915a44a13c0195b202'
const liveDetail = await getLiveDetail(channelID)
ArgumentsTypeDescription
Channel IDstringChzzk Channel ID
1.0.1

4 months ago

1.0.0

4 months ago