⚠ ATTENTION: Actually CLI version using (main.py) works far better! GUI need improvements! ⚠
Allows you to divide MP3 audio files into multiple parts based on silent found between them.
⚠ The 2.0 version has a GUI interface, so its not needed to add filename or params to command line. (in Windows) Just double-click in GUI at dist folder:
./dist/GUI.exe
- Use the following command to divide audio files:
python3 main.py <filename.mp3> --mms <minimum_music_samples> --thr <threshold> --std <silent_time_detection>
Parameter | Argument | Default | Time Equivalence (approx) | Explanation |
---|---|---|---|---|
Minimum Music Samples | --mms |
1.000,000 | 20.8 seconds | Minimum samples to be counted as a music |
Threshold | --thr |
0.001 | - | Minimum sample amplitude to be considered as silent |
Silent Time Detection | --std |
49.000 | 1 second | Minimum sample counts of silent to do a cut |
All parameters are directly proportional (bigger number = bigger attribute[time or amplitude])
- If it's not getting to cut and output is just one or two .mp3 files, consider to increase Threshold value manually (good try, for example, it can be 0.005 to start), if it's cutting in a lot of pieces, decrease this value.
- Maybe the gap between songs are short, for this cases, decrease Silent Time Detection value.
- Minimum Music Samples can help to ignore tiny songs or some transitions between them.
-
The default values are good for most cases.
- if audio has at least 1 second of silent parts between bigger audio parts (more than 20s), file will be correctly cutted on this parts.
- if audio has at least 1 second of silent parts between bigger audio parts (more than 20s), file will be correctly cutted on this parts.
-
All arguments are optional, if not specified, the default values will be used for those (not specified)arguments.
-
--help
will show the help message with short description for possible arguments. (only CLI version)
BASIC
- Create better UX for GUI version
- Add Warning about trying to execute conversion in a lot big files (actually works good in .mp3 files below 150Mb).
- Work with multiple files
- Add way to choose output folder
- Create project integration with ydc
ADVANCED
- Detect automatically the best params by checking whole audio file for silent/lowest amplitude parts before cutting (this can remove all needing for params).