Skip to content

Instantly share code, notes, and snippets.

View ArthurX's full-sized avatar

ArthurX

View GitHub Profile
@ArthurX
ArthurX / start_jack_tascam_16x08_non_mixer_qsampler_timeline.sh
Created April 29, 2016 12:38
start jack with qsampler,non-mixer etc and connections
#!/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
@ArthurX
ArthurX / copy_recording_to_storage.py
Created April 29, 2016 10:58
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
#!/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