requires Rust 1.40 or higher (f64:from_be_bytes) -- if you are using typical install,
check local rust installation with rustup show
cargo build
with logging...
RUST_LOG=info cargo run --example connect
with crazy amount of logging...
RUST_LOG=trace cargo run --example connect
run specific test with logging (see note below about enabling from code):
RUST_LOG=trace cargo test can_read_command_message
Thinking that an API that looks like this would be nice
#[tokio::main]
async fn main() {
let url = "rtmp://localhost/live"
let conn = rtmp::Connection::new(url).await?;
// optional set timeout to 1 sec: conn.set_timeout(1000);
conn.connect().await?;
let result = conn.send_command("get_user_info", ["fred"]).await?
match result {
Err(e) => println!("command failed", e),
Ok(info) => println!("Got info: {}", info)
}
}
- how to run some code before test run? (for logging, I currently add
pretty_env_logger::init();
in the code of the test) - I've gotten a bit fast-and-loose with adding crates, would like to consider reducing dependencies once the basics are working
- maybe use procedural macro to implement reading/writing of chunks with less boilerplate code
git clone [email protected]:veriskope/docker-adobe-media-server.git
cd docker-adobe-media-server
docker-compose up
This library is distributed under same terms as the Rust language, under both the MIT license and the Apache License (Version 2.0).
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this repository by you, shall be dual licensed as MIT and Apache 2.0, without any additional terms or conditions.