Spaces:
Sleeping
Sleeping
artificialguybr
commited on
Commit
•
89df459
1
Parent(s):
37e1e8a
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import subprocess
|
3 |
+
import os
|
4 |
+
|
5 |
+
# Função para baixar o clipe da Twitch
|
6 |
+
def download_twitch_clip(url, auth_token=None):
|
7 |
+
# Comando básico para download
|
8 |
+
command = ["twitch-dl", "download", url]
|
9 |
+
|
10 |
+
# Adiciona o token de autenticação, se fornecido
|
11 |
+
if auth_token:
|
12 |
+
command.extend(["-a", auth_token])
|
13 |
+
|
14 |
+
# Executa o comando de download
|
15 |
+
subprocess.run(command)
|
16 |
+
|
17 |
+
# Extrai o ID do vídeo da URL para criar o nome do arquivo
|
18 |
+
video_id = url.split('/')[-1]
|
19 |
+
file_name = f"{video_id}.mkv" # Assumindo que o formato padrão é mkv
|
20 |
+
|
21 |
+
return file_name
|
22 |
+
|
23 |
+
# Interface Gradio
|
24 |
+
def gradio_interface(url, auth_token):
|
25 |
+
file_name = download_twitch_clip(url, auth_token)
|
26 |
+
return file_name
|
27 |
+
|
28 |
+
iface = gr.Interface(
|
29 |
+
fn=gradio_interface,
|
30 |
+
inputs=[
|
31 |
+
gr.inputs.Textbox(label="URL do Clipe da Twitch"),
|
32 |
+
gr.inputs.Textbox(label="Token de Autenticação (opcional)", optional=True)
|
33 |
+
],
|
34 |
+
outputs="video",
|
35 |
+
examples=[
|
36 |
+
["https://www.twitch.tv/videos/221837124", None],
|
37 |
+
["https://www.twitch.tv/videos/221837124", "seu_auth_token"]
|
38 |
+
]
|
39 |
+
)
|
40 |
+
|
41 |
+
# Executar a interface
|
42 |
+
iface.launch()
|