Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanshin authored Jul 7, 2023
2 parents b01a6ab + e003f3f commit 87e884c
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

# Wav2Vec ASR tool [RUSSIAN]

This app was created in research goals. Transcribes audifiles in Russian language. How it's work:

1) Check `config.yaml`
set your working directory for app and ouput directory:

```yaml
#YAML EXAMPLE
working_dir: D:\\WAV2VEC_ASR_WD\
output_dir: D:\\WAV2VEC_ASR_OUPUT\
```
2) Create venv and activate:
```code
python -m venv .venv
```
and install dependecies:
```code
pip install -r requirements.txt
```
3) start `main.py`
```code
python main.py
```
this will start necessary daemons. IMPORTANT -- closing main process kills daemons.

4) Paste audiofile into `working_dir` you set.

5) Wait for results in `output_dir` you set.
Binary file modified requirements.txt
Binary file not shown.

0 comments on commit 87e884c

Please sign in to comment.