You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_NOTE: If you get the error: `fatal: destination path 'Transcriber' already exists and is not an empty directory.`, you will need to either delete the existing Transcriber folder, or rename the existing one. Or install to a custom directory by replacing NEW_FOLDER_NAME in the following command: `git clone https://github.com/Noah-Jaffe/Transcriber.git NEW_FOLDER_NAME`._
110
-
1. Enter the Transcriber directory in the terminal
_NOTE: If you get the error: `fatal: destination path 'Transcribble' already exists and is not an empty directory.`, you will need to either delete the existing Transcribble folder, or rename the existing one. Or install to a custom directory by replacing NEW_FOLDER_NAME in the following command: `git clone https://github.com/Noah-Jaffe/Transcribble.git NEW_FOLDER_NAME`._
110
+
1. Enter the Transcribble directory in the terminal
111
+
`cd Transcribble` or `cd ~/Documents/Transcribble`
112
112
1. Setup a python virtual environment if you want, skip this step if you are unfamiliar.
113
113
`python -m venv .venv`
114
114
- <aid="start-activate-venv"></a>Start/Activate your virtual python environment with
@@ -119,8 +119,8 @@ Now that you have all of the requirements installed we will install the Transcri
- if the pip install fails try `pip install -r explicit_requirements.txt --no-cache`
123
-
- if that fails, [report the issue to the maintainer or your point of contact](https://github.com/Noah-Jaffe/Transcriber/issues)
122
+
- if the pip install fails try installing each package one at a time, by line as it is written in the requirements.txt file.
123
+
- if that fails, [report the issue to the maintainer or your point of contact](https://github.com/Noah-Jaffe/Transcribble/issues)
124
124
- The only requirements not in the txt files are `torch` `torchaudio` and `torchvision`
125
125
1. Install requirements not in requirements.txt
126
126
@@ -142,7 +142,7 @@ Now that you have all of the requirements installed we will install the Transcri
142
142
- Example for windows:
143
143
Save anywhere as "`Transcribe.ps1`"
144
144
```sh
145
-
cd ~/Documents/Transcriber
145
+
cd ~/Documents/Transcribble
146
146
# if you used a virtual environment uncomment the next line (remove the #)
147
147
#./venv/Scripts/activate
148
148
python main.py
@@ -151,7 +151,7 @@ Now that you have all of the requirements installed we will install the Transcri
151
151
Save anywhere as "`Transcribe.sh`"
152
152
```
153
153
#!/bin/bash
154
-
cd ~/Documents/Transcriber
154
+
cd ~/Documents/Transcribble
155
155
# if you used a virtual environment uncomment the next line (remove the #)
156
156
# source .venv/bin/activate
157
157
python main.py
@@ -201,15 +201,14 @@ To attempt patch #1:
201
201
- If using a virtual environment start/activate that now. [See here](#start-activate-venv)
202
202
- Run `pip install transformers==4.38.2`
203
203
204
-
If you are already using this version of transformers, I'm sorry but the only known workaround is to split up the original file into smaller segments, and run the smaller segments through the transcriber again. Eventually you may hit a small section of the original audio file that crashes constantly, for that you will have to transcribe by hand.
204
+
If you are already using this version of transformers, I'm sorry but the only known workaround is to split up the original file into smaller segments, and then run the smaller segments through the transcriber again. Eventually you may hit a small section of the original audio file that crashes constantly, for that you will have to transcribe by hand.
205
205
206
-
*NOTE: v1.1.0 is in the works with an automated fix for this*
207
206
208
-
### How to update my Transcriber app?
207
+
### How to update my Transcribble app?
209
208
210
209
If you followed the instructions on this readme file, or installed this repo with git:
211
-
1. Enter the Transcriber directory in the terminal
212
-
`cd Transcriber` or `cd ~/Documents/Transcriber`
210
+
1. Enter the Transcribble directory in the terminal
211
+
`cd Transcribble` or `cd ~/Documents/Transcribble`
213
212
1. Update to the latest version with the following commands:
214
213
`git pull`
215
214
1. Re-install the latest requirements
@@ -227,14 +226,11 @@ If you followed the instructions on this readme file, or installed this repo wit
227
226
228
227
### How do I get rid of these ugly @debug lines in my .cha file?
229
228
230
-
Edit your [transcribe_proc.py](transcribe_proc.py) file to update that the line that is
231
-
`DEBUG_MODE = True`
232
-
to
233
-
`DEBUG_MODE = False`
229
+
De-select the Debug checkbox before clicking the start transcribe button.
234
230
235
231
### Where is the core logic for the AI?
236
232
237
-
See function `transcribe_file` in [transcribe_proc.py](transcribe_proc.py). Note that you can ignore the chunks that reference or are dependant on DEBUG.
233
+
See function `transcribe_file` in [transcribe_proc.py](transcribe_proc.py).
238
234
239
235
### Yall got some Morphosyntax?
240
236
In function `transcribe_file` in [transcribe_proc.py](transcribe_proc.py):
@@ -256,5 +252,6 @@ so that it looks like
256
252
-[ ] Bundle into single executable to be more user friendly?
0 commit comments