Questions tagged [teamspeak]

A VoIP software package from TeamSpeak Software.

TeamSpeak is a VoIP software package from TeamSpeak Software primarily targeted at gamers.

Use this tag when asking about using the TeamSpeak SDK or otherwise programmatically interfacing with TeamSpeak.

Links

85 questions
34
votes
4 answers

SQLite faster than MySQL?

I want to set up a teamspeak 3 server. I can choose between SQLite and MySQL as database. Well I usually tend to "do not use SQLite in production". But on the other hand, it's a teamspeak server. Well okay, just let me google this... I found…
boop
  • 7,413
  • 13
  • 50
  • 94
5
votes
0 answers

TeamSpeak SDK on Android Using Qt

I am trying to use TeamSpeak SDK on Android using Qt 1 - I link the .so file comes with TeamSpeak SDK to my Qt Project 2 - Release and APK file and setup it on my Android phone It works fine, without a problem and connects to TeamSpeak server, but I…
user7179690
  • 1,051
  • 3
  • 17
  • 40
5
votes
1 answer

Variables being changed by TeamSpeak API for PHP

I'm developing a tool for a website and I came up with an odd problem, or better, an odd situation. I'm using the code bellow to retrieve data from the TeamSpeak server. I use this info to build a profile on a user. $ts3 =…
Daniel Silva
  • 372
  • 2
  • 4
  • 14
3
votes
2 answers

TeamSpeak SDK in Qt

I'm trying to use the TeamSpeak SDK for a personal project in Qt, when I use this code in the main it works fine It compiles without problem. The problem is when I use it in Qt Mainwindow: Mainwindow.h #ifndef MAINWINDOW_H #define…
user7179690
  • 1,051
  • 3
  • 17
  • 40
3
votes
1 answer

TeamSpeak 3 SDK Connection problems

I´m trying to use the TeamSpeak SDK for a personal project, but the code I wrote gives me weird errors. I read the documentation many times to find an error but I can´t see why my program is not able to connect to the TeamSpeak Server. Here is the…
3
votes
1 answer

Teamspeak Framework Documentation Explanation

Im using the TS Framework to read out some data through the Teamspeak Query in PHP. But the documentation is horrible! To display all IPs from all clients I use this code: foreach($ts3_VirtualServer->clientList() as $client) { // skip query…
Joba
  • 828
  • 9
  • 28
2
votes
1 answer

docker-compose problems mounting the teamspeak data directory as a volume

I'm trying to start a teamspeak container and mount the sqlite files to the host. I use a fresh installed docker engine and docker-compose. I haven't done the post installation setup to run docker as non-root user (docs). That's why I think I have…
Joba
  • 828
  • 9
  • 28
2
votes
0 answers

Telnet protocol with dart

Is there any way to establish a telnet connection in dart? Basically what I want to achive it's to create a teamspeak 3 bot using Dart. I tought about using socket with I have no idea about how to go on. EDIT: I managed to estabilish a socket…
Mattia
  • 5,909
  • 3
  • 26
  • 41
2
votes
3 answers

Find item in QApplication by only the objectname

i want to find any object by a objectname string name inside of the QApplication Something like QApplication.instance().findByClassName("codeEditor") which should return a list of widgets with this classname that i can iterate over if there is…
Bluscream
  • 255
  • 1
  • 3
  • 18
2
votes
1 answer

TeamSpeak 3 PHP Framework

I am still learning PHP and it's the first time I am using this library (TeamSpeak 3 PHP Framework), I am trying to return a count of online users in a specific group, I tried a few different ways and no success. This one, counts all users in the…
GoldSpy98
  • 93
  • 1
  • 9
1
vote
0 answers

Why do I get an "ErrorID: 512 invalid clientID" even though the ID is correct?

I've got a php TeamSpeak Bot for quite a while and for one user I now have this weird phenomenon, that the clientID is invalid. So I store the clientIDs (TeamSpeakUUID) in a MySQL database. As example: I fetch the TeamSpeakUUID from the database and…
Schmaniel
  • 105
  • 7
1
vote
1 answer

Using TS3 PHP framework in TYPO3 Extension

I'm trying to write a simple extension which uses the Teamspeak3 PHP Framework (https://docs.planetteamspeak.com/ts3/php/framework/) just for showing the "Teamspeak3_Viewer_HTML" Element in the Frontend after giving the information like servername,…
sxbxstxxn
  • 15
  • 6
1
vote
0 answers

Python split string every nth char but only at linebreaks

Let me explain: I want to write a script for Teamspeak in python and i want to send splitted text messages. This is the code i got so far: msg = [msg[i:i + 1024] for i in range(0, len(msg), 1024)] for message in msg:…
Bluscream
  • 255
  • 1
  • 3
  • 18
1
vote
1 answer

How do I link libxml2 with zlib1 on Windows?

I need to compile libxml2 32-bit and 64-bit binaries for my TeamSpeak 3 plugin because I could not find a dll/lib 64-bit download. When I use my compiled libxml2.dll as a dependency in a command prompt application, it works just fine. However, when…
NobleUplift
  • 5,631
  • 8
  • 45
  • 87
1
vote
1 answer

Read TeamSpeak 3 Messages with java

im wondering if there is any other way to read out the TeamSpeak Channel Chat with java. I know that you could use a lua plugin which opens tha java program with the messages as parameter. The code for the Lua Plugin's event.lua file: (could be…
1
2 3 4 5 6