{"id":15093510,"url":"https://github.com/clitic/ffpb-rs","last_synced_at":"2025-04-12T07:42:00.260Z","repository":{"id":62444557,"uuid":"467501543","full_name":"clitic/ffpb-rs","owner":"clitic","description":"A coloured progress bar for ffmpeg","archived":false,"fork":false,"pushed_at":"2024-05-14T19:16:16.000Z","size":233,"stargazers_count":11,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-26T02:51:12.335Z","etag":null,"topics":["ffmpeg","ffmpeg-command","progress-bar"],"latest_commit_sha":null,"homepage":"https://docs.rs/ffpb","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/clitic.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-08T12:24:44.000Z","updated_at":"2025-03-18T19:14:58.000Z","dependencies_parsed_at":"2024-10-14T05:41:21.957Z","dependency_job_id":null,"html_url":"https://github.com/clitic/ffpb-rs","commit_stats":{"total_commits":14,"total_committers":2,"mean_commits":7.0,"dds":0.0714285714285714,"last_synced_commit":"b6e2fcbc0becfa93c2e97ea8db6c3be985bb4216"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clitic%2Fffpb-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clitic%2Fffpb-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clitic%2Fffpb-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/clitic%2Fffpb-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/clitic","download_url":"https://codeload.github.com/clitic/ffpb-rs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248536981,"owners_count":21120683,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ffmpeg","ffmpeg-command","progress-bar"],"created_at":"2024-09-25T11:23:44.784Z","updated_at":"2025-04-12T07:42:00.239Z","avatar_url":"https://github.com/clitic.png","language":"Rust","readme":"# ffpb-rs\n\n**Not smart. Not comprehensive. Not guaranteed to work.**\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://crates.io/crates/ffpb\"\u003e\n    \u003cimg src=\"https://img.shields.io/crates/d/ffpb?style=flat-square\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://crates.io/crates/ffpb\"\u003e\n    \u003cimg src=\"https://img.shields.io/crates/v/ffpb?style=flat-square\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://docs.rs/ffpb/latest/ffpb\"\u003e\n    \u003cimg src=\"https://img.shields.io/docsrs/ffpb?logo=docsdotrs\u0026style=flat-square\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/clitic/ffpb#license\"\u003e\n    \u003cimg src=\"https://img.shields.io/crates/l/ffpb?style=flat-square\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/clitic/ffpb-rs\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/repo-size/clitic/ffpb-rs?style=flat-square\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\nffpb-rs is rust implementation of [ffpb](https://github.com/althonos/ffpb).\nffpb 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.\n\n![showcase](https://raw.githubusercontent.com/clitic/ffpb-rs/main/images/showcase.gif)\n\n## Installations\n\nVisit [releases](https://github.com/clitic/ffpb-rs/releases) for prebuilt binaries. You just need to copy that binary to any path specified in your `PATH` environment variable.\n\nOr you can even install it through cargo.\n\n```bash\ncargo install ffpb\n```\n\n## Usage\n\nffpb 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.\n\n```bash\nffpb --help\n```\n\n## Rust Library\n\nAdd this to your Cargo.toml file.\n\n```toml\n[dependencies]\nffpb = \"0.1.2\"\n```\n\n Then call ffmpeg like this.\n\n```rust\nfn main() {\n    let args = [\"-i\", \"test.mp4\", \"-c:v\", \"copy\", \"test.mkv\"]\n        .iter()\n        .map(|x| x.to_string())\n        .collect::\u003cVec\u003cString\u003e\u003e();\n\n    ffpb::ffmpeg(\u0026args).unwrap();\n}\n```\n\n## License\n\n\u0026copy; 2022-24 clitic\n\nThis repository is licensed under the MIT license. See LICENSE for details.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclitic%2Fffpb-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclitic%2Fffpb-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclitic%2Fffpb-rs/lists"}