pytgcalls / ntgcalls

A Native Implementation of Telegram Calls in a seamless way.
https://pytgcalls.github.io
GNU Lesser General Public License v3.0
49 stars 10 forks source link

Will this dll library work for other languages? #5

Closed Eriter555 closed 11 months ago

Eriter555 commented 11 months ago

Will this dll library work for other languages? What should I do after calling createCall in tdLib?

Laky-64 commented 11 months ago

Yes, it works with any language, also here’s how connecting to a group call works:

https://github.com/pytgcalls/ntgcalls/blob/master/examples/python/shell_reader.py

Eriter555 commented 11 months ago

Yes, it works with any language, also here’s how connecting to a group call works:

https://github.com/pytgcalls/ntgcalls/blob/master/examples/python/shell_reader.py

Can it be used for calls in private chats or only for group calls? Thank you for your answers.

rojvv commented 11 months ago

Only group calls.

Eriter555 commented 11 months ago

Maybe it makes sense to add a communication option for all types of calls? It would be convenient to have a dll and a wrapper to it and a couple of examples of its use in C or C++.

Laky-64 commented 11 months ago

Regarding “all kinds of calls” we will add support later, for now it is not yet planned, while the examples on how to use it in c++ are not yet actually there, but we are working on intuitive documentation to guide users through the implementation of the library in other languages, so for now the most you can do is by reading how we did the example in golang