Update app.py
Browse files
app.py
CHANGED
@@ -46,11 +46,11 @@ def answer_question(question):
|
|
46 |
with gr.Blocks(css="""
|
47 |
body { background-color: black !important; }
|
48 |
.gradio-container { color: #FFFF33 !important; }
|
49 |
-
button { background-color: #
|
50 |
input, textarea, .gr-textbox, .gr-video { background-color: #111 !important; color: #FFFF33 !important; border-color: #FFFF33 !important; }
|
51 |
""") as iface:
|
52 |
gr.HTML("<h1 style='color:#FFFF33'>🎥 Video Transcriber, Summarizer & Q&A Tool</h1>")
|
53 |
-
gr.HTML("<p style='color:#
|
54 |
|
55 |
with gr.Tab("📝 Transcription & Summary"):
|
56 |
video_input = gr.Video(label="Upload Video (.mp4)", interactive=True)
|
|
|
46 |
with gr.Blocks(css="""
|
47 |
body { background-color: black !important; }
|
48 |
.gradio-container { color: #FFFF33 !important; }
|
49 |
+
button { background-color: #FFFF33 !important; color: black !important; border: none !important; }
|
50 |
input, textarea, .gr-textbox, .gr-video { background-color: #111 !important; color: #FFFF33 !important; border-color: #FFFF33 !important; }
|
51 |
""") as iface:
|
52 |
gr.HTML("<h1 style='color:#FFFF33'>🎥 Video Transcriber, Summarizer & Q&A Tool</h1>")
|
53 |
+
gr.HTML("<p style='color:#CCCC33'>Upload a video to get a transcript, summary, and ask questions about its content.</p>")
|
54 |
|
55 |
with gr.Tab("📝 Transcription & Summary"):
|
56 |
video_input = gr.Video(label="Upload Video (.mp4)", interactive=True)
|