mirror of
https://dev.narayana.im/narayana/telegabber.git
synced 2026-08-05 04:07:07 +00:00
15 lines
386 B
Markdown
15 lines
386 B
Markdown
Overall flow looks like:
|
|
```
|
|
telegram->ntgcalls(opus dec under the hood)->opus enc->pion->xmpp
|
|
xmpp->pion->opus dec->ntgcalls(opus enc under the hood)->telegram
|
|
```
|
|
|
|
In code:
|
|
```
|
|
Call
|
|
├── Bridge (call state)
|
|
│ ├── Callee: tgsig|xmppsig.Callee (signaling)
|
|
│ └── Caller: tgsig|xmppsig.Caller (signaling)
|
|
├── TgToXmpp (audio)
|
|
└── XmppToTg (audio)
|
|
```
|