Update README.md
Browse files
README.md
CHANGED
@@ -15,24 +15,24 @@ thumbnail: >-
|
|
15 |
---
|
16 |
[Project Overview Video](https://www.canva.com/design/DAGp9q0Pr_I/3XZlutt5Zwhn_tsPN3vZiA/watch?utm_content=DAGp9q0Pr_I&utm_campaign=designshare&utm_medium=link2&utm_source=uniquelinks&utlId=h0d38006656)
|
17 |
|
18 |
-
Narrated Slideshow Generator
|
|
|
19 |
AI-powered tool that converts any topic into a narrated slideshow with generated images and audio.
|
20 |
|
21 |
-
Install dependencies:
|
22 |
pip install gradio google-genai python-dotenv pillow deepgram-sdk
|
23 |
|
24 |
-
Set up API
|
25 |
-
GEMINI_KEY
|
26 |
-
DEEPGRAM_KEY=your_deepgram_key # optional
|
27 |
|
28 |
-
Run:
|
29 |
python app.py
|
30 |
|
31 |
-
|
32 |
-
Enter a topic, click Generate, navigate with Previous/Next buttons.
|
33 |
-
|
34 |
-
How it Works
|
35 |
Gemini 2.5 generates slide content and speaker notes
|
|
|
36 |
Gemini TTS creates audio narration
|
|
|
37 |
Imagen 3 generates slide images
|
|
|
38 |
Gradio provides the web interface
|
|
|
15 |
---
|
16 |
[Project Overview Video](https://www.canva.com/design/DAGp9q0Pr_I/3XZlutt5Zwhn_tsPN3vZiA/watch?utm_content=DAGp9q0Pr_I&utm_campaign=designshare&utm_medium=link2&utm_source=uniquelinks&utlId=h0d38006656)
|
17 |
|
18 |
+
# Narrated Slideshow Generator
|
19 |
+
|
20 |
AI-powered tool that converts any topic into a narrated slideshow with generated images and audio.
|
21 |
|
22 |
+
## Install dependencies:
|
23 |
pip install gradio google-genai python-dotenv pillow deepgram-sdk
|
24 |
|
25 |
+
## Set up API key:
|
26 |
+
Set up os.environ with your [GEMINI_KEY](https://aistudio.google.com/app/apikey)
|
|
|
27 |
|
28 |
+
## Run:
|
29 |
python app.py
|
30 |
|
31 |
+
## How it Works
|
|
|
|
|
|
|
32 |
Gemini 2.5 generates slide content and speaker notes
|
33 |
+
|
34 |
Gemini TTS creates audio narration
|
35 |
+
|
36 |
Imagen 3 generates slide images
|
37 |
+
|
38 |
Gradio provides the web interface
|