Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# ๐๏ธ EchoMorph.ai Pipeline
|
2 |
|
3 |
This project provides a **Colab-friendly pipeline** for:
|
@@ -34,12 +56,17 @@ This project provides a **Colab-friendly pipeline** for:
|
|
34 |
|
35 |
## ๐ ๏ธ Setup
|
36 |
|
37 |
-
Run inside **Google Colab** (preferred) or
|
38 |
|
39 |
### 1. Install dependencies
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
```bash
|
41 |
-
pip install
|
42 |
-
|
43 |
-
pip install resemblyzer spectralcluster scikit-learn librosa
|
44 |
-
pip install deep-translator murf requests
|
45 |
-
sudo apt-get -y install ffmpeg
|
|
|
1 |
+
---
|
2 |
+
title: "EchoMorph.ai"
|
3 |
+
emoji: "๐๏ธ"
|
4 |
+
colorFrom: "indigo"
|
5 |
+
colorTo: "purple"
|
6 |
+
sdk: "streamlit"
|
7 |
+
python_version: "3.10"
|
8 |
+
app_file: "app.py"
|
9 |
+
fullWidth: true
|
10 |
+
pinned: false
|
11 |
+
tags:
|
12 |
+
- audio
|
13 |
+
- speech-recognition
|
14 |
+
- diarization
|
15 |
+
- whisper
|
16 |
+
- tts
|
17 |
+
- dubbing
|
18 |
+
- japanese
|
19 |
+
short_description: "Whisper + diarization + TTS dubbing pipeline"
|
20 |
+
suggested_hardware: "t4-small"
|
21 |
+
---
|
22 |
+
|
23 |
# ๐๏ธ EchoMorph.ai Pipeline
|
24 |
|
25 |
This project provides a **Colab-friendly pipeline** for:
|
|
|
56 |
|
57 |
## ๐ ๏ธ Setup
|
58 |
|
59 |
+
Run inside **Google Colab** (preferred) or locally with Python 3.9+.
|
60 |
|
61 |
### 1. Install dependencies
|
62 |
+
|
63 |
+
Dependencies are specified in:
|
64 |
+
|
65 |
+
- `requirements.txt` โ Python packages
|
66 |
+
- `packages.txt` โ System packages (apt)
|
67 |
+
|
68 |
+
So on local setup, you can run:
|
69 |
+
|
70 |
```bash
|
71 |
+
pip install -r requirements.txt
|
72 |
+
sudo apt-get -y install ffmpeg libsndfile1
|
|
|
|
|
|