Spaces:
Sleeping
Sleeping
Upload 2 files
Browse files
app.py
CHANGED
|
@@ -32,6 +32,17 @@ demo = gr.Interface(
|
|
| 32 |
),
|
| 33 |
],
|
| 34 |
gr.Textbox(label="Result"),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
theme=gr.themes.Base()
|
| 36 |
)
|
| 37 |
demo.launch() # Share your demo with just 1 extra parameter 🚀
|
|
|
|
| 32 |
),
|
| 33 |
],
|
| 34 |
gr.Textbox(label="Result"),
|
| 35 |
+
description="""**Knowledge Transcriber Self-Service Guide**
|
| 36 |
+
|
| 37 |
+
This script powers the Knowledge Transcriber application, providing an easy-to-use interface for users to transcribe video recordings stored in Google Drive. Follow these steps to use the application:
|
| 38 |
+
|
| 39 |
+
1. **OpenAI API Key**: Obtain an OpenAI API key, which is necessary for transcription services.
|
| 40 |
+
2. **Google Drive Folder**: Ensure your mp4 video recording is stored in a Google Drive folder that is publicly accessible.
|
| 41 |
+
3. **Enter Details**: In the below interface, input your OpenAI API key and the link to your Google Drive folder containing the video recording.
|
| 42 |
+
4. **Process Videos**: Submit the form, and the application will process the videos, generating transcripts and other outputs.
|
| 43 |
+
5. **Access Outputs**: Outputs will be stored in your Google Drive folder.
|
| 44 |
+
|
| 45 |
+
Please ensure Google Drive folder has the necessary permissions.""",
|
| 46 |
theme=gr.themes.Base()
|
| 47 |
)
|
| 48 |
demo.launch() # Share your demo with just 1 extra parameter 🚀
|