From 0641edc002b7efd5d38eaff4251c7b8365b7b147 Mon Sep 17 00:00:00 2001 From: WorldObservationLog Date: Wed, 8 May 2024 19:42:10 +0800 Subject: [PATCH] fix: 192k sampling rate alac --- src/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.py b/src/types.py index 295c3d0..5ea9400 100644 --- a/src/types.py +++ b/src/types.py @@ -41,7 +41,7 @@ class CodecKeySuffix: class CodecRegex: RegexCodecAtmos = "audio-(atmos|ec3)-\\d{4}$" RegexCodecAC3 = "audio-ac3-\\d{3}$" - RegexCodecAlac = "audio-alac-stereo-\\d{5}-\\d{2}$" + RegexCodecAlac = "audio-alac-stereo-\\d{6}-\\d{2}$" RegexCodecBinaural = "audio-stereo-\\d{3}-binaural$" RegexCodecDownmix = "audio-stereo-\\d{3}-downmix$" RegexCodecAAC = "audio-stereo-\\d{3}$"