
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
discord-stream-client
Advanced tools
Experiment for making video streaming work for discord selfbots
Fork: Discord-video-stream <3
go live
, or webcam video)What I implemented and what I did not.
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
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();
FAQs
Experiment for making video streaming work for discord selfbots
The npm package discord-stream-client receives a total of 45 weekly downloads. As such, discord-stream-client popularity was classified as not popular.
We found that discord-stream-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.