Bilibili live danmu websocket library
```rust use anyhow::Result; use bililive::{wssocketobject, WsStreamMessageType}; use tokio::sync::mpsc::{self, UnboundedReceiver};
async fn main() { let (tx, rx) = mpsc::unbounded_channel();
// bilibili live room id (true id): 22746343
let ws = wssocketobject(tx, 22746343);
if let Err(e) = tokio::select! {v = ws => v, v = recv(rx) => v} { eprintln!("{}", e); } }
async fn recv(mut rx: UnboundedReceiver
Ok(())
}
``
Or run
cargo run --example danmu`