[package]
edition = "2021"
rust-version = "1.87"
name = "speech-prep"
version = "0.1.1"
build = false
exclude = [
"tests/",
"datasets/",
"fixtures/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Speech-focused audio preprocessing — VAD, format detection, decoding, noise reduction, chunking"
readme = "README.md"
keywords = [
"speech",
"audio",
"vad",
"preprocessing",
"voice",
]
categories = [
"science",
"multimedia::audio",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dnvt/speech-prep"
[features]
fixtures = ["dep:glob"]
[lib]
name = "speech_prep"
path = "src/lib.rs"
[[example]]
name = "vad_detect"
path = "examples/vad_detect.rs"
[dependencies.glob]
version = "0.3"
optional = true
[dependencies.hound]
version = "3"
[dependencies.parking_lot]
version = "0.12"
[dependencies.realfft]
version = "3.5"
[dependencies.serde_json]
version = "1"
[dependencies.symphonia]
version = "0.5"
features = ["all"]
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.glob]
version = "0.3"
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.tempfile]
version = "3"