home.social

#audiodsp — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #audiodsp, aggregated by home.social.

  1. 🎶 Behold, the majestic WeebLabsDSPi: a "fully featured" audio DSP firmware for the Raspberry Pi #Pico that no one asked for! Because nothing screams #innovation like squeezing sound through a #microcontroller that can barely handle a beep. 🎵 #CuttingEdgeTech 💡😂
    github.com/WeebLabs/DSPi #WeebLabsDSPi #RaspberryPi #AudioDSP #HackerNews #ngated

  2. 🎶 Behold, the majestic WeebLabsDSPi: a "fully featured" audio DSP firmware for the Raspberry Pi #Pico that no one asked for! Because nothing screams #innovation like squeezing sound through a #microcontroller that can barely handle a beep. 🎵 #CuttingEdgeTech 💡😂
    github.com/WeebLabs/DSPi #WeebLabsDSPi #RaspberryPi #AudioDSP #HackerNews #ngated

  3. 🎶 Behold, the majestic WeebLabsDSPi: a "fully featured" audio DSP firmware for the Raspberry Pi #Pico that no one asked for! Because nothing screams #innovation like squeezing sound through a #microcontroller that can barely handle a beep. 🎵 #CuttingEdgeTech 💡😂
    github.com/WeebLabs/DSPi #WeebLabsDSPi #RaspberryPi #AudioDSP #HackerNews #ngated

  4. 🎶 Behold, the majestic WeebLabsDSPi: a "fully featured" audio DSP firmware for the Raspberry Pi #Pico that no one asked for! Because nothing screams #innovation like squeezing sound through a #microcontroller that can barely handle a beep. 🎵 #CuttingEdgeTech 💡😂
    github.com/WeebLabs/DSPi #WeebLabsDSPi #RaspberryPi #AudioDSP #HackerNews #ngated

  5. 🎶 Behold, the majestic WeebLabsDSPi: a "fully featured" audio DSP firmware for the Raspberry Pi #Pico that no one asked for! Because nothing screams #innovation like squeezing sound through a #microcontroller that can barely handle a beep. 🎵 #CuttingEdgeTech 💡😂
    github.com/WeebLabs/DSPi #WeebLabsDSPi #RaspberryPi #AudioDSP #HackerNews #ngated

  6. I’ve just launched my personal blog 🦀✨
    I’ll be writing about KDE, Audio DSP / JUCE, Rust, and Web Development, sharing projects, experiments, and things I learn along the way — with a strong focus on open source.

    Live here:
    👉 marcoallegretti.me
    #OpenSource #KDE #RustLang #AudioDSP #JUCE #WebDevelopment #Zola

  7. Processing signals (audio) from the real world (microphone) with software feels simultaneously very cool and kinda scary... 🤓 😬

    #Audio #DSP #AudioDSP #SoftwareDevelopment #Algorithms

  8. Processing signals (audio) from the real world (microphone) with software feels simultaneously very cool and kinda scary... 🤓 😬

    #Audio #DSP #AudioDSP #SoftwareDevelopment #Algorithms

  9. Processing signals (audio) from the real world (microphone) with software feels simultaneously very cool and kinda scary... 🤓 😬

    #Audio #DSP #AudioDSP #SoftwareDevelopment #Algorithms

  10. Processing signals (audio) from the real world (microphone) with software feels simultaneously very cool and kinda scary... 🤓 😬

    #Audio #DSP #AudioDSP #SoftwareDevelopment #Algorithms

  11. Processing signals (audio) from the real world (microphone) with software feels simultaneously very cool and kinda scary... 🤓 😬

    #Audio #DSP #AudioDSP #SoftwareDevelopment #Algorithms

  12. What's a viznut?

    I found two programs on my iMac's drive. I wrote them in 2021. They're called viznut1 and viznut2. They generate 8 bit audio samples. viznut1's samples look like this.

    uint8_t *out = ...
    for (int32_t t = 0; t < 10000000; t++)
    *out++ = t * ((t >> 9 | t >> 23) & 25 & t >> 6);

    viznut2 is a little different.

    *out++ = (t >> 7 | t | t >> 6) * 10 + 4 * ((t & t >> 13) | t >> 6);

    Does anybody recognize these?

    #synths #audioDSP #algorithms #viznut

  13. What's a viznut?

    I found two programs on my iMac's drive. I wrote them in 2021. They're called viznut1 and viznut2. They generate 8 bit audio samples. viznut1's samples look like this.

    uint8_t *out = ...
    for (int32_t t = 0; t < 10000000; t++)
    *out++ = t * ((t >> 9 | t >> 23) & 25 & t >> 6);

    viznut2 is a little different.

    *out++ = (t >> 7 | t | t >> 6) * 10 + 4 * ((t & t >> 13) | t >> 6);

    Does anybody recognize these?

    #synths #audioDSP #algorithms #viznut

  14. What's a viznut?

    I found two programs on my iMac's drive. I wrote them in 2021. They're called viznut1 and viznut2. They generate 8 bit audio samples. viznut1's samples look like this.

    uint8_t *out = ...
    for (int32_t t = 0; t < 10000000; t++)
    *out++ = t * ((t >> 9 | t >> 23) & 25 & t >> 6);

    viznut2 is a little different.

    *out++ = (t >> 7 | t | t >> 6) * 10 + 4 * ((t & t >> 13) | t >> 6);

    Does anybody recognize these?

    #synths #audioDSP #algorithms #viznut

  15. What's a viznut?

    I found two programs on my iMac's drive. I wrote them in 2021. They're called viznut1 and viznut2. They generate 8 bit audio samples. viznut1's samples look like this.

    uint8_t *out = ...
    for (int32_t t = 0; t < 10000000; t++)
    *out++ = t * ((t >> 9 | t >> 23) & 25 & t >> 6);

    viznut2 is a little different.

    *out++ = (t >> 7 | t | t >> 6) * 10 + 4 * ((t & t >> 13) | t >> 6);

    Does anybody recognize these?

    #synths #audioDSP #algorithms #viznut

  16. What's a viznut?

    I found two programs on my iMac's drive. I wrote them in 2021. They're called viznut1 and viznut2. They generate 8 bit audio samples. viznut1's samples look like this.

    uint8_t *out = ...
    for (int32_t t = 0; t < 10000000; t++)
    *out++ = t * ((t >> 9 | t >> 23) & 25 & t >> 6);

    viznut2 is a little different.

    *out++ = (t >> 7 | t | t >> 6) * 10 + 4 * ((t & t >> 13) | t >> 6);

    Does anybody recognize these?

    #synths #audioDSP #algorithms #viznut