From da0aa4df1abe5537d5e2037b917d9b5b8d139d76 Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Thu, 5 Sep 2024 11:52:43 +0700 Subject: [PATCH] Update ffprobe_info.php --- library/ajax/ffprobe_info.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ajax/ffprobe_info.php b/library/ajax/ffprobe_info.php index 864b49b33..c23082ee3 100644 --- a/library/ajax/ffprobe_info.php +++ b/library/ajax/ffprobe_info.php @@ -137,7 +137,7 @@ function humn_bitrate(int $bitrate, string $space = ' '): string function humn_sample_rate(int $sample_rate, string $space = ' '): string { $unit = ''; - return commify($sample_rate, 2) . $space . $unit; + return commify($sample_rate, thousands_separator: '.') . $space . $unit; } $this->response['file_index'] = $file_index;