From: Max Value Date: Fri, 28 Mar 2025 23:37:25 +0000 (+0000) Subject: Added sound pannel X-Git-Url: https://git.ozva.co.uk/?a=commitdiff_plain;h=609df52b8dc9e9587e2d2a04508614db736ddce0;p=shopping-channel Added sound pannel + added html sound page + added clock.wav + added impulse responce (impulse.wav) ~ page handling to different functions ~ changed gitignore todo + timer sfx --- diff --git a/.gitignore b/.gitignore index 05e655d..5fd2490 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ *.wsgi -data.db +*.db docs/* diff --git a/static/sounds/clock.wav b/static/sounds/clock.wav new file mode 100644 index 0000000..a760531 Binary files /dev/null and b/static/sounds/clock.wav differ diff --git a/static/sounds/impulse.wav b/static/sounds/impulse.wav new file mode 100644 index 0000000..2d66562 Binary files /dev/null and b/static/sounds/impulse.wav differ diff --git a/teleshopping.py b/teleshopping.py index a860e35..bd9064f 100755 --- a/teleshopping.py +++ b/teleshopping.py @@ -62,9 +62,13 @@ def gfx_main(): return Response(render_template("gfx.html"), mimetype="text/html") @app.route("/autocue") -def gfx_page(page): +def gfx_page(): return Response(render_template("autocue.html"), mimetype="text/html") +@app.route("/sounds") +def sounds_page(): + return Response(render_template("sounds.html"), mimetype="text/html") + diff --git a/templates/sounds.html b/templates/sounds.html new file mode 100644 index 0000000..756e16e --- /dev/null +++ b/templates/sounds.html @@ -0,0 +1,231 @@ + + + + + XMDV + + +

Timers

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Timer 1
Timer 1
Timer 1
Timer 1
Timer 1
Timer 1
+

Doomsday

+ +
+ + +

+ Above are all the audio elements that will play out the SFX for the timers and the clock. Feel free to test them out. When you click the start button you'll still have full control over the audio elements but the system will also automatically fade them in when a timer is updated or when a clock tick is triggered. If you do step in and stop one of them, it wont play until its triggered again. For the timers it will automatically seek so that the sound file ends when the timer does. Note that the internal tracker for the clock will update on start, but the timers will not. This means that the system will try to "catch-up" and play sounds for any running timers. +

+ + + +