aeyes 1.0.1

Non-interactive webcam daemon for instant frame and video capture with live streaming
Documentation
1
2
3
4
5
6
7
8
9
10
use anyhow::Result;

#[tokio::main]
async fn main() -> Result<()> {
    if std::env::var("AEYES_DAEMON").ok().as_deref() == Some("1") {
        aeyes::run_daemon_from_env().await
    } else {
        aeyes::run_cli().await
    }
}