ffdash 0.2.1

FFMPEG video encoder with live dashboard, hardware acceleration, and batch processing
Documentation
[[bin]]
name = "ffdash"
path = "src/main.rs"

[dependencies.anyhow]
version = "1"

[dependencies.chrono]
version = "0.4"

[dependencies.clap]
features = ["derive"]
version = "4"

[dependencies.crossterm]
version = "0.29"

[dependencies.dirs]
version = "5"

[dependencies.rand]
version = "0.8"

[dependencies.ratatui]
version = "0.29"

[dependencies.serde]
features = ["derive"]
version = "1"

[dependencies.serde_json]
version = "1"

[dependencies.sysinfo]
version = "0.30"

[dependencies.thiserror]
version = "2"

[dependencies.toml]
version = "0.8"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"

[dependencies.tui-checkbox]
version = "0.3"

[dependencies.tui-piechart]
version = "0.2"

[dependencies.tui-textarea]
version = "0.6"

[dependencies.uuid]
features = ["v4", "serde"]
version = "1"

[dependencies.walkdir]
version = "2"

[dependencies.waveformchart]
version = "0.1.0"

[dev-dependencies.anyhow]
version = "1"

[dev-dependencies.proptest]
version = "1.5"

[dev-dependencies.tempfile]
version = "3"

[lib]
name = "ffdash"
path = "src/lib.rs"

[package]
authors = ["Ben H <bcherb2@users.noreply.github.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "multimedia::video", "multimedia::encoding"]
description = "FFMPEG video encoder with live dashboard, hardware acceleration, and batch processing"
documentation = "https://github.com/bcherb2/ffdash"
edition = "2024"
homepage = "https://github.com/bcherb2/ffdash"
keywords = ["video", "encoder", "vp9", "ffmpeg", "vaapi"]
license = "MIT"
name = "ffdash"
readme = "README.md"
repository = "https://github.com/bcherb2/ffdash"
rust-version = "1.85"
version = "0.2.1"

[package.metadata.deb]
assets = [["target/release/ffdash", "usr/bin/", "755"], ["README.md", "usr/share/doc/ffdash/", "644"], ["CONFIG.md", "usr/share/doc/ffdash/", "644"]]
copyright = "2025, Ben H <bcherb2@users.noreply.github.com>"
depends = "ffmpeg (>= 7.0)"
extended-description = "ffdash is a VP9 video encoder with a live TUI dashboard, hardware acceleration support (VA-API, NVENC), and efficient batch processing capabilities. It provides real-time encoding statistics, queue management, and customizable encoding profiles."
license-file = ["LICENSE", "0"]
maintainer = "Ben H <bcherb2@users.noreply.github.com>"
priority = "optional"
section = "video"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[test]]
name = "vaapi_driver_detection"
path = "tests/vaapi_driver_detection.rs"