Update app.py
Browse files
app.py
CHANGED
@@ -107,31 +107,29 @@ def gradio_interface():
|
|
107 |
<h1>Video to Social Media Post Generator</h1>
|
108 |
"""
|
109 |
)
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
"""
|
134 |
-
)
|
135 |
|
136 |
with gr.Row():
|
137 |
with gr.Column():
|
|
|
107 |
<h1>Video to Social Media Post Generator</h1>
|
108 |
"""
|
109 |
)
|
110 |
+
with gr.Row():
|
111 |
+
with gr.Column():
|
112 |
+
gr.Markdown("""
|
113 |
+
<ul>
|
114 |
+
<li><strong>Video Data Management:</strong> Creating tables and views to store and organize video data.</li>
|
115 |
+
<li><strong>Automated Video Processing:</strong> Extracting frames and audio from videos.</li>
|
116 |
+
<li><strong>Data Transformation:</strong> Computing and storing metadata, transcriptions, and AI-generated content.</li>
|
117 |
+
<li><strong>AI Integration:</strong> Utilizing OpenAI's GPT and Whisper models for transcription and content generation.</li>
|
118 |
+
<li><strong>Custom Functions:</strong> Defining user-defined functions (UDFs) for specialized tasks like prompt construction.</li>
|
119 |
+
<li><strong>Data Persistence:</strong> Storing transformed data and AI outputs for easy retrieval and analysis.</li>
|
120 |
+
</ul>
|
121 |
+
""")
|
122 |
+
with gr.Column():
|
123 |
+
gr.Markdown("""
|
124 |
+
<ul>
|
125 |
+
<li><strong>Video Data Management:</strong> Creating tables and views to store and organize video data.</li>
|
126 |
+
<li><strong>Automated Video Processing:</strong> Extracting frames and audio from videos.</li>
|
127 |
+
<li><strong>Data Transformation:</strong> Computing and storing metadata, transcriptions, and AI-generated content.</li>
|
128 |
+
<li><strong>AI Integration:</strong> Utilizing OpenAI's GPT and Whisper models for transcription and content generation.</li>
|
129 |
+
<li><strong>Custom Functions:</strong> Defining user-defined functions (UDFs) for specialized tasks like prompt construction.</li>
|
130 |
+
<li><strong>Data Persistence:</strong> Storing transformed data and AI outputs for easy retrieval and analysis.</li>
|
131 |
+
</ul>
|
132 |
+
""")
|
|
|
|
|
133 |
|
134 |
with gr.Row():
|
135 |
with gr.Column():
|