![]() |
Issue with oversampling. AirPlay plugin - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7) +--- Thread: Issue with oversampling. AirPlay plugin (/showthread.php?tid=6923) |
Issue with oversampling. AirPlay plugin - svitalya - 09-18-2024 Hello! Starting from version 9, problems began with AirPlay plugin, glitches occur periodically, and randomly, but there is already a separate thread about this. I don’t know if this is specifically my problem or a general one, but if I select any other value instead of 32 bits, there is no sound. Sound appears only at 32 bits and any sampling rate. I checked on all file formats (16 bit, 24 bit) from local disk that the problem is not related to my sound card. The option to completely disable the oversampling algorithm has also disappeared; perhaps it wasn’t there before, I didn’t notice. Thank you. RE: Issue with oversampling. AirPlay plugin - Tim Curtis - 09-18-2024 What audio device are you using? RE: Issue with oversampling. AirPlay plugin - svitalya - 09-18-2024 (09-18-2024, 08:10 PM)Tim Curtis Wrote: What audio device are you using? I am using Combo 384 Amanero USB. RPi 4b RE: Issue with oversampling. AirPlay plugin - Tim Curtis - 09-18-2024 The Amenero probably only accepts 32-bit word length. RE: Issue with oversampling. AirPlay plugin - svitalya - 09-19-2024 (09-18-2024, 09:42 PM)Tim Curtis Wrote: The Amenero probably only accepts 32-bit word length. This is weird. After all, in version 8 everything was fine. And also files of any bit depth and frequency play on this sound card. Specifications of the card: PCM: 16/24/32 bit; 44,1/48/88,2/96/176,4/192/352,8/384 kHz DSD: 64/128/256 RE: Issue with oversampling. AirPlay plugin - Tim Curtis - 09-19-2024 In the Audio configuration section of the startup log"Audio formats:" lists the supported bit depths for the attached device. You can also use moodeutl -f RE: Issue with oversampling. AirPlay plugin - svitalya - 09-19-2024 (09-19-2024, 10:26 AM)Tim Curtis Wrote: In the Audio configuration section of the startup log"Audio formats:" lists the supported bit depths for the attached device. You can also use moodeutl -f moodeutl -f indicates S32_LE, DSD_U32_LE Doesn't this mean maximum values? Thank you! RE: Issue with oversampling. AirPlay plugin - Tim Curtis - 09-19-2024 (09-19-2024, 11:48 AM)svitalya Wrote:(09-19-2024, 10:26 AM)Tim Curtis Wrote: In the Audio configuration section of the startup log"Audio formats:" lists the supported bit depths for the attached device. You can also use moodeutl -f Not maximum bit depths but each individual bit depth that ALSA detects. Here's an example from a system that has an Allo Boss DAC. Code: pi@moode9:~ $ moodeutl -f The underlying command thats used by moodeutl is below. Code: alsacap Most modern USB receivers for example XMOS only accept 32 bit word length. Linux/ALSA simply zero-pads lower bit depths to 32. This operation preserves the original bits and is completely transparent when the samples are processed by the audio device. RE: Issue with oversampling. AirPlay plugin - svitalya - 09-19-2024 (09-19-2024, 11:58 AM)Tim Curtis Wrote:(09-19-2024, 11:48 AM)svitalya Wrote:(09-19-2024, 10:26 AM)Tim Curtis Wrote: In the Audio configuration section of the startup log"Audio formats:" lists the supported bit depths for the attached device. You can also use moodeutl -f Now I understand. Thank you for your patience! |