Skip to content

Searching for an audio clip inside another clip using librosa & scipy

Notifications You must be signed in to change notification settings

mohammed-Emad/Search-within-an-audio-clip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Search-within-an-audio-clip

Searching for an audio clip inside another clip using librosa & scipy

You can replace the files here and run the function

    full_audio  = "Rasha_Rizk.wav"
    small_audio = "target.wav"
    search_pause_time = 0
    get_loc_clib(full_audio, small_audio, search_pause_time)

If you want to search inside a video, you can use the following command to convert the video to a wav Then search inside the resulting file

ffmpeg -i wissal_idbella.mp4 -vn -acodec pcm_s16le -ar 44100 -ac 2 out_ws.wav

If the file is of mp3 type, you can use the convert command

ffmpeg -i Rasha_Rizk.mp3 -acodec pcm_s16le -ac 1 -ar 16000 Rasha_Rizk.wav

Output

    Full  Audio Duration:595.32 | s
    Small Audio Duration:15.104 | s
    The moment the search stops in seconds:  595
    Start:200.0 |s
    End:215.10 | s

About

Searching for an audio clip inside another clip using librosa & scipy

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages