This is a very simple GUI wrapper for yt-dlp video for macOS.
I built this for a teacher that is not familiar with the terminal but needs sometimes to grab a video from the internet to show it to her pupils.
The code is based on Tauri, Rust + HTML.
To build the app while developing, you can run"
cargo tauri devTo build the bundle you can run:
cargo tauri build --bundles appTo build the bundle as a universal macOS binary, you first need to install the rust target for the missing target:
rustup target add aarch64-apple-darwin
rustup target add x86_64-apple-darwintauri build --target universal-apple-darwinFor more information, check the Tauri documentation.