Home | About | Apps | Github | Rss
Am listening to audio for practicing dutch comprehension, which essentially consists of a collection of short sentences on repeat. However this audio is available as a single track and for the purpose of shadowing, I wanted individual mp3’s.
Enter mp3splt
brew install mp3splt
mp3splt -s -d output_folder audio.mp3
This detects the average silence level and uses it to split.
Params:
-s
- Split with auto detection-d
- Output directorymp3splt -s -p th=-40 audio.mp3
Params:
-s
- Split with parameters specified using -p
-p
- Input parameters for -s
split actionth
- Silence threshold in dB
mp3splt -s -p rm audio.mp3
Params:
rm
- Used in conjunction with -s
and -p
. Indicates silence is to be removed from the output.