pub static REMUX_REGEX: Lazy<Regex>Expand description
Remux detector. Ported from QualityParser.cs:66.
The C# pattern declares the same group name (?<remux>...) twice in an
alternation. .NET allows that; Rust’s regex crate rejects duplicate
names within a single pattern. To preserve identical match semantics
while staying compilable, the second branch’s group is renamed
remux_post. Callers should treat a hit on EITHER remux or
remux_post as a positive Remux signal; super::match_remux exposes
that contract directly.