npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@gabrielmaialva33/discord-video-stream

v1.1.3

Published

Experiment for making video streaming work for discord self bots

Downloads

3,724

Readme

:bookmark: About

This project implements the custom Discord UDP protocol for sending media. Since Discord is likely change their custom protocol, this library is subject to break at any point. An effort will be made to keep this library up to date with the latest Discord protocol, but it is not guranteed.

For better stability it is recommended to use WebRTC protocol instead since Discord is forced to adhere to spec, which means that the non-signaling code is guaranteed to work.

:rocket: Features

  • Playing vp8 or h264 video in a voice channel (go live, or webcam video)
  • Playing opus audio in a voice channel

:construction: Implementation

What I implemented and what I did not.

Video codecs

  • [x] VP8
  • [ ] VP9
  • [x] H.264
  • [x] H.265

Packet types

  • [x] RTP (sending of realtime data)
  • [ ] RTX (retransmission)

Connection types

  • [x] Regular Voice Connection
  • [x] Go live

Extras

  • [x] Figure out rtp header extensions (discord specific) (discord seems to use one-byte RTP header extension https://www.rfc-editor.org/rfc/rfc8285.html#section-4.2)

Extensions supported by Discord (taken from the webrtc sdp exchange)

:computer: Requirements

  • FFmpeg is required for the usage of this package. If you are on linux you can easily install ffmpeg from your distribution's package manager.

      $ sudo apt-get install ffmpeg
  • discord.js-selfbot-v13 is required for the usage of this package. If you are on linux you can easily install discord.js-selfbot-v13 from your

      $ pnpm add discord.js-selfbot-v13

:package: Usage

Create a new client, and patch its events to listen for voice gateway events:

import { Client } from 'discord.js-selfbot-v13'
import { Streamer } from '@gabrielmaialva33/discord-video-stream'

const streamer = new Streamer(new Client())
await streamer.client.login('TOKEN HERE')

Make client join a voice channel and create a stream:

await streamer.joinVoice('GUILD ID HERE', 'CHANNEL ID HERE')
const udp = await streamer.createStream()

Start sending media over the udp connection:

udp.mediaConnection.setSpeaking(true)
udp.mediaConnection.setVideoStatus(true)
try {
  const res = await streamLivestreamVideo('DIRECT VIDEO URL OR READABLE STREAM HERE', udp)

  console.log('Finished playing video ' + res)
} catch (e) {
  console.log(e)
} finally {
  udp.mediaConnection.setSpeaking(false)
  udp.mediaConnection.setVideoStatus(false)
}

:arrow_down: **FAQS

  • Can I stream on existing voice connection (CAM) and in a go-live connection simultaneously?

Yes, just send the media packets over both udp connections. The voice gateway expects you to signal when a user turns on their camera, so make sure you signal using client.signalVideo(guildId, channelId, true) before you start sending cam media packets.

  • Does this library work with bot tokens?

No, Discord blocks video from bots which is why this library uses a selfbot library as peer dependency. You must use a user token

:memo: License

This project is under the MIT license. MIT ❤️

:rocket: Contributors

| Maia | | --------------------------------------------------------------------------------------------------------- | | Maia |

Made with ❤️ by Maia 👋🏽 Get in touch!

:star:

Liked? Leave a little star to help the project ⭐