Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

djs-stream-client

notsans.401.4.8TypeScript support: included

Experiment for making video streaming work for discord selfbots

discord, video, voice, stream, go-live

readme

Discord selfbot video

Fork: Discord-video-stream <3

Features

  • Playing VP8 / H264 video in a voice channel (go live, or webcam video)
  • Transcoding video to VP8 / H264 and audio to opus (using ffmpeg)

Implementation

What I implemented and what I did not.

Video codecs

  • <input checked="" disabled="" type="checkbox"> VP8
  • <input disabled="" type="checkbox"> VP9
  • <input checked="" disabled="" type="checkbox"> H.264

Packet types

  • <input checked="" disabled="" type="checkbox"> RTP (sending of realtime data)
  • <input disabled="" type="checkbox"> RTX (retransmission)

Connection types

  • <input checked="" disabled="" type="checkbox"> Regular Voice Connection
  • <input checked="" disabled="" type="checkbox"> Go live

Extras

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.

If you are on Windows, you can download it from the official ffmpeg website: https://ffmpeg.org/download.html

Usage

Install the package, alongside its peer-dependency djs-selfbot-v13:

npm install discord-stream-client@latest
npm install djs-selfbot-v13@latest

Create a new client, new StreamClient and login:

import { Client } from 'djs-selfbot-v13';
import { DiscordStreamClient } from 'discord-stream-client';

const client = new Client();
const StreamClient = new DiscordStreamClient(client);

StreamClient.setResolution('720p');
// StreamClient.setVideoCodec('VP8'); // H264 is default

const token = 'token';

await client.login(token);

Make client join a voice channel and create a stream (Screen Share):

// Connect to a voice channel
const voiceConnection = await StreamClient.joinVoiceChannel(
    client.channels.cache.get('voice channel id'),
    {
        selfDeaf: false,
        selfMute: true,
        selfVideo: false,
    },
);
// Create a stream
const streamConnection = await voiceConnection.createStream();
// Create a player
const player = StreamClient.createPlayer(
    'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4', // DIRECT VIDEO URL OR READABLE STREAM HERE
    streamConnection.udp, // UDP connection
);
// Events
player.on('start', () => {
    console.log('Started playing');
});
player.on('finish', () => {
    console.log('Finished playing');
});
// Play video !!!
player.play();
// Stop playing
player.stop();