ts3j icon indicating copy to clipboard operation
ts3j copied to clipboard

An open-source Java Teamspeak 3 client library using the TS3 full client protocol

Results 21 ts3j issues
Sort by recently updated
recently updated
newest added

Hi! I don't get what I'm doing wrong here. This is in general my ClientSocket Bean: ``` @Bean public LocalTeamspeakClientSocket localTeamspeakClientSocket() throws IOException, TimeoutException, CommandException, InterruptedException, GeneralSecurityException { LocalTeamspeakClientSocket localTeamspeakClientSocket...

question

Hello, My main problem is to get stream from teamspeak and use it as SpeechToText. I'm stuck on getting "AudioChannel". Could you put some examples how to use https://github.com/Manebot/ts3?

so im trying to list all client or channels but every time i do so i got insufficient client permissions error, am i even able to list the channles without...

question

Im getting an java.lang.ArrayIndexOutOfBoundsException at LocalClientHandlerConnecting.java:109: Line 108 byte[] solution = x.modPow(BigInteger.valueOf(2L).pow(serverReplyStep3.getLevel()), n).toByteArray(); //it will contain the value 0. Line 109 System.arraycopy( solution, Math.abs(solution.length - 64), y, solution.length < 64...

Hello, i have problem with my ts3 server, when i try to connect , after step 127, bot always got timeout. When i try to connect to another server, everything...

I am unable to send long messages in Cyrillic(>215 chars). ```java client.sendChannelMessage( client .getClientInfo(client.getClientId()) .getChannelId(), StringUtils.repeat("ы", 216) ); ``` Its resulting packet exceeds `MAXIMUM_PACKET_SIZE=500` thus it will be sent [fragmented](https://github.com/Manevolent/ts3j/blob/25a7c94596d63727a20b6e869ea5af5c07e88019/src/main/java/com/github/manevolent/ts3j/protocol/socket/client/AbstractTeamspeakClientSocket.java#L338)....

bug

When iterating over LocalTeamspeakClientSocket#listClients(), Client#getUniqueIdentifier() returns an empty string for every Client. I did a workaround looking something like this: LocalTeamspeakClientSocket#getClientInfo(Client#getId()).getUniqueIdentifier() Example: ``` LocalTeamspeakClientSocket localTeamspeakClientSocket; ... for (Client client :...

bug
enhancement

I tried to check what permissions the clients had on my server with the following code: `for (Client c : client.listClients()) { boolean hasServerGroup=false; for (int serverGroup : c.getServerGroups()) {...

The AudioSender class just send me the statistics that he sent 50 packets and the encoder Time and just connects and disconnects. I dont know why this is not working.

``` [DEBUG] [NETWORK] READ COMMAND id=208 len=285 from /178.217.188.55:9987 [DEBUG] [PROTOCOL] DECRYPT COMMAND generation=1 java.lang.Exception: Problem reading COMMAND at com.github.manevolent.ts3j.protocol.socket.client.AbstractTeamspeakClientSocket.readPacket(AbstractTeamspeakClientSocket.java:657) at com.github.manevolent.ts3j.protocol.socket.client.AbstractTeamspeakClientSocket$NetworkReader.run(AbstractTeamspeakClientSocket.java:952) at java.lang.Thread.run(Thread.java:748) Caused by: java.io.IOException: failed to decrypt...

question