Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kagchi/voe-old
Tiny and embeddable Revolt media transport library based on Netty.
https://github.com/kagchi/voe-old
Last synced: 9 days ago
JSON representation
Tiny and embeddable Revolt media transport library based on Netty.
- Host: GitHub
- URL: https://github.com/kagchi/voe-old
- Owner: KagChi
- License: gpl-3.0
- Created: 2022-07-31T13:17:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-20T11:54:37.000Z (4 months ago)
- Last Synced: 2024-10-11T00:54:30.904Z (26 days ago)
- Language: Kotlin
- Size: 171 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# voe
**Tiny and embeddable Revolt media transport library based on Netty.**
[![GitHub](https://img.shields.io/github/license/nezuchan/kotlin-template)](https://github.com/nezuchan/kotlin-template/blob/main/LICENSE)
[![Discord](https://discordapp.com/api/guilds/785715968608567297/embed.png)](https://nezu.my.id)#### Disclaimer:
- This is based on [koe](https://github.com/KyokoBot/koe), with modified API[Get it on JitPack](https://jitpack.io/#org.nezu.voe/core)
Example:
```groovy
repositories {
maven { url 'https://jitpack.io' }
}// ...
dependencies {
implementation 'org.nezu.voe:core:VERSION'
}
````VERSION` can be either a tag or a git commit hash.
#### Dependencies
- Netty
- slf4j#### Features
- Easily extendable for stuff such as support for codecs other than Opus sending
- Basic RTCP support for measuring packet loss and other stuff.#### Non-goals / won't do
- Encoding - Voe only implements voice server communication, not voice handling itself, so it only accepts Opus frames and you have set up an encoder yourself, use [lavaplayer](https://github.com/sedmelluq/lavaplayer), libav/ffmpeg or anything else.