Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

remove silence at the beginning and at the end of wave files with PyDub

Tags:

python

wave

pydub

How can I remove the silence from the beginning and the end of wave files with PyDub?

I guess I should access segment by segment and check whether it's silent or not (but I'm not able to do it) :/

e.g. I have a wave file with silence at the beginning, end, or both (like below) and I want to remove the silence at the beginning and at the end of the file:

wave file with silence

e.g. I want to import it

sound = AudioSegment.from_wav(inputfile)

cycle for every sample of sound to check whether it's silent and mark the last silent sample since when the waves starts (marker1), then get to the last sample before the wave ends (marker2) and I can export the new sound file from the two markers

newsound = sound[marker1:marker2]

newsound.export(outputfile, format="wav")
like image 835
DaniPaniz Avatar asked Apr 09 '15 19:04

DaniPaniz


2 Answers

I would advise that you cycle in chunks of at least 10 ms in order to do it a little more quickly (less iterations) and also because individual samples don't really have a "loudness".

Sound is vibration, so at a minimum it would take 2 samples to detect whether there was actually any sound, (but that would only tell you about high frequency).

Anyway… something like this could work:

from pydub import AudioSegment

def detect_leading_silence(sound, silence_threshold=-50.0, chunk_size=10):
    '''
    sound is a pydub.AudioSegment
    silence_threshold in dB
    chunk_size in ms

    iterate over chunks until you find the first one with sound
    '''
    trim_ms = 0 # ms

    assert chunk_size > 0 # to avoid infinite loop
    while sound[trim_ms:trim_ms+chunk_size].dBFS < silence_threshold and trim_ms < len(sound):
        trim_ms += chunk_size

    return trim_ms

sound = AudioSegment.from_file("/path/to/file.wav", format="wav")

start_trim = detect_leading_silence(sound)
end_trim = detect_leading_silence(sound.reverse())

duration = len(sound)    
trimmed_sound = sound[start_trim:duration-end_trim]
like image 94
Jiaaro Avatar answered Oct 22 '22 08:10

Jiaaro


pydub has probably been updated since this question was first asked, but here is the code I used to trim trailing and leading silence:

from pydub import AudioSegment
from pydub.silence import detect_leading_silence

trim_leading_silence: AudioSegment = lambda x: x[detect_leading_silence(x) :]
trim_trailing_silence: AudioSegment = lambda x: trim_leading_silence(x.reverse()).reverse()
strip_silence: AudioSegment = lambda x: trim_trailing_silence(trim_leading_silence(x))

sound = AudioSegment.from_file(file_path_here)
stripped = strip_silence(sound)

detect_leading_silence from pydub.silence gives you indices you can use to slice the loaded AudioSegment. Basically, you can reverse the AudioSegment, trim it, and reverse it again to trim trailing silence. Stripping silence from both ends is tantamount to trimming leading and trailing silences.

Note that strip_silence should raise an IndexError if the loaded AudioSegment is silent or becomes silent after a trim operation.

The last time I looked, the default chunk size was 10 ms and the default silence threshold was -50 dBFS.

My version of pydub is 0.25.1 and my version of ffmpeg is 4.3.1.

like image 21
michen00 Avatar answered Oct 22 '22 09:10

michen00