video_parsers / app.py
admin
merge all video parsers
7b8f88d
raw
history blame
519 Bytes
import gradio as gr
from tiktok import tiktok_parser
from bili import bili_parser
from bvid2acid import bv2acid
if __name__ == "__main__":
with gr.Blocks() as demo:
gr.Markdown(
"This site does not provide any video storage services, only to provide the most basic resolution services"
)
with gr.Tab("Tiktok"):
tiktok_parser()
with gr.Tab("Bilibili"):
with gr.Column():
bv2acid()
bili_parser()
demo.launch()