master | develop |
---|---|
Nightly builds are available here: http://splamy.de/Nightly#ts3ab
This is our open-source TeamSpeak 3 audiobot project since
we haven't found any other open-source one so far.
The bot has come a long way is pretty stable by now, though sometimes he hangs up or needs some other maintenance.
For now I'd only recommend this bot on small servers since it doesn't cover any more complex right systems and relies on discipline.
The TS3AudioBot connects with at least 1 TeamSpeak3 Client instance which allows you to:
- issue commands to that instance.
- play music for your channel.
- tell him to stream to different Channels and/or Users simultaneously with TeamSpeak's whisper feature.
We use a self written TeamSpeak3 Client which gives us very low memory and cpu usage.
About 65MB Ram with 1700+ songs in history indexed
And 4-6% CPU usage on a single shared vCore from a Intel Xeon E5-1650 v2 @ 3.50GHz
Done:
- Extract Youtube and Soundcloud songs as well as stream Twitch
- Extensive history manager, including features like:
- getting the last x played songs
- get last x songs played by a certain user
- start any once played song again via id
- search in title from played songs
- (planned) combined search expressions
- (un)subscribe to the Bob to hear music in any channel
- (un)subscribe the Bob to certain channels
- Playlist management for all users
- Advanced permission configuration
- Extensive plugin support
- Web API
In progress:
- Own web-interface
- (Improved) Rights system
- Multi-instance
In planning:
See issues
All in all, the bot is fully operable only via chat (and actually only via chat).
Commands are invoked with !command.
Some commands have restrictions, like they can only be used in a private chat, only in public chat, or need admin rights.
For the full command list and tutorials see here in the wiki
If the bot can't play some youtube videos it might be due to some embedding restrictions, which are blocking this.
You can add a youtube-dl binary or source folder and specify the path in the config to try to bypass this.
If you dont want to compile the AudioBot yourself you can always download the latest version from our nightly server (linked at the top) and jump straight to "Getting the dependencies" for your platform.
- Any C# Compiler (
Visual Studio
with.NET 4.6
ormono 5.10.0+
withmsbuild
) - (Linux only) A C Compiler for Opus
Before we start: If you know what you are doing you can alternatively compile each dependency referenced here from source/git by yourself, but I won't add a tutorial for that.
Download the git repository with git clone --recurse-submodules https://github.com/Splamy/TS3AudioBot.git
.
- Get the latest mono version by following this tutorial and install
mono-devel
- See if you have NuGet by just executing
nuget
. If not, getnuget.exe
withwget https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
- Go into the directory of the repository with
cd TS3AudioBot
- Execute
nuget restore
ormono ../nuget.exe restore
to download all dependencies - Execute
msbuild /p:Configuration=Release TS3AudioBot.sln
to build the AudioBot - Getting the dependencies
- on Ubuntu:
Runsudo apt-get install libopus-dev ffmpeg
- on Arch Linux:
Runsudo pacman -S opus ffmpeg
- manually:
- Make the Opus script runnable with
chmod u+x InstallOpus.sh
and run it with./InstallOpus.sh
- Get the ffmpeg 32bit or 64bit binary.
- Extract the ffmpeg archive with
tar -vxf ffmpeg-git-XXbit-static.tar.xz
- Get the ffmpeg binary from
ffmpeg-git-*DATE*-64bit-static\ffmpeg
and copy it toTS3AudioBot/bin/Release/
- Make the Opus script runnable with
- on Ubuntu:
- Make sure you have installed
.NET Framework 4.6
- Build the AudioBot with Visual Studio.
- Getting the dependencies
- Create a group for the AudioBotAdmin with no requirements (just ensure a high enough
i_group_needed_member_add_power
). - Create a privilege key for the ServerAdmin group (or a group which has equivalent rights).
- The first time you'll need to run
mono TS3AudioBot.exe
without parameter and it will ask you a few questions. - Close the bot again and configure your
rights.toml
inTS3AudioBot\bin\Release\
to your desires. You can use the template rules and assign your admin as suggested in the automatically generated file, or dive into the Rights syntax here. - Start the bot again.
- Send the bot in a private message
!bot setup <key>
where<key>
is the privilege key from a previous step. - Now you can move the process to the background or close the bot with
!quit
in teamspeak and run it in the background. - (optional) You can configure the logging levels and outputs in the
NLog.config
file, read here to learn more. - Congratz, you're done! Enjoy listening to your favourite music, experimenting with the crazy command system or do whatever you whish to do ;).
For further reading check out the CommandSystem
- Run the TS3ABotUnitTests project in Visual Studio or Monodevelop.
This project is licensed under OSL-3.0.
Why OSL-3.0:
- OSL allows you to link to our libraries without needing to disclose your own project, which might be useful if you want to use the TS3Client as a library.
- If you create plugins you do not have to make them public like in GPL. (Although we would be happier if you shared them :)
- With OSL we want to allow you providing the TS3AB as a service (even commercially). We do not want the software to be sold but the service. We want this software to be free for everyone.