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/python -tt | |
# Small script to copy audio recording files made with non-timeline to a new date named directory and create a new empty setup to start. You can change the recorded file size limit. | |
# You need to create the working and preset directories before. | |
# I use rename() because that is way quicker than really copying. | |
import sys | |
import re | |
import os | |
import shutil |
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
#!/bin/bash | |
# start jack with qsampler,non-mixer etc and connections | |
# from https://wiki.archlinux.org/index.php/JACK_Audio_Connection_Kit | |
jack_control start | |
jack_control eps realtime true | |
jack_control ds alsa | |
jack_control dps device hw:US16x08 |