1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Standalone audio channel count patterns.
#
# These match channel counts that appear WITHOUT a codec prefix.
# Combined codec+channel patterns (DD5.1, AAC2.0) are in audio_codec.toml
# as side_effects.
= "audio_channels"
# ── Exact matches ────────────────────────────────────────────────────
[]
# Channel count words
= "1.0"
= "2.0"
# Explicit Nch labels
= "1.0"
= "2.0"
= "5.1"
= "5.1"
= "7.1"
= "7.1"
# ── Patterns ──────────────────────────────────────────────────────
[[]]
# 7.1 / 7_1 / 7 1 (via 2-token window)
= '(?i)^7[. _]1(?:ch)?$'
= "7.1"
[[]]
# 5.1 / 5_1 / 5 1 (via 2-token window)
= '(?i)^5[. _]1(?:ch)?$'
= "5.1"
[[]]
# 2.0 / 2_0 / 2 0 (via 2-token window)
= '(?i)^2[. _]0(?:ch)?$'
= "2.0"
[[]]
# 1.0 / 1_0 (via 2-token window)
= '(?i)^1[. _]0(?:ch)?$'
= "1.0"