kozabrada123
kozabrada123
It seems that `embed` is a deprecated field (in favor of `embeds`), which is why it isn't documented in the discord docs   Some relevant info: - Encryption is done using xsalsa (specifically xsalsa20_poly1305, xsalsa20_poly1305_suffix or xsalsa20_poly1305_lite), I've found the easiest way to implement this is probably...
Oh and we also have no info about video, so we should probably implement voice first
Doing some *research*, video uses [VP8](https://en.wikipedia.org/wiki/VP8) and [VP9](https://en.wikipedia.org/wiki/VP9), maybe [env-libvpx-sys](https://crates.io/crates/env-libvpx-sys) in rust? ```json { "codecs": [ { "name": "opus", "type": "audio", "priority": 1000, "payload_type": 109, "rtx_payload_type": null }, { "name":...