Go to file
Azlux 97d47d7073
Same python3 version
2023-10-26 17:39:35 +02:00
.github Move to Opencollective 2020-09-21 10:23:03 +02:00
lang Bot: TRADUORA Update (#376) 2023-08-03 18:36:00 +02:00
media Fix thumbnail and add flac metadata capabilities (#380) 2023-10-17 14:36:33 +02:00
scripts CI: Fix if statement. 2020-11-01 10:08:38 +08:00
static Remove built assets and update web dependencies 2020-06-20 17:38:16 -07:00
web Merge pull request #359 from azlux/dependabot/npm_and_yarn/web/yaml-and-postcss-loader--removed 2023-05-29 10:12:37 -04:00
.dockerignore Use dockerignore instead of "rm -rf .git" 2020-11-09 20:58:23 +01:00
.drone.yml Remove arm 32bits build 2023-10-24 17:27:44 +02:00
.gitignore feat: Add translation populating procedure for the web interface. 2020-07-12 16:05:11 +08:00
.gitmodules Using new pymumble pypi module 2020-04-21 18:47:24 +02:00
Dockerfile Same python3 version 2023-10-26 17:39:35 +02:00
Dockerfile.local Fix the web interface & update the Dockerfile (#378) 2023-10-24 17:07:58 +02:00
LICENSE Initial commit 2016-12-12 21:57:20 +01:00
README.md Fix the web interface & update the Dockerfile (#378) 2023-10-24 17:07:58 +02:00
command.py Fix `ytsearch -n' next page issue (#373) (#374) 2023-07-31 12:08:43 +02:00
configuration.default.ini Add bots option to exclude other bot users from autoplay logic (#301) 2023-07-03 10:42:40 +02:00
configuration.example.ini Add bots option to exclude other bot users from autoplay logic (#301) 2023-07-03 10:42:40 +02:00
constants.py fix: absolute path bug 2020-12-31 11:06:44 +08:00
database.py fix: URL item duration unit in seconds, bad skip button in floating player 2020-05-18 00:07:56 +08:00
entrypoint.sh temporary change to yt-dlp 2021-10-27 02:13:00 +02:00
interface.py Fix the web interface & update the Dockerfile (#378) 2023-10-24 17:07:58 +02:00
mumbleBot.py Add bots option to exclude other bot users from autoplay logic (#301) 2023-07-03 10:42:40 +02:00
requirements.txt build: Reverted `python-magic-bin` back to `python-magic`. 2022-01-16 09:23:52 -05:00
update.sh fix path 2020-07-08 02:23:56 +02:00
util.py Fix YouTube package update logic 2023-06-25 03:00:05 +03:00
variables.py feat: Prompt the position of the song added by cli. Implement #186. 2020-07-14 19:20:12 +08:00

README.md

botamusique

botamusique

Botamusique is a Mumble music bot. Predicted functionalities will be those people would expect from any classic music player.

Build Status

Features

  1. Support multiple music sources:
    • Music files in local folders (which can be uploaded through the web interface).
    • Youtube/Soundcloud URLs and playlists (everything supported by youtube-dl).
    • Radio stations from URL and http://www.radio-browser.info API.
  2. Modern and powerful web remote control interface. Powered by Flask. Which supports:
    • Playlist management.
    • Music library management, including uploading, browsing all files and edit tags, etc.
  3. Powerful command system. Commands and words the bot says are fully customizable. Support partial-match for commands.
  4. Ducking. The bot would automatically lower its volume if people are talking.
  5. Stereo sound. After Mumble 1.4.0, stereo output support has been added. Our bot is designed to work nicely with it naturally.
  6. Multilingual support. A list of supported languages can be found below.

Screenshots

botamusique in Mumble channel

botamusique web interface


Quick Start Guide

  1. Installation
  2. Configuration
  3. Run the bot
  4. Operate the bot
  5. Update
  6. Known issues
  7. Contributors

Installation

Dependencies

  1. Install python. We require a python version of 3.6 or higher.
  2. Install Opus Codec (which should be already installed if you installed Mumble or Murmur, or you may try to install opus-tools with your package manager).
  3. Install ffmpeg. If ffmpeg isn't in your package manager, you may need to find another source. I personally use this repository on my raspberry.

Docker

See https://github.com/azlux/botamusique/wiki/Docker-install

Both stable and nightly (developing) builds are available!

Manual install

Stable release (recommended)

This is current stable version, with auto-update support. To install the stable release, run these lines in your terminal:

curl -Lo botamusique.tar.gz http://packages.azlux.fr/botamusique/sources-stable.tar.gz
tar -xzf botamusique.tar.gz
cd botamusique
python3 -m venv venv
venv/bin/pip install wheel
venv/bin/pip install -r requirements.txt

Nightly build (developing version)

Click to expand!

This build reflects any newest change in the master branch, with auto-update support baked in. This version follow all commits into the master branch.

curl -Lo botamusique.tar.gz http://packages.azlux.fr/botamusique/sources-testing.tar.gz
tar -xzf botamusique.tar.gz
cd botamusique
python3 -m venv venv
venv/bin/pip install wheel
venv/bin/pip install -r requirements.txt

Build from source code

Click to expand!

You can checkout the master branch of our repo and compile everything by yourself. We will test new features in the master branch, maybe sometimes post some hotfixes. Please be noted that the builtin auto-update support doesn't track this version. If you have no idea what these descriptions mean to you, we recommend you install the stable version above.

git clone https://github.com/azlux/botamusique.git
cd botamusique
python3 -m venv venv
venv/bin/pip install wheel
venv/bin/pip install -r requirements.txt
(cd web && npm install && npm run build)
venv/bin/python3 ./scripts/translate_templates.py --lang-dir lang/ --template-dir web/templates/

Configuration

Please copy configuration.example.ini into configuration.ini, follow the instructions in that file and uncomment options you would like to modify. Not all sections are needed. You may just keep the options that matter to you. For example, if you only would like to set host, all you need you is keep

[server]
host=xxxxxx

in your configuration.ini.

Please DO NOT MODIFY configuration.default.ini, since if the bot realizes one option is undefined in configuration.ini, it will look into configuration.default.ini for the default value of that option. This file will be constantly overridden in each update.

We list some basic settings for you to quickly get things working.

Basic settings

  1. Usually, the first thing is to set the Murmur server you'd like the bot to connect to. You may also specify which channel the bot stays, and tokens used by the bot.
[server]
host = 127.0.0.1
port = 64738
  1. You need to specify a folder that stores your music files. The bot will look for music and upload files into that folder. You also need to specify a temporary folder to store music file downloads from URLs.
[bot]
music_folder = music_folder/
tmp_folder = /tmp/
  1. Web interface is disabled by default for performance and security reasons. It is extremely powerful, so we encourage you to have a try. To enable it, set
[webinterface]
enabled = True

Default binding address is

listening_addr = 127.0.0.1
listening_port = 8181

You can access the web interface through http://127.0.0.1:8181 if you keep it unchanged.

Note: Listening to address 127.0.0.1 will only accept requests from localhost. If you would like to connect from the public internet, you need to set it to 0.0.0.0, and set up username and password to impose access control. In addition, if the bot is behind a router, you should also properly set forwarding rules in you NAT configuration to forward requests to the bot.

  1. The default language is English, but you can change it in [bot] section:
[bot]
language=en_US

Available translations can be found inside lang/ folder. Currently, options are

  • en_US, English
  • es_ES, Spanish
  • fr_FR, French
  • it_IT, Italian
  • ja_JP, Japanese
  • zh_CN, Chinese
  1. Generate a certificate (Optional, but recommended)

By default, murmur server uses certificates to identify users. Without a valid certificate, you wouldn't able to register the bot into your Murmur server. Some server even refused users without a certificate. Therefore, it is recommended to generate a certificate for the bot. If you have a certificate (for say, botmusique.pem in the folder of the bot), you can specify its location in

[server]
certificate=botamusique.pem

If you don't have a certificate, you may generate one by: openssl req -x509 -nodes -days 3650 -newkey rsa:2048 -keyout botamusique.pem -out botamusique.pem -subj "/CN=botamusique"

Sections explained

  • server: configuration about the server. Will be overridden by the ./mumbleBot.py parameters.
  • bot: basic configuration of the bot, eg. name, comment, folder, default volume, etc.
  • webinterface: basic configuration about the web interface.
  • commands: you can customize the command you want for each action (eg. put help = helpme , the bot will respond to !helpme)
  • radio: a list of default radio (eg. play a jazz radio with the command !radio jazz)
  • debug: option to activate ffmpeg or pymumble debug output.

Run the bot

If you have set up everything in your configuration.ini, you can venv/bin/python mumbleBot.py --config configuration.ini

Or you can venv/bin/python mumbleBot.py -s HOST -u BOTNAME -P PASSWORD -p PORT -c CHANNEL -C /path/to/botamusique.pem

If you want information about auto-starting and auto-restarting of the bot, you can check out the wiki page Run botamusique as a daemon In the background.

For the detailed manual of using botamusique, please see the wiki.

Operate the bot

You can control the bot by both commands sent by text message and the web interface.

By default, all commands start with !. You can type !help in the text message to see the full list of commands supported, or see the examples on the wiki page.

The web interface can be used if you'd like an intuitive way of interacting with the bot. Through it is fairly straightforward, a walk-through can be found on the wiki page.

Update

If you enable auto_check_update, the bot will check for updates every time it starts. If you are using the recommended install, you can send !update to the bot (command by default).

If you are using git, you need to update manually:

git pull --all
git submodule update
venv/bin/pip install --upgrade -r requirements.txt

Known issues

  1. During installation, you may encounter the following error:
ImportError: libtiff.so.5: cannot open shared object file: No such file or directory

You need to install a missing library: apt install libtiff5

  1. In the beginning, you may encounter the following error even if you have installed all requirements:
Exception: Could not find opus library. Make sure it is installed.

You need to install the opus codec (not embedded in all system): apt install libopus0

  1. MacOS Users may encounter the following error:
ImportError: failed to find libmagic.  Check your installation

This is caused by missing libmagic binaries and can be solved by

brew install libmagic

One may also install python-magic-bin instead of python-magic.

  1. If you have a large amount of music files (>1000), it may take some time for the bot to boot, since it will build up the cache for the music library on booting. You may want to disable this auto-scanning by setting refresh_cache_on_startup=False in [bot] section and control the scanning manually by !rescan command and the Rescan Files button on the web interface.

  2. Alpine Linux requires some extra dependencies during the installation (in order to compile Pillow):

python3-dev musl-lib libmagic jpeg-dev zlib-dev gcc

For more information, see #122.

I need help!

If you ran into some problems in using the bot, or discovered bugs and want to talk to us, you may

  • Start a new issue,
  • Ask in the Matrix channel of Mumble #mumble:matrix.org (we are usually there to help).

Contributors

If you want to help us develop, you're welcome to fork and submit pull requests (fixes and new features). We are looking for people helping us translating the bot. If you'd like to add a new language or fix errors in existed translations, feel free to catch us in the IRC channel #mumble, or just email us!

The following people joined as collaborators for a faster development, big thanks to them:

  • @TerryGeng
  • @mertkutay

Feel free to ask me if you want to help actively without using pull requests.