Find the filename automatically
This commit is contained in:
parent
3874d27f85
commit
d3798a2c3a
1 changed files with 2 additions and 2 deletions
|
@ -26,12 +26,12 @@ defmodule HahaYes.Commands.Download do
|
||||||
{:ok, loading} = Api.create_message(msg.channel_id, "Downloading...")
|
{:ok, loading} = Api.create_message(msg.channel_id, "Downloading...")
|
||||||
|
|
||||||
arg = String.replace(msg.content, "h3h3 download ", "")
|
arg = String.replace(msg.content, "h3h3 download ", "")
|
||||||
opt = ["-f", "bestvideo[height<=?480]+bestaudio/best", arg, "-o", "#{System.tmp_dir}/#{msg.id}", "--force-overwrites", "--playlist-reverse", "--no-playlist", "--remux-video=mp4", "--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)
|
System.cmd("yt-dlp", opt)
|
||||||
|
|
||||||
Api.delete_message(loading.channel_id, loading.id)
|
Api.delete_message(loading.channel_id, loading.id)
|
||||||
Api.delete_message(msg)
|
Api.delete_message(msg)
|
||||||
Api.create_message(msg.channel_id, files: ["#{System.tmp_dir}/#{msg.id}.mp4"])
|
Api.create_message(msg.channel_id, files: [Enum.at(Path.wildcard("#{System.tmp_dir}/#{msg.id}.*"), 0)])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue