02-03-2023, 04:20 AM
Thats a bug in audio info :-0
I'll fix for the upcoming release.
Here's what it should liik like
Below are sample formats (as far as I remember)
In Airplay and Spotify Connect the audio format options are there to provide support for audio devices that only accept certain bit depths or sample rates.
I think when using any of the _3 or the float formats the audio device has to explicitly support them. Endianness refers to the order of bytes in the word. Any padding that occurs in ALSA is bit-perfect and always preserves the original sample.
I'll fix for the upcoming release.
Here's what it should liik like
Below are sample formats (as far as I remember)
In Airplay and Spotify Connect the audio format options are there to provide support for audio devices that only accept certain bit depths or sample rates.
I think when using any of the _3 or the float formats the audio device has to explicitly support them. Endianness refers to the order of bytes in the word. Any padding that occurs in ALSA is bit-perfect and always preserves the original sample.
Code:
S16 16 bit signed integer, little endian
S24 24 bit signed integer, little endian (zero-padded to 32 bits)
S24_3LE 24 bit signed integer, little endian (unpadded 3 byte word)
S24_3BE 24 bit signed integer, big endian (unpadded 3 byte word)
S24_3 Same as s24_3LE
S32 32 bit signed integer, little endian
F32 32 bit floating point, little endian
F64 32 bit floating point, little endian