diff options
Diffstat (limited to 'lib/sounds.php')
| -rw-r--r-- | lib/sounds.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/sounds.php b/lib/sounds.php new file mode 100644 index 0000000..23f566f --- /dev/null +++ b/lib/sounds.php @@ -0,0 +1,12 @@ +<?php +function compress_sound(string $input_file, string $output_file) +{ + if (!is_file($input_file)) { + throw new RuntimeException("Sound input file does not exist."); + } + + $input_file = escapeshellarg($input_file); + $output_file = escapeshellarg($output_file); + + shell_exec("ffmpeg -i $input_file -c:a libvorbis -q:a 1 $output_file"); +}
\ No newline at end of file |
