From 4f9a926e6a9e29e8dbde60a246a87073e1e5b9d2 Mon Sep 17 00:00:00 2001 From: Amateur Audio Dude <168192910+AmateurAudioDude@users.noreply.github.com> Date: Sun, 20 Apr 2025 23:33:06 +1000 Subject: [PATCH] setup options for 'ffmpeg', 'samplerate offset' --- web/setup.ejs | 12 ++++++++++++ web/wizard.ejs | 12 ++++++++++-- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/web/setup.ejs b/web/setup.ejs index f63edfd..2b5719e 100644 --- a/web/setup.ejs +++ b/web/setup.ejs @@ -217,6 +217,18 @@ <%- include('_components', {component: 'checkbox', cssClass: '', label: 'ALSA Software mode', id: 'audio-softwareMode'}) %> +
+
+

FFmpeg

+

Legacy option for Linux / macOS that could resolve audio issues, but will consume additional CPU and RAM usage.

+ <%- include('_components', {component: 'checkbox', cssClass: '', label: 'Additional FFmpeg', id: 'audio-ffmpeg'}) %> +
+
+

Samplerate Offset

+

Using a negative value could eliminate audio buffering issues during long periods of listening. However, a value that’s too low might increase the buffer over time.

+

+
+
diff --git a/web/wizard.ejs b/web/wizard.ejs index 3c3a976..0f4b87f 100644 --- a/web/wizard.ejs +++ b/web/wizard.ejs @@ -146,8 +146,16 @@
-

If you use an USB audio card on Linux, enabling this option might fix your audio issues.

- <%- include('_components', {component: 'checkbox', cssClass: 'panel-100 flex-container flex-center', label: 'ALSA Software mode', id: 'audio-softwareMode'}) %> +
+
+

If you use an USB audio card on Linux, enabling this option might fix your audio issues.

+ <%- include('_components', {component: 'checkbox', cssClass: 'panel-100 flex-container flex-center', label: 'ALSA Software mode', id: 'audio-softwareMode'}) %> +
+
+

Legacy option for Linux / macOS that could resolve audio issues, but will consume additional CPU and RAM usage.

+ <%- include('_components', {component: 'checkbox', cssClass: 'panel-100 flex-container flex-center', label: 'Additional FFmpeg', id: 'audio-ffmpeg'}) %> +
+