1.4.8 • Published 4 months ago

discord-stream-client v1.4.8

Weekly downloads
-
License
ISC
Repository
github
Last release
4 months ago

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

  • VP8
  • VP9
  • H.264

Packet types

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

Connection types

  • Regular Voice Connection
  • 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

Example: Repo

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);

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();
1.4.8

4 months ago

1.4.7

4 months ago

1.4.6

5 months ago

1.2.0

10 months ago

1.1.1

10 months ago

1.1.0

10 months ago

1.2.8

9 months ago

1.4.5

7 months ago

1.2.7

9 months ago

1.4.4

8 months ago

1.2.6

9 months ago

1.4.3

8 months ago

1.2.5

9 months ago

1.4.2

9 months ago

1.2.4

9 months ago

1.4.1

9 months ago

1.2.3

9 months ago

1.0.5

10 months ago

1.4.0

9 months ago

1.3.1

9 months ago

1.2.2

9 months ago

1.1.3

10 months ago

1.3.0

9 months ago

1.2.1

9 months ago

1.1.2

10 months ago

1.0.2

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago