[-] XXIC3CXSTL3Z@lemmy.ml 3 points 5 months ago
[-] XXIC3CXSTL3Z@lemmy.ml 3 points 5 months ago

godsend ahh comment, tysm

[-] XXIC3CXSTL3Z@lemmy.ml 3 points 5 months ago

boi wtf is this ๐Ÿ˜‚๐Ÿ˜‚๐Ÿ˜‚

Don't use AI bro trust just watch some youtube vids about music theory or smth. Also if you need cr4ck for 24 DM me. Otherwise use ardour on linux bro.

[-] XXIC3CXSTL3Z@lemmy.ml 5 points 5 months ago

Ubuntu actually cooked ngl ๐Ÿฅ€๐Ÿ™

[-] XXIC3CXSTL3Z@lemmy.ml 4 points 5 months ago* (last edited 5 months ago)

lil bruh just move to mint already u gon be fine ๐Ÿ’”

but osrs mint is widely regarded as best for transitioning to different OS. All the shit you did on win has alts on mint/ubuntu

[-] XXIC3CXSTL3Z@lemmy.ml 23 points 5 months ago

nah it looks to be shitty photoshop

[-] XXIC3CXSTL3Z@lemmy.ml 8 points 5 months ago

fr it's literally

no russia bad but trust our feds instead because we are the good guys bsfr ๐Ÿ’€๐Ÿ’€๐Ÿ’€

But I can't lie the analysis is still quite in-depth and feels like an effortpost

[-] XXIC3CXSTL3Z@lemmy.ml 3 points 5 months ago* (last edited 5 months ago)

Oh ty ty that answers my question! I am fairly new to being a poweruser on linux so I may have worded that wrong XD

[-] XXIC3CXSTL3Z@lemmy.ml 3 points 5 months ago

I come from fl studio prod but I want to use ardour since I am trying to keep everything within linux now. What are the best synth instruments for ardour?

[-] XXIC3CXSTL3Z@lemmy.ml 4 points 5 months ago

this one is clean asl

[-] XXIC3CXSTL3Z@lemmy.ml 3 points 5 months ago

Ooooou I got a couple :3

This one is just a basic mirror fixing thing cuz sometimes I go a while without updating pacman:

alias fixpkg='rate-mirrors --protocol https arch | sudo tee /etc/pacman.d/mirrorlist && sudo pacman -Syy'

This function I made to create virtual audio sinks so I can route audios via qpw and play earrape into discord calls if I want XD

create_vsink() {
    local sink_name=${1:-vsink}  # Default sink name is 'vsink' if no input is provided
    local description=${2:-"Virtual Sink"}  # Default description
    pactl load-module module-null-sink sink_name="$sink_name" sink_properties=device.des>
    echo "Virtual sink '$sink_name' created with description '$description'."
}

Simple parser function I made that makes a whole repo using my git key so it's not just locally created I kinda forgot why I made it tbh:

git_clone() {
    local url="${1#https://}"  # Remove "https://" if present
    git clone "https://$git_key@$url"
}

Awesome mpv function I made that allows for real time pitch+speed shifting via hotkeys and is flexible with extra parameters and shit:

mpv_pitch() {
    if [[ -z "$1" ]]; then
        echo "Usage: mpv_pitch <file> [mpv-options]"
        return 1
    fi
    local file="$1"
    shift
    mpv --input-conf=/dev/stdin "$file" "$@" <<EOF
SHIFT+RIGHT add audio-pitch-correction 0; add pitch 0.01; add speed 0.01  # Decrease pit>
SHIFT+LEFT add audio-pitch-correction 0; add pitch -0.01; add speed -0.01 # Increase pit>
EOF
}

Automatic audio router for firefox audio streams that uses the aforementioned create_sink function to make a specific sink that I can use carla on to mix and make cool shit out of haha

firefox_crush() {
    create_vsink CrunchSink "CrunchSink" 
    firefox --name firefox-vc &

    (while true; do
        SINK_INPUT_ID=$(pactl list sink-inputs short | grep "firefox" | awk '{print $1}')
        if [[ -n "$SINK_INPUT_ID" ]]; then
            pactl move-sink-input "$SINK_INPUT_ID" CrunchSink
            break
        fi
        sleep 0.25
    done) &
}
view more: next โ€บ

XXIC3CXSTL3Z

joined 5 months ago