ar08 commited on
Commit
37be4f7
·
verified ·
1 Parent(s): 34b89df

Update README.md

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