Rown is a command-line tool written in Rust for downloading files with the ability to download them in parallel using multiple parts.
cargo run -- --url https://example.com/video --parts 2 --output out.mp4
--url
: The URL of the file to be downloaded.--parts
(optional): Number of parallel parts to download. Defaults to 1 if not specified.--output
: The name of the output file.
cargo run -- --url https://example.com/video --parts 2 --output out.mp4
This will download the file from the specified URL in two parallel parts and save it as out.mp4
.
To build Rown, make sure you have Rust installed, and then run:
cargo build --release
After building, you can run Rown with:
./target/release/rown --url https://example.com/video --parts 2 --output out.mp4