Update ffprobe_info.php

This commit is contained in:
Roman Kelesidis 2024-09-05 11:52:43 +07:00
commit da0aa4df1a

View file

@ -137,7 +137,7 @@ function humn_bitrate(int $bitrate, string $space = ' '): string
function humn_sample_rate(int $sample_rate, string $space = ' '): string function humn_sample_rate(int $sample_rate, string $space = ' '): string
{ {
$unit = ''; $unit = '';
return commify($sample_rate, 2) . $space . $unit; return commify($sample_rate, thousands_separator: '.') . $space . $unit;
} }
$this->response['file_index'] = $file_index; $this->response['file_index'] = $file_index;