On your Raspberry Pi, you need to install some dependencies:
libttspico-utils
for speech synthesis using thepico2wave
commandmediainfo
for getting information about generated speech
sudo apt install libttspico-utils mediainfo
ffmpeg
should already be installed. This is required to package the video with the generated audio
You should install Python requirements in a virtual environment. This is designed to run on Python 3, so you can initialise your virtual environment using Python's built-in venv
module, then activate the environment and install dependencies like so:
python3 -m venv venv
source venv/bin/activate
pip install -U pip
pip install -e ".[pi]"
If you want to install dependencies on another computer (e.g. if you're editing the code and your IDE is trying to help you with code completion), install the dependencies from requirements.txt
instead of that last pip install
line above:
pip install -r requirements.txt
This project uses the built-in Python UnitTest module. To run the tests, call python -m unittest
Configuration is done through environment variables. Look at config.py for the available variables. You can set them by creating a .env
file in the project root.