Our thinking


Bose Sleepbuds – File Format Specifications

Here’s a quick companion post to the previous one with some raw technical information on the file formats for the Bose Sleepbuds.

Each sound in the library needs a collection of background images, thumbnail images, a preview WAV and separate raw mono audio files for the Left and Right Sleepbuds.

Assuming we want to make a new sound called Sound Name then this is how the background files and thumbnail files should be names, and what size they are.

We need a Carousel Image, a Blurred Carousel Image and a square format Thumbnail

FilenameX ResY ResScale
Sound%[email protected]56310010.375
Sound%[email protected]3756670.25
Sound%[email protected]75013340.50
Sound%[email protected]112520010.75
Sound%[email protected]150026681.00
Sound%[email protected]56310010.375
Sound%[email protected]3756670.25
Sound%[email protected]75013340.50
Sound%[email protected]112520010.75
Sound%[email protected]150026681.00
Sound%[email protected]2552550.375
Sound%[email protected]1701700.25
Sound%[email protected]3403400.50
Sound%[email protected]5105100.75
Sound%[email protected]6806801.00

Then there’s the audio. First is the preview WAV which in most examples is stereo, 32-bit floating point, 44.1 kHz sample rate. Then each of the L and R channels are extracted, down-sampled to 8 kHz, decimated to 24-bit and saved as a raw audio file with no header information.

The preview WAV is saved as Sound%20Name.wav and the raw audio files are saved as Sound%20Name-Left.bin and Sound%20Name-Right.bin

I was using Adobe Audition to create/edit the audio files. I couldn’t see any way to export raw audio, only WAV etc. What I had to do was export each of the Left and Right channels as WAV and, use sox to convert to raw and then rename as .bin – e.g:

sox Sound%20Name-Left.wav --bits 24 --rate 8192 --channels 1 Sound%20Name-Left.bin

1 thought on “Bose Sleepbuds – File Format Specifications

Leave a Reply