Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -1,40 +1,48 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
* Linux
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
- [
|
38 |
-
- [
|
39 |
-
- [
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
title: Auto-caption
|
4 |
+
sdk: gradio
|
5 |
+
emoji: 💻
|
6 |
+
colorFrom: indigo
|
7 |
+
colorTo: purple
|
8 |
+
short_description: Turns any video into a shorts auto-caption
|
9 |
+
---
|
10 |
+
# auto-subtitle-generator
|
11 |
+
A program that generates subtitles in the format of instagram and facebook reels, youtube shorts and tiktok videos.
|
12 |
+
***
|
13 |
+
### Installation and usage:
|
14 |
+
1. If using git to download repo type: `git clone https://github.com/zubu007/auto-subtitle-generator.git`
|
15 |
+
2. Check if you have [ffmpeg](https://ffmpeg.org) installed on your system
|
16 |
+
* Open a terminal and type `ffmpeg -version`. If you get an error, you need to install ffmpeg.
|
17 |
+
|
18 |
+
3. Install [ffmpeg](https://ffmpeg.org)
|
19 |
+
* On Windows
|
20 |
+
* Install [Chocolately](https://chocolatey.org/install) and type `choco install ffmpeg`
|
21 |
+
* On Linux
|
22 |
+
* `sudo apt install ffmpeg`
|
23 |
+
* On Mac
|
24 |
+
* `brew install ffmpeg`
|
25 |
+
|
26 |
+
4. Install the necessary python packages in your environment using `pip install -r requirements.txt`
|
27 |
+
|
28 |
+
5. Run the python script
|
29 |
+
* Windows: `python GUI.py`
|
30 |
+
* Linux/Mac: `python3 GUI.py`
|
31 |
+
|
32 |
+
|
33 |
+
***
|
34 |
+
|
35 |
+
### TODO
|
36 |
+
- [ ] Control number of words shown together with a variable
|
37 |
+
- [ ] Add support for multiple languages
|
38 |
+
- [ ] Add support for multiple video formats
|
39 |
+
- [ ] Add support for multiple video resolutions
|
40 |
+
- [ ] Add comments to the code
|
41 |
+
- [ ] Update this read.me to make professional
|
42 |
+
- [ ] Add option to select font color
|
43 |
+
- [ ] Font size option
|
44 |
+
|
45 |
+
### Done
|
46 |
+
- [x] Create a GUI for the program
|
47 |
+
- [x] Design UI for the program
|
48 |
+
- [x] Create variables for text size and font.
|