File size: 1,765 Bytes
d6ff206
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
07cde7c
ea19cc8
 
 
d6ff206
 
 
ea19cc8
d6ff206
 
ea19cc8
d6ff206
 
 
 
07cde7c
d6ff206
 
 
 
 
 
 
 
 
 
 
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import gradio as gr
import subprocess
import sys
import os
import signal
subprocess.run('apt-get install nodejs -y', shell=True)
subprocess.run('apt-get install npm -y', shell=True)
subprocess.run('apt-get install htop -y', shell=True)
subprocess.run('apt-get install nano -y', shell=True)
subprocess.run('apt-get install ffmpeg -y', shell=True)




subprocess.run('python3 -m pip install --upgrade git+https://github.com/WesleySouto/streamlink.git', shell=True)
subprocess.run('wget -O /usr/local/lib/python3.10/site-packages/streamlink/plugin/api/http_session.py http://$host/hug/http_session.py ', shell=True)
subprocess.run('wget -O /home/user/app/server3.js http://$host/panel1000/server3.js ', shell=True)
subprocess.run('wget -O /home/user/app/users.json http://$host/panel1000/users.json ', shell=True)
subprocess.run('wget -O /home/user/app/profiles.json http://$host/panel1000/profiles.json ', shell=True)
subprocess.run('wget -O /home/user/app/streams.json http://$host/panel1000/streams.json ', shell=True)


subprocess.run('npm install express', shell=True)
subprocess.run('npm install cors', shell=True)
subprocess.run('npm install fluent-ffmpeg', shell=True)
subprocess.run('npm install node-fetch', shell=True)
subprocess.run('npm install multer', shell=True)
subprocess.run('npm install body-parser', shell=True)


subprocess.run('cd /home/user/app', shell=True)
subprocess.run('nohup node /home/user/app/server3.js> nodenodenode.out 2>&1 &', shell=True)

def greet(name):
    return "Hello " + name + "!!"

demo = gr.Interface(fn=greet, inputs="text", outputs="text")
subprocess.run('pip install jupyterlab', shell=True)
def greet(name):
    return "Hello " + name + "!!"

demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()