Skip to content
This repository has been archived by the owner on May 11, 2020. It is now read-only.

Latest commit

 

History

History
33 lines (27 loc) · 1.37 KB

README.md

File metadata and controls

33 lines (27 loc) · 1.37 KB

DAF Gen

Simple DAF (Delayed Auditory Feedback) generator aimed at reducing stuttering.

Screenshot

Screenshot-1

Background

What's this all about:

Building and requirements

DAF Gen is created via PyQt5 framework and uses the PyAudio module for voice recording. All the necessary PIP dependencies are listed in requirements.txt.

Build and run (on Windows machine):

> python3 -m pip install -r requirements.txt
> python3 dafgen.py

You can edit the Ui (dafgen.ui) with PyQt Designer as you like.

Also it may be convenient to freeze the code into standalone executable. This could be done with cx_Freeze:

> python3 setup.py build

Platform

DAF Gen is developed and tested on Windows, but it is runnable on Linux systems as well. In this case you should manually resolve DEB dependencies first:

$ pip3 install pyaudio
$ sudo apt-get install python3-pyqt5 pyqt5-dev-tools