I have a long audio file divided into segments by one (I assume it is always the same) sound, and I want to split it into these segments.
I've tried using code from this question - Split speech audio file on words in python but playing with parameters did not give any results, because silence is not reliable marker in my case.
I want to take that separating sound and replace it with very long silence, so code from that question would actually work for me. Is there any libraries for that? I am not really bound to python, so I can switch to any language that has good library for it. Or if there is no easy way to do it, what materials should I learn to dive deep into this issue and came up with some solution myself?