Utility scripts, updates to start scripts.

This commit is contained in:
Jonathan Bernard
2017-04-10 04:52:03 -05:00
parent 7621c7013c
commit 81aad1b970
12 changed files with 106 additions and 7 deletions

4
scripts/nl-split-rec Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
name=${1%.wavex}
avconv -i "$1" -filter_complex 'channelsplit=channel_layout=2.1[L][R][B]' -map '[L]' "${name}-m48.wav" -map '[R]' "${name}-drums.wav" -map '[B]' "${name}-bass.wav"