- Easy way to sequence mono synths with legato
- https://forum.renoise.com/t/vsti-legato-without-resorting-to-a-second-column/45966/17
- https://forum.renoise.com/t/legato-pitch-slide-for-vsti/14303/5
- https://forum.renoise.com/t/midi-legato-made-easy-feature-request/63161/2
- https://forum.renoise.com/t/how-to-send-midi-notes-in-a-legato-fashion/56545/6
- a topic from 2009 0_0
- FX chains on plugin instruments
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # This is a script that takes advantage of `Slim` knob for making NAM files with multiple models. | |
| # | |
| # It's pretty useful for packing a directory of captures into one file. (e.g. "Gain 1", "Gain 2", "Gain 3" amp pack). | |
| # Try packing captures with different boosts, or various tones from hi-gain to clean to make a portable rig in one NAM file =) | |
| # | |
| # == Caveats == | |
| # | |
| # - When model switch happens, expect clicks and pops. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| from pathlib import Path | |
| import json | |
| for file in Path(".").rglob("*.nam"): | |
| nam = json.load(open(file)) | |
| if nam["architecture"] != "SlimmableContainer": | |
| print(file) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find . -name "*.wav" | parallel --bar "ffmpeg -i {} -map_metadata 0 {.}.flac && rm {}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // v10 | |
| // === DESKTOP ONLY === | |
| audiodriver alsa | |
| buffer 256 | |
| // ==================== | |
| startmsg 1 | |
| locale_lang en_US |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Install dependencies: | |
| pip install git+https://github.com/voronind/vk beautifulsoup4 | |
| Working as of May 1, 2026 | |
| """ | |
| from collections import defaultdict | |
| from vk import API | |
| import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find . -name "*.flac" | parallel --bar "ffmpeg -i {} -c:a libopus -b:a 192k -map_metadata 0 {.}.opus && rm {}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Usage: $(gimmetor.py) | |
| """ | |
| from ipaddress import ip_network | |
| import concurrent.futures | |
| import subprocess | |
| import socket |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import socket | |
| import concurrent.futures | |
| import argparse | |
| import ipaddress | |
| import subprocess | |
| import re | |
| def get_local_network(): | |
| result = subprocess.run(["ip", "route"], capture_output=True, text=True) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Простой скриптик для тренировки ударений | |
| # Банк взят с навигатора подготовки ФИПИ 2026 | |
| # Some common sense words were removed | |
| # License: Unlicense | |
| # UPDATE: Anki is a better solution for this, please use it. | |
| #!/usr/bin/env python3 | |
| import random |
NewerOlder