Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,29 +1,15 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version:
|
| 8 |
app_file: app.py
|
| 9 |
-
pinned:
|
| 10 |
---
|
| 11 |
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
- App transcribes speech (Groq Whisper `whisper-large-v3`) and summarizes the result in **English** or **Urdu**.
|
| 17 |
-
- Designed to handle long files by automatic chunking.
|
| 18 |
-
|
| 19 |
-
## Setup (Hugging Face Spaces)
|
| 20 |
-
1. Upload `app.py`, `requirements.txt`, and this `README.md`.
|
| 21 |
-
2. In **Settings β Repository secrets**, add:
|
| 22 |
-
- `GROQ_API_KEY` β your Groq API key
|
| 23 |
-
- `HUGGINGFACE_API_TOKEN` β your Hugging Face token (starts with `hf_`)
|
| 24 |
-
3. Rebuild the Space.
|
| 25 |
-
|
| 26 |
-
## Notes
|
| 27 |
-
- Large videos: The app downloads YouTube audio into a temp folder, converts to WAV, splits into 5-minute chunks and transcribes each chunk to avoid size limits.
|
| 28 |
-
- Urdu summaries use `facebook/mbart-large-50-many-to-many-mmt` (works reasonably, but if you need more accurate Urdu summarization we can switch to or fine-tune a better Urdu-capable model).
|
| 29 |
-
- Temporary files are cleaned up automatically.
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Smart Transcriber & Tutor
|
| 3 |
+
emoji: π§
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: green
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: "4.44.0"
|
| 8 |
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
---
|
| 11 |
|
| 12 |
+
A bilingual (Urdu + English) transcription and learning assistant.
|
| 13 |
+
π§ Upload or record audio, or paste a YouTube link.
|
| 14 |
+
π§ It transcribes, summarizes, and creates beginner tutorials.
|
| 15 |
+
π Ideal for teachers, students, and researchers.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|