October 2018
Intermediate to advanced
420 pages
10h 26m
English
Finally, the time has come to test this audio encoder! In order to test it easily, some audio recordings are available in the audio-dataset folder of the code files. It is obviously possible to use any other MP3 file. This application is structured as a Python package, so it can be installed with the Python setup tools. From a virtualenv environment, type the following shell command to install the server:
(venv-rx)$ python3 setup.py install
This installs the application package, as well as all its dependencies. When developing an application, it can be annoying to install it many times to test some code changes. In such cases, the setup tool's develop command is useful:
(venv-rx)$ python3 setup.py develop
The develop ...