mirror of
https://github.com/royshil/obs-localvocal.git
synced 2026-01-09 20:37:58 -05:00
* Fix `whisper_buffer` and `resampled_buffer` data race `media_unpause` was causing `wisper_buffer` to be freed while `vad_based_segmentation`/`hybrid_vad_segmentation` need that buffer to not be modified for the duration of those calls * Slightly improve handling for weird subtitle output filenames * Squashed 'deps/c-webvtt-in-video-stream/' content from commit 5579ca6 git-subtree-dir: deps/c-webvtt-in-video-stream git-subtree-split: 5579ca6dc9dcf94e3c14631c6c01b2ee4dfcf005 * Add WIP webvtt sei functionality * Add webvtt recording/streaming settings * Make latency_to_video_in_msecs and send_frequency_hz configurable * Make webvtt languages configurable * Add translation and main language separately * Add rust CI integration
28 lines
501 B
TOML
28 lines
501 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "c-webvtt-in-video-stream"
|
|
version = "0.1.0"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib"]
|
|
|
|
[profile.release]
|
|
debug = 2
|
|
panic = "abort"
|
|
|
|
[profile.dev]
|
|
debug = 2
|
|
panic = "abort"
|
|
|
|
[workspace]
|
|
members = ["webvtt-in-video-stream", "video-bytestream-tools"]
|
|
|
|
[dependencies]
|
|
h264-reader = "0.7.0"
|
|
strum_macros = "0.26.3"
|
|
video-bytestream-tools = {path = "./video-bytestream-tools"}
|
|
webvtt-in-video-stream = {path = "./webvtt-in-video-stream"}
|
|
|
|
[build-dependencies]
|
|
cbindgen = "0.27.0"
|