Skip to content

onurcansevinc/Discord-video-selfbot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Discord selfbot video

Fork: Discord-video-stream

Features

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

Implementation

What I implemented and what I did not.

Video codecs

  • VP8
  • VP9
  • H.264

Packet types

  • RTP (sending of realtime data)
  • RTX (retransmission)

Connection types

  • Regular Voice Connection
  • Go live

Extras

  • Figure out rtp header extensions (discord specific)

discord seems to use one-byte RTP header extension

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 discord.js-selfbot-v13:

npm install discord-stream-client@latest
npm install discord.js-selfbot-v13@latest

Create a new client, new StreamClient and login:

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

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

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(
	'https://dl2.issou.best/ordr/videos/render1046454.mp4', // DIRECT VIDEO URL OR READABLE STREAM HERE
	streamConnection.udp, // UDP connection
);
// Events
player.on('finish', () => {
	console.log('Finished playing');
});
// Play video !!!
player.play();
// Stop playing
player.stop();

About

for djs-selfbot-v13

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%