@3xanax/youtube-stream-status 中文文档教程

发布于 3年前 浏览 22 项目主页 更新于 3年前

youtube-stream-status

检查 YouTube 频道是否直播的节点模块

preview

Installation

Node.js 需要

npm install @3xanax/youtube-stream-status

Usage

需要 YouTube 频道 ID。 例子: <代码>https://www.youtube.com/channel/UCiaoRUmpQ0mH05w9PVQzYPw UCiaoRUmpQ0mH05w9PVQzYPw 是上述 url 中的频道 ID 字符串

const yt = require('@3xanax/youtube-stream-status');

yt.getStream("UCiaoRUmpQ0mH05w9PVQzYPw")
    .then(data => {
      console.log(data)
    })

直播时

  {
      "stream": {
          "_id": "UCiaoRUmpQ0mH05w9PVQzYPw"
      }
  }

的示例输出: 离线时的示例输出:

  {
      "stream": null
  }

Support & Issues

重要:请帮助我提高效率! 我在空闲时间免费开发。 通过发布完整的、结构化的和有用的问题来为项目做出贡献,我可以快速重现这些问题而无需询问丢失的信息。

ko-fi

LICENSE

麻省理工学院

youtube-stream-status

A node module to check if YouTube channel is live

preview

Installation

Node.js required

npm install @3xanax/youtube-stream-status

Usage

Require YouTube channel-id. Example: https://www.youtube.com/channel/UCiaoRUmpQ0mH05w9PVQzYPw UCiaoRUmpQ0mH05w9PVQzYPw is the channel-id string from the above url

const yt = require('@3xanax/youtube-stream-status');

yt.getStream("UCiaoRUmpQ0mH05w9PVQzYPw")
    .then(data => {
      console.log(data)
    })

Example output when Live:

  {
      "stream": {
          "_id": "UCiaoRUmpQ0mH05w9PVQzYPw"
      }
  }

Example output when Offline:

  {
      "stream": null
  }

Support & Issues

IMPORTANT: Help me beeing efficient, please! I am developing in my free time for no money. Contribute to the project by posting complete, structured and helpful issues which I can reproduce quickly without asking for missing information.

ko-fi

LICENSE

MIT

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文