Audio Filters für Hearing in Penguins
- Make sure docker and docker-compose are installed.
- Place the audio files to be filtered in
noises
. - Start the notebook by calling
docker-compose up -d
. - Call
make filter
. - The filtered files will be placed in
production
.
- Make sure docker and docker-compose are installed.
- Place the audio files to be filtered in
animals
ornoises
(or both). - Start the notebook by calling
docker-compose up -d
. - Call
make spectro
. - The filtered files will be placed in
production
.
- Make sure docker and docker-compose are installed.
- Place the audio files to be filtered in
animals
ornoises
(or both). - Start the notebook by calling
docker-compose up -d
. - Call
make wave
. - The filtered files will be placed in
production
.
The following is only relevant if you wish to write your own notebooks.
After cloning the repo, open the repo folder and
create a folder notebook-home/.jupyter
and notebook-home/.local
cd HIP_Audio_Filters
mkdir -p notebook-home/.jupyter/
mkdir -p notebook-home/.local/
Call docker-compose up -d
to start the notebook.
Open a terminal in the notebook
docker exec -ti filters-notebook script -q -c /bin/bash
While in the notebook, install the R kernel by calling
Rscript -e "IRkernel::installspec()";
While in the notebook (see above), call jupyter notebook list
to get the notebooks security token. Copy this token.
Type exit
to return to the host computer.
Open http://localhost:9081
in a browser
At the bottom of the page, under "Setup a password", paste the token and set your password.
Logs can be seen by calling docker logs filters-notebook
.