File size: 829 Bytes
9b0313f
2fe92e0
 
df6881f
2fe92e0
 
 
5e4151e
 
 
 
2fe92e0
 
 
 
5e4151e
2fe92e0
 
 
5e4151e
2fe92e0
5e4151e
 
 
 
 
6a031e6
 
 
5e4151e
 
 
 
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
import gradio as gr
import subprocess
import os

def videoxsub(vid):
    getAudio(vid)
    getSubs()
    # Return the video, subtitle content, and a path to the subtitle file for download
    with open("audio.vtt", "r") as file:
        subtitle_content = file.read()
    return [vid, subtitle_content, "audio.vtt"]

def getAudio(vid):
    if os.path.exists("audio.mp3"):
        os.remove("audio.mp3")
    commands_list = ["ffmpeg", "-i", vid, "audio.mp3"]
    subprocess.run(commands_list)

def getSubs():
    command_list = ["whisper", "audio.mp3", "-f", "vtt", "--fp16", "False"]
    subprocess.run(command_list)

demo = gr.Interface(
    fn=videoxsub,
    inputs="video",
    outputs=[
        gr.Video(label="Video"),
        gr.Textbox(label="Subtitles"),
        gr.File(label="Download Subtitles")
    ]
)

demo.launch()