from whisperplus.app import youtube_url_to_text_app, speaker_diarization_app
import gradio as gr
gradio_app = gr.Blocks()
with gradio_app:
gr.HTML(
"""
WhisperPlus: Advancing Speech-to-Text Processing 🚀
""")
gr.HTML(
"""
""")
with gr.Row():
with gr.Column():
with gr.Tab(label="Youtube URL to Text"):
youtube_url_to_text_app()
with gr.Tab(label="Speaker Diarization"):
speaker_diarization_app()
gradio_app.queue()
gradio_app.launch(debug=True)