This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot/plugins/youtube_dl.lua

15 lines
596 B
Lua
Raw Normal View History

2015-05-24 18:23:30 +02:00
function run(msg, matches)
URL = matches[1]
local receiver = get_receiver(msg)
2015-05-27 18:55:36 +02:00
text = run_bash("rm tmp/video.mp4 && youtube-dl -o tmp/video.mp4 " .. URL)
2015-05-24 18:23:30 +02:00
send_video(get_receiver(msg), "tmp/video.mp4", ok_cb, false)
2015-06-07 22:47:21 +02:00
return URL .. ' wurde gedownloadet und wird jetzt gesendet! \nDas kann je nach Video sehr lang dauern! \nAlso habt Gedult!'
2015-05-24 18:23:30 +02:00
end
return {
2015-06-06 22:15:31 +02:00
description = "Downloadet und sendet ein Video von verschiedenen Seiten mit youtube-dl",
usage = {"/dl [Link]"},
patterns = {"^/dl (https?://[%w-_%.%?%.:/%+=&]+)$"},
2015-05-24 18:23:30 +02:00
run = run
}
--by Akamaru [https://ponywave.de]