Compare commits
2 commits
f175863ae8
...
d3798a2c3a
Author | SHA1 | Date | |
---|---|---|---|
d3798a2c3a | |||
3874d27f85 |
1 changed files with 7 additions and 3 deletions
|
@ -23,11 +23,15 @@ defmodule HahaYes.Commands.Download do
|
|||
Bot: <video file>
|
||||
"""
|
||||
def execute(msg) do
|
||||
{:ok, loading} = Api.create_message(msg.channel_id, "Downloading...")
|
||||
|
||||
arg = String.replace(msg.content, "h3h3 download ", "")
|
||||
opt = ["-f", "bestvideo[height<=?480]+bestaudio/best", arg, "-o", "#{System.tmp_dir}/test.mp4", "--force-overwrites", "--playlist-reverse", "--no-playlist", "--remux-video=mp4/webm/mov", "--no-warnings"];
|
||||
opt = ["-f", "bestvideo[height<=?480]+bestaudio/best", arg, "-o", "#{System.tmp_dir}/#{msg.id}.%(ext)si", "--force-overwrites", "--playlist-reverse", "--no-playlist", "--remux-video=mp4/webm/mov", "--no-warnings"];
|
||||
|
||||
System.cmd("yt-dlp", opt)
|
||||
Api.delete_message(msg.channel_id, msg.id)
|
||||
Api.create_message(msg.channel_id, files: ["#{System.tmp_dir}/test.mp4"])
|
||||
|
||||
Api.delete_message(loading.channel_id, loading.id)
|
||||
Api.delete_message(msg)
|
||||
Api.create_message(msg.channel_id, files: [Enum.at(Path.wildcard("#{System.tmp_dir}/#{msg.id}.*"), 0)])
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue