new plugin youtube_mp3
This commit is contained in:
parent
eaa56879ea
commit
6d78648182
20
plugins/youtube_mp3.lua
Normal file
20
plugins/youtube_mp3.lua
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
-- Requires: (sudo) apt-get install youtube-dl
|
||||||
|
function run(msg, matches)
|
||||||
|
URL = matches[1]
|
||||||
|
local receiver = get_receiver(msg)
|
||||||
|
if string.match(msg.text, '"') then
|
||||||
|
return 'Vergiss es'
|
||||||
|
else
|
||||||
|
text = run_bash("rm tmp/sound.mp3 && youtube-dl -o tmp/sound.mp3 --audio-format mp3 " .. URL)
|
||||||
|
send_audio(get_receiver(msg), "tmp/sound.mp3", ok_cb, false)
|
||||||
|
return URL .. ' wurde gedownloadet und wird jetzt gesendet! \nDas kann je nach Video sehr lang dauern! \nAlso habt Geduld!'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return {
|
||||||
|
description = "Downloadet und sendet die mp3 von einem YouTube-Video",
|
||||||
|
usage = {"/mp3 [Link]"},
|
||||||
|
patterns = {"^/mp3 (https?://[%w-_%.%?%.:/%+=&]+)$"},
|
||||||
|
run = run
|
||||||
|
}
|
||||||
|
--by Akamaru [https://ponywave.de]
|
Reference in New Issue
Block a user