ls -1f | grep wav | wc -l
find . -maxdepth 1 -name "*wav" | wc -l
from pydub import AudioSegment | |
from pydub.silence import detect_nonsilent | |
seg = AudioSegment.from_file("./ghosts_and_stuff.m4a") | |
# reduce loudness of sounds over 120Hz (focus on bass drum, etc) | |
seg = seg.low_pass_filter(120.0) | |
# we'll call a beat: anything above average loudness | |
beat_loudness = seg.dBFS |
#add 'node_modules' to .gitignore file | |
git rm -r --cached node_modules | |
git commit -m 'Remove the now ignored directory node_modules' | |
git push origin <branch-name> |