I don't know how, But They Found Me (BTFM).
btfm is a Discord bot that listens on a voice channel for key phrases, and plays audio clips into the channel in response.
You'll need to register a bot with Discord. Go to the Developer application page and create an application.
Download the deepspeech native_client build for your platform, along with the acoustic model and external scorer.
If you're not sure which deepspeech build you need, you likely want the x86_64 CPU build
If you don't want to build BTFM from source, there's an x86_64 build for Linux for each release that you can download. For example:
wget https://github.com/jeremycline/btfm/releases/download/v0.13.0/btfm-x86_64-unknown-linux-gnu
mv btfm-x86_64-unknown-linux-gnu /usr/local/bin/btfm
Extract the deepspeech shared library and set up your paths so that it can be found; for example, on Fedora:
wget "https://github.com/mozilla/DeepSpeech/releases/download/v0.9.3/native_client.amd64.cpu.linux.tar.xz"
mkdir deepspeech && tar -xvf native_client.amd64.cpu.linux.tar.xz -C deepspeech
sudo cp deepspeech/libdeepspeech.so /usr/local/lib64/
echo "/usr/local/lib64" | sudo tee -a /etc/ld.so.conf.d/local.conf
sudo ldconfig
BTFM uses a PostgreSQL database to store audio clip metadata. Install PostgreSQL and create a database. For example:
``` sudo apt install postgresql postgresql-contrib sudo systemctl restart postgresql.service sudo -u postgres createuser btfm sudo -u postgres createdb btfm sudo -u postgres psql -c "ALTER USER btfm PASSWORD 'password';" sudo -u postgres psql -c "ALTER DATABASE btfm OWNER to btfm;" export DATABASE_URL=postgres://btfm:password@localhost/btfm
cargo install sqlx-cli cargo sqlx database setup ```
Create the data directory where the audio clips are stored. For example:
mkdir /var/lib/btfm/
An example configuration file:
```
datadirectory = '/var/lib/btfm/' databaseurl = 'postgres://btfm:password@localhost/btfm' discord_token = 'your discord token here'
channel_id = 0
guild_id = 0
logchannelid = 0
rate_adjuster = 100
[deepspeech] model = '/var/lib/btfm/deepspeech.pbmm' scorer = '/var/lib/btfm/deepspeech.scorer' ```
You can place this, for example, in /var/lib/btfm/btfm.toml
.
An example systemd unit to run BTFM:
``` [Unit] Description=BTFM Discord bot After=network.target
[Service] Type=simple User=btfm Group=btfm Environment="BTFM_CONFIG=/var/lib/btfm/btfm.toml" ExecStart=/usr/local/bin/btfm run -v Restart=always RestartSec=60
[Install] WantedBy=multi-user.target ```
If building from source, install make, autotools, libopus headers, libsqlite headers, libsodium headers, and the openssl headers.
Add clips and phrases with the btfm clip
sub-commands:
BTFM_CONFIG=/var/lib/btfm/btfm.toml btfm add "they found me" "I don't know how, but they found me..." run-for-it-marty.mp3
See btfm clip --help
for available sub-commands and options.
Start the bot with btfm run
. See the systemd unit above for details.```
See btfm run --help
for command line arguments and documentation. To
obtain the guild and channel ID, go to your Discord User Settings ->
Appearance, and enable Developer Mode. You can then right-click on the server
for and select "Copy ID" for the guild ID, and then right-click the voice
channel you want the bot to watch and "Copy ID" that as well.
If you are so inclined, there is a Dockerfile and some helper scripts in the devel/
folder
that you may find to be handy for development. The scripts assume you have
podman installed. You can use build.sh
to build a development container,
and you can use cargo.sh
to run Rust's cargo tool inside
the container. You can probably guess what test.sh
does, if you are somebody's kid and are
smart.