Skip to content

Instantly share code, notes, and snippets.

@z64
z64 / DiscordYoutubeBot.rb
Last active July 19, 2018 21:46
Code Snippet for playing youtube videos (as mp3s) in discord using youtube-dl and discordrb
#Install libsodium (python3-nacl and libsodium-dev worked for me), libopus (libopusfile0 and libopus0 worked for me), ffmpeg
#Install https://github.com/rg3/youtube-dl
require 'discordrb'
$isplaying = 0
bot = Discordrb::Commands::CommandBot.new token: token, client_id: clientid, prefix: '.'
bot.command(:play) do |event, songlink|
if $isplaying == 1
event.message.delete
event.respond 'Already playing music'
break