Discord_Elixir_test/lib/HahaCommands/download.ex

38 lines
1,021 B
Elixir
Raw Normal View History

2024-10-12 17:05:40 +02:00
defmodule HahaYes.Commands.Download do
2024-10-12 14:38:08 +02:00
@moduledoc """
2024-10-12 17:13:33 +02:00
Download command
2024-10-12 14:38:08 +02:00
"""
alias Nostrum.Api
@doc """
Download the video sent by the user at 480p max.
## Parameters
- url: String that represents the URL to download a video from.
## Examples
User: h3h3 download https://x.com/i/status/1844807680373768595
Bot: <video file>
User: h3h3 download https://www.youtube.com/watch?v=ryS7TS_J7KA
Bot: <video file>
"""
2024-10-12 17:05:40 +02:00
def execute(msg) do
2024-10-12 17:33:09 +02:00
{:ok, loading} = Api.create_message(msg.channel_id, "Downloading...")
2024-10-12 14:38:08 +02:00
arg = String.replace(msg.content, "h3h3 download ", "")
2024-10-12 17:33:09 +02:00
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"];
2024-10-12 14:38:08 +02:00
System.cmd("yt-dlp", opt)
2024-10-12 17:33:09 +02:00
Api.delete_message(loading.channel_id, loading.id)
Api.delete_message(msg)
Api.create_message(msg.channel_id, files: ["#{System.tmp_dir}/#{msg.id}.mp4"])
2024-10-12 14:38:08 +02:00
end
end