How to install FFmpeg
In this guide you will learn how to install and setup FFmpeg to your service. Some readersHow to install Opus for your Python bot
Opus is a popular audio encoder used for Discord bots. Here are instructions on how to download opus and make it work with discord.py Run those commands one-by-one (by switching to the InDev mode): wget --quiet https://archive.mozilla.org/pub/opus/opus-1.3.1.tar.gz tar -xf opus-1.3.1.tar.gz cd opus-1.3.1 ./configure --prefixFew readersHow to use Puppeteer with your Discord bot
Currently, we support headless Chrome instances only in the latest NodeJS version. Here's an example on how to initialize the browser object: const browser = await puppeteer.launch( headless: true, args: '--no-sandbox', '--disable-setuid-sandbox' )Few readers