1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00

lower sample rate

This commit is contained in:
2026-02-23 17:56:24 +01:00
parent 915f2c7e58
commit 5a321562bd
2 changed files with 1 additions and 10 deletions

View File

@@ -22,7 +22,7 @@ checkFFmpeg().then((ffmpegPath) => {
logInfo(`${consoleLogTitle} Starting audio stream on device: \x1b[35m${serverConfig.audio.audioDevice}\x1b[0m`); logInfo(`${consoleLogTitle} Starting audio stream on device: \x1b[35m${serverConfig.audio.audioDevice}\x1b[0m`);
const sampleRate = const sampleRate =
Number(this?.Server?.SampleRate || serverConfig.audio.sampleRate || 48000) + Number(this?.Server?.SampleRate || serverConfig.audio.sampleRate || 44100) +
Number(serverConfig.audio.samplerateOffset || 0); Number(serverConfig.audio.samplerateOffset || 0);
const channels = const channels =

View File

@@ -1,9 +0,0 @@
{
"RtcConfig" : null,
"FallbackFFmpegPath": "ffmpeg.exe",
"FallbackUseMp3": true,
"FallbackUseWav": false,
"FallbackMp3Bitrate": 192,
"FallbackWavSampleRate": 16000,
"AdminKey": ""
}