Changeset - e42679dfdfd9
[Not reviewed]
default
0 1 1
drewp@bigasterisk.com - 3 years ago 2022-06-03 06:21:00
drewp@bigasterisk.com
unpad tool and edits for processing 2022 audio
2 files changed with 11 insertions and 1 deletions:
0 comments (0 inline, 0 general)
bin/make_spectrograms
Show inline comments
 
@@ -3,6 +3,7 @@
 
# todo: "rainbowgrams" like page 5 of this: https://arxiv.org/pdf/1704.01279.pdf
 

	
 
mkdir -p $LIGHT9_SHOW/spectrogram
 
for x ($LIGHT9_SHOW/music/pad/*) {
 
for x ($LIGHT9_SHOW/music/??-*) {
 
  sox $x -n remix 1 rate 3k spectrogram -X 50 -y 100 -z 80 -m -r -o $LIGHT9_SHOW/spectrogram/$x:t:r.png
 
}
 
 
 
\ No newline at end of file
bin/musicUnpad
Show inline comments
 
new file 100755
 
#!/bin/zsh
 

	
 
# doing a show with no baked-in-pad, but reusing a song from a show that did have it?
 

	
 
IN=$1
 
OUT=${IN:r}-unpad.wav
 

	
 
# see notes at https://digitalcardboard.com/blog/2009/08/25/the-sox-of-silence/
 
sox $IN $OUT silence 1 4 1%   -1 8 0.0%
0 comments (0 inline, 0 general)