- install lm-sensors with your package manager
sensors
If it won't show any fan/speed, continue
sensor-detect
| #!/bin/bash | |
| # | |
| # Prepare samples for microgranny: | |
| # - Remove all metadata from wav files in folders | |
| # - Convert wav to mono/16bit/22kHz | |
| # - Remove silent parts at beginning and end | |
| # - Normalize to -0.1dB | |
| # | |
| # Usage: | |
| # Put this script in a folder with your samples (they can be in subfolders), chmod +x |
| #!/bin/bash | |
| # | |
| # Convert samples to 44.1kHz/16bit | |
| # Remove all metadata from wav files in folders and create reversed wav files | |
| # Needed : detox, sox and ffmpeg | |
| # | |
| # Usage: | |
| # Put this script in a folder with your samples (they can be in subfolders), chmod +x | |
| # and execute ./prepare_disting.sh | |
| # All .wav files will be treated, detox will take care of spaces and such things |