youtube-legend-cli 0.4.0

Non-interactive Rust CLI that downloads YouTube subtitles through third-party providers, using a native Unix stdin/stdout interface.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Seeded pseudo-random source shared by the HTTP providers.
//!
//! This file used to be the facade of a browser subsystem: anti-fingerprint
//! patches, humanised input timing and Chromium process lifecycle. The two
//! providers that drove a browser were removed on 2026-09-04, and with them
//! every consumer of `fingerprint` and `process`.
//!
//! What survives is the seeded generator, because `provider::decopy` draws
//! from it to build request identifiers. The module name is kept so no `use`
//! path outside it had to move.

mod timing;

pub(crate) use timing::session_rng_fork;