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

View File

@ -0,0 +1,9 @@
#!/bin/bash
for filename in worship.wavex altar.wavex; do
name=${filename%.wavex}
ffmpeg -i "$filename" -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"
done