home.social

#jackd — Public Fediverse posts

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

fetched live
  1. Loving #jackd more by the day. It's amazing how easy it is to set up complex flows of audio processing while also monitoring each part and recording at will. Also, latency is rock-solid low.

  2. Coucou le fedivers #geek musical 👋
    Quelqu'un connait un bon moyen d'intercaler un équaliseur entre jackd et la sortie audio ? Ou dans pulseAudio ? Je cherche un moyen de réduire les basses pour le soir/la nuit sans changer le réglage très minutieux de mon caisson de basse.

    J'ai cherché mais pas trouvé de trucs *qui fonctionne*

    #jack #jackd #linux #PulseAudio

  3. The long sought #LinuxAudio Holy Grail of running #JackD applications like #Supercollider in #rpi4b (and presumably everywhere) #Pipewire is so incredibly simple yet so widely unknown:

    Step 1: get rid of jackd you don't need it.

    and you're done!

    Here's what you do instead: pw-jack -r 44100 sclang

    #onlytookmeaweektofind

  4. The long sought #LinuxAudio Holy Grail of running #JackD applications like #Supercollider in #rpi4b (and presumably everywhere) #Pipewire is so incredibly simple yet so widely unknown:

    Step 1: get rid of jackd you don't need it.

    and you're done!

    Here's what you do instead: pw-jack -r 44100 sclang

    #onlytookmeaweektofind

  5. I figured out the playback, but only after installing on a Ubuntu laptop where I'm happily listening to "autohausen" -- in #Emacs, and presumably the IDE, I load each file into the workspace and evaluate each expression in succession. It /may/ have done so on the rpi4b, but I later discovered my #SuperCollider / #JackD setup needs work.

    So it isn't autoplay, but now I can listen while I read their code!

  6. I figured out the playback, but only after installing on a Ubuntu laptop where I'm happily listening to "autohausen" -- in #Emacs, and presumably the IDE, I load each file into the workspace and evaluate each expression in succession. It /may/ have done so on the rpi4b, but I later discovered my #SuperCollider / #JackD setup needs work.

    So it isn't autoplay, but now I can listen while I read their code!

  7. So, apparently, Phanpy is the Mastodon client for reply guys. Someone just boasted about a creepy feature. With Jackd, there is an insight feature that tells you the percentage of how often a person responds to messages. Those insight features are built into a lot of dating apps.

    Well, I just saw someone boast about how Phanpy actually shows you how often a person replies and boosts. Why would you need to know how often a person responds to people who interact with them? In addition, many reply guys who have responded to me have said they are using Phanpy.

    #dating #datingApp #fediverse #gay #Jackd #lgbtq #Mastodon #Phanpy #replyGuys #socialMedia

  8. #No, I love linux audio

    # is the ultra attached
    if aplay -l | grep -qi ultra
    then
    echo ultra

    #adjust amplitude
    i=0
    j=0
    for i in $(seq 8); do
    for j in $(seq 8); do
    if [ "$i" != "$j" ]; then
    amixer -c Ultra set "DIn$i - Out$j" 0% > /dev/null
    #amixer -c Ultra set "DIn$i - Out$j" 100% > /dev/null
    else
    amixer -c Ultra set "DIn$i - Out$j" 100% > /dev/null
    fi
    amixer -c Ultra set "AIn$i - Out$j" 0% > /dev/null
    #amixer -c Ultra set "AIn$i - Out$j" 100% > /dev/null
    done
    done

    for i in $(seq 4); do
    amixer -c Ultra set "Effect Return $i" 0% > /dev/null
    done

    #start jack
    #jackd -d alsa -d hw:Ultra -r 48000 -p 2048 &
    #else
    #start jack with default hardware
    #jackd -d alsa -d hw:PCH -r 48000 &
    fi

  9. #No, I love linux audio

    # is the ultra attached
    if aplay -l | grep -qi ultra
    then
    echo ultra

    #adjust amplitude
    i=0
    j=0
    for i in $(seq 8); do
    for j in $(seq 8); do
    if [ "$i" != "$j" ]; then
    amixer -c Ultra set "DIn$i - Out$j" 0% > /dev/null
    #amixer -c Ultra set "DIn$i - Out$j" 100% > /dev/null
    else
    amixer -c Ultra set "DIn$i - Out$j" 100% > /dev/null
    fi
    amixer -c Ultra set "AIn$i - Out$j" 0% > /dev/null
    #amixer -c Ultra set "AIn$i - Out$j" 100% > /dev/null
    done
    done

    for i in $(seq 4); do
    amixer -c Ultra set "Effect Return $i" 0% > /dev/null
    done

    #start jack
    #jackd -d alsa -d hw:Ultra -r 48000 -p 2048 &
    #else
    #start jack with default hardware
    #jackd -d alsa -d hw:PCH -r 48000 &
    fi

  10. @smallcircles @ADHDefy Thanks for the list! RickRack is exactly what I need right now, many thanks. :)

    In the "Standalone instruments / Synthetizers", it's missing AlsaModularSynth : alsamodular.sourceforge.net/

    Unless it's on purpose? It's been a while since I haven't tried to build it. 😅 It's one of the most nerdy/enjoyable audio software I played with : it basically gives you the building blocks of a synth (as in, its electronic components), and you arrange them as you want, plugging their inputs and outputs, inserting other sources or effects in the middle through #Jackd, etc. And in the end, you can just load it as an instrument in #Ardour (or directly through Jackd).

  11. @smallcircles @ADHDefy Thanks for the list! RickRack is exactly what I need right now, many thanks. :)

    In the "Standalone instruments / Synthetizers", it's missing AlsaModularSynth : alsamodular.sourceforge.net/

    Unless it's on purpose? It's been a while since I haven't tried to build it. 😅 It's one of the most nerdy/enjoyable audio software I played with : it basically gives you the building blocks of a synth (as in, its electronic components), and you arrange them as you want, plugging their inputs and outputs, inserting other sources or effects in the middle through , etc. And in the end, you can just load it as an instrument in (or directly through Jackd).

  12. I have been trying since evening to start Overtone, and finally I managed to do it but now it is impossible for me to test it because I can't get Jack to cooperate. I was excited, now I am exhausted.

  13. finally I was able to make #jackd work together with #pulseaudio
    I took me ages to figure this out. So now pa adds the jack sink whenever jack is started and I can continue to hear sound from pa applications.
    The trick is that you need to start jackd via dbus then everything works autmagically in #debian.
    the necessary option in #qjackctl in the image...

  14. омг, почему я не посещал эту страницу раньше:
    jackaudio.org/faq/device_namin

    решение было таким простым 🙈

    #jackd #потрачено #alsa