Adds `moq-api` to get/set the origin for each broadcast. Not used by default for local development.
36 lines
927 B
Rust
36 lines
927 B
Rust
use clap::Parser;
|
|
use std::net;
|
|
use url::Url;
|
|
|
|
#[derive(Parser, Clone, Debug)]
|
|
pub struct Config {
|
|
/// Listen for UDP packets on the given address.
|
|
#[arg(long, default_value = "[::]:0")]
|
|
pub bind: net::SocketAddr,
|
|
|
|
/// Advertise this frame rate in the catalog (informational)
|
|
// TODO auto-detect this from the input when not provided
|
|
#[arg(long, default_value = "24")]
|
|
pub fps: u8,
|
|
|
|
/// Advertise this bit rate in the catalog (informational)
|
|
// TODO auto-detect this from the input when not provided
|
|
#[arg(long, default_value = "1500000")]
|
|
pub bitrate: u32,
|
|
|
|
/// Connect to the given URL starting with https://
|
|
#[arg(value_parser = moq_url)]
|
|
pub url: Url,
|
|
}
|
|
|
|
fn moq_url(s: &str) -> Result<Url, String> {
|
|
let url = Url::try_from(s).map_err(|e| e.to_string())?;
|
|
|
|
// Make sure the scheme is moq
|
|
if url.scheme() != "https" {
|
|
return Err("url scheme must be https:// for WebTransport".to_string());
|
|
}
|
|
|
|
Ok(url)
|
|
}
|