From 648c126b070fc83ddb66b0353d03c4ad31b87551 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sun, 15 Jun 2025 16:14:16 +0400 Subject: feat: audio recording --- public/index.php | 12 +- public/static/img/icons/pause.png | Bin 0 -> 721 bytes public/static/img/icons/play.png | Bin 0 -> 717 bytes public/static/img/icons/repeat.png | Bin 0 -> 750 bytes public/static/scripts/audiorecorder.js | 210 +++++++++++++++++++++++++++++++++ public/static/style.css | 11 +- 6 files changed, 230 insertions(+), 3 deletions(-) create mode 100755 public/static/img/icons/pause.png create mode 100755 public/static/img/icons/play.png create mode 100755 public/static/img/icons/repeat.png create mode 100644 public/static/scripts/audiorecorder.js diff --git a/public/index.php b/public/index.php index 9e6ccf1..c3eea01 100644 --- a/public/index.php +++ b/public/index.php @@ -233,7 +233,7 @@ $privacy_exists = is_file($_SERVER['DOCUMENT_ROOT'] . '/static/PRIVACY.txt');
-
+
+ + @@ -336,6 +338,7 @@ $privacy_exists = is_file($_SERVER['DOCUMENT_ROOT'] . '/static/PRIVACY.txt'); } +
Title: