extract_loudest_section
extract_loudest_section copied to clipboard
Trims .wav audio files to the loudest section of a given length
When I run this on Colab, since my data is too many, so it causes Colab disconnect my runtime. The only way I can think about is running this on...
Hello, All my ogg -> **wav** files are being reported as "_skipped too quiet_" yet I can hear the files using the headset/microphone (without volume amplification) that was used to...
line 71 in main.cc. Why "fabsf(input_value * input_value)"? Not "fabsf(input_value)" While line 77 is "fabsf(trailing_value)"
Would it be foolish of me to assume it is as trivial as changing desired_length_ms = 1000 to desired_length_ms=10000? I understand you mentioned in your README that this tool is...
Hi Pete Warden, Thank you so much for providing this useful tools and command dataset for us. When I clean the dataset, I notice that hundreds of audio are not...
Commit 1f2eb73 replaces `sqrtf(x*x)` with `fabsf(x)` to calculate volume. In one instance, `sqrtf(x*x)` was accidentally replaced with `fabsf(x*x)` instead of `fabsf(x)`. This change fixes that instance.
This commits adds support of the meson build system so that build is supported on linux/windows/macos. However I tested it only on linux.
The stereo files which are converted to mono become too short. So if any speech starts in the record at the end then the files is skipped as quiet, because...