Not smart. Not comprehensive. Not guaranteed to work.
ffpb-rs is rust implementation of ffpb. ffpb is an ffmpeg progress formatter. It will attempt to display a nice progress bar in the output, based on the raw ffmpeg output, as well as an adaptative ETA timer.
Visit releases for prebuilt binaries. You just need to copy that binary to any path specified in your PATH
environment variable.
Or you can even install it through cargo.
bash
cargo install ffpb
ffpb is is not even self-aware. Any argument given to the ffpb command is transparently given to the ffmpeg binary on your system, without any form of validation. So if you know how to use the ffmpeg cli, you know how to use ffpb.
bash
ffpb --help
Add this to your Cargo.toml file.
toml
[dependencies]
ffpb = "0.1.1"
Then call ffmpeg like this.
```rust
fn main() {
let args = ["-i", "test.mp4", "-c:v", "copy", "test.mkv"]
.iter()
.map(|x| x.to_string())
.collect::
ffpb::ffmpeg(&args).unwrap();
} ```
Install Rust
Clone Repository
bash
git clone https://github.com/clitic/ffpb-rs.git
bash
cargo build --release
© 2022 clitic
This repository is licensed under the MIT license. See LICENSE for details.