Go to file
KGT1 515741f7c8
Merge pull request #2 from zadi15/master
Updated + added bot responses
2020-09-23 11:32:01 +02:00
patches faster Report Limits 2020-09-21 09:56:46 +02:00
src Fixed linter issues 2020-09-23 12:02:32 +03:00
.dockerignore fix dockerignore 2020-09-08 14:06:24 +02:00
.eslintrc.json fix all lint errors 2020-09-21 05:30:39 +02:00
.gitignore added config to gitignore 2020-09-08 13:25:47 +02:00
config.json added aditional config 2020-09-08 13:24:10 +02:00
Dockerfile only install production in docker 2020-09-21 05:39:22 +02:00
LICENSE.md Update messages sent to users 2020-09-22 15:37:45 +03:00
package.json removed ytdl from dependencies 2020-09-21 07:42:17 +02:00
parseENV.js fix all lint errors 2020-09-21 05:30:39 +02:00
README.md extended README 2020-09-21 07:58:15 +02:00

Jellyfin Discord Music Bot

Jellyfin Discord Music Bot is a Discord Bot for the Jellyfin Media Server!

Capabilities

Commands

Beware that you'll always need to add your prefix(default: ?) in front of the command.

Command Description
summon Join the channel the author of the message(now you can cast to the Bot from within Jellyfin)
disconnect Disconnect from all current Voice Channels
play Play the following item(can be the name of the song or the Stream URL)
pause/resume Pause/Resume audio
help Display the help message

Limitations

  • Playlist (soon)
  • Seek to functionality (soon)
  • Playing Video Content (if Discord ever adds this, I'll implement it into this Bot)

Getting Started

You'll need a Discord Application for this Bot to work, as you will host it yourself.

How to retrieve your token

How to invite the Bot to your server

The simplest way to get started is using Docker:

docker run -d \
    --name jellyfin-discord-music-bot \
    -e DISCORD_PREFIX="?" \
    -e DISCORD_TOKEN="yourtokengoeshere" \
    -e JELLYFIN_SERVER_ADDRESS="https://jellyfin.DOMAIN" \
    -e JELLYFIN_USERNAME="" \
    -e JELLYFIN_PASSWORD="" \
    -e JELLYFIN_APP_NAME="Jellyfin Discord Music Bot" \
    kgt1/jellyfin-discord-music-bot

How to build

git clone https://github.com/kgt1/jellyfin-discord-music-bot.git
cd jellyfin-discord-music-bot
docker build -t YOUR_IMAGE_NAME .