mirror of
https://github.com/iAmInActions/random-scripts.git
synced 2024-11-10 06:00:12 +00:00
bfdd320953
This script equalizes all songs in the folder "out".
4 lines
63 B
Bash
4 lines
63 B
Bash
#!/bin/bash
|
|
cd out
|
|
find -name '*mp3' -exec mp3gain -r -k {} \;
|