Development of tools to support designers in building auditory displays
A desktop application built using PyQt5 aimed to aid novice designers in building auditory displays. This is an open source project that encourages designers/developers to download and further contribute to the development of the application to help the wider community by contributing the ongoing development in research on auditory displays, which has been influenced by the people at the International Community for Auditory Displays.
The tools have been developed using Doon MacDonald’s research: https://smartech.gatech.edu/handle/1853/60074 \
With the aid of Tony Stockman my supervisor and discussions with Doon, the application that I have developed in this short period of time have achieved the core goals I set at the start of this journey.
Note: A video demonstration can be watched following the website linked to this repo.
Python Version 3.5 - it should work with any Python 3 version or later\
Note: Make sure that it is in PATH\
https://www.python.org/downloads/release/python-350/
Server > Users and Privileges > Add account
. Once you have filled in the login detail, go to the Administrative Roles tab and check DBA to check all at once and then click apply to save: https://dev.mysql.com/downloads/workbench/For Windows OS the application can be located in the folder:\Windows > dist > soundtrad
\
It is named soundtrad and should have a logo. Ensure you have sound files located locally, I have created a sound folder located in the same folder as the application, for where you can keep your sound files in.
For Mac OS the application can be located in the folder:\Mac > dist
\
It is named soundtrad. Ensure you have sound files located locally, I have created a sound folder located in the same folder as the application, for where you can keep your sound files in. Images folder just contains logo’s for the application.
The application has been made into an executable file, however I have listed the libraries you may need to pip/pip3 install or if you want to run it via the source code folder in terminal instead:
pip install PyQt5
pip install pydub
pip install matplotlib
pip install mysqlclient
If you are on MAC Install this globally:\brew install mysql
I use Qt creator to view the code, but it is obviously optional. Here is the link to download the opensource version:\
https://www.qt.io/download
Downloading PyQt5 has been a bit buggy to download via terminal lately for on windows OS with the recent updates that have rolled out. So, if the above does not work try downloading the exe file from sourceforge: https://sourceforge.net/projects/pyqt/files/PyQt5/ \
Alternatively you could install using brew:\brew install pyqt5
The MySQLdb download may not work above as I am using a windows OS and had to find
a different method, so possibly try these alternatives instead:
conda install mysqlclient
brew install mysql-connector-c (will need to pip install homebrew first)
pip install mysql-python
When trying to install MySQLdb on my mac I had problems due to setup tools being out of date so make sure you run this line to check:\pip install --upgrade setuptools
You may get an error like this on a mac:
ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/MySQLdb/_mysql.cpython-37m-darwin.so, 2): Library not loaded: libssl.1.0.0.dylib
Referenced from: /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/MySQLdb/_mysql.cpython-37m-darwin.so
Reason: image not found
This may mean you may not be able to use the executable. However if running via source code folder type export DYLD_LIBRARY_PATH=/usr/local/mysql/lib/
in your terminal and see if problem persists. You can add it to your .profile file to make this persistent so you don’t need to run it every time. After type python3 soundtrad.py
to run like normal.
The repository has sound files included in the folder “sound”: \SounTrAD > dist > soundtrad > sound
\
All the sound files are either from FreeSound, which are all free to download and use or Ikson:\
https://www.iksonmusic.com/
This has been a very interesting project to work on which combines my programming skills, with my new interest in interaction/ux design. It has made me discover a new world of interacting with technology. The project will now be passed back to Doon to look further into developing this research into something more concrete, so hopefully this has helped aid her in the next steps.