177175
this is freaking the hell out of me
Meditations explores the delicious rub between two notes that are very nearly the same frequency. Put on some headphones, space out and stare at a wall.
The score is written in C, the format is 2 channels, 16 bit depth, little endian, 48Khz.
gcc whateveritscalled.c -lm && ./a.out | aplay -c2 -r48000 -fS16_LE
should do the trick on Linux, maybe windows or mac if you can somehow get aplay and bash working. Since I use the math library, '-lm' when compiling is essential!! The point is that the resultant binary will output 2 channel 16 bit little endian audio at 48Khz out standard output and it's up to the user to capture it and yeet it out the speakers how they see fit.
Enjoy :)