File size: 855 Bytes
9c3ff33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import gradio as gr
import subprocess

# Função para baixar e reproduzir um torrent usando WebTorrent CLI
def download_and_play_torrent(magnet_link):
    command = f"webtorrent download {magnet_link} --vlc"
    process = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
    stdout, stderr = process.communicate()

    if process.returncode == 0:
        return "Torrent baixado e reproduzido com sucesso!"
    else:
        return f"Erro ao baixar ou reproduzir torrent: {stderr.decode('utf-8')}"

# Interface Gradio
iface = gr.Interface(
    fn=download_and_play_torrent,
    inputs="text",
    outputs="text",
    title="WebTorrent Gradio Interface",
    description="Insira um link magnet para baixar e reproduzir usando WebTorrent.",
)

# Iniciar a interface Gradio
if __name__ == "__main__":
    iface.launch()