Search found 13 matches

by AFJ
Thu Dec 10, 2020 6:05 am
Forum: Windows
Topic: Adding random noise in the entire directory that contains audio files
Replies: 10
Views: 353

Re: Adding random noise in the entire directory that contains audio files

Thank you so much steve, I will look into it in great detail and share my experience. I will share the final code if I turn out to be successful in doing what I want. Your efforts are much appreciated. God bless you!
by AFJ
Tue Dec 08, 2020 5:03 pm
Forum: Windows
Topic: Adding random noise in the entire directory that contains audio files
Replies: 10
Views: 353

Re: Adding random noise in the entire directory that contains audio files

import os import random as r directory = r'C:\Users\DNS\Desktop\Audio Captcha\Test Python code\audio_captcha_training_set' for filename in os.listdir(directory): if filename.endswith(".wav") or filename.endswith(".wav"): print(os.path.join(directory, filename)) path = r'C:\Users\DNS\Desktop\Audio C...
by AFJ
Tue Dec 08, 2020 4:44 pm
Forum: Windows
Topic: Adding random noise in the entire directory that contains audio files
Replies: 10
Views: 353

Re: Adding random noise in the entire directory that contains audio files

Trebor wrote:
Tue Dec 01, 2020 2:59 pm
http://sox.sourceforge.net/Docs/Scripts
Does this add random noise by itself? I am not familiar with it
by AFJ
Tue Dec 08, 2020 4:41 pm
Forum: Windows
Topic: Adding random noise in the entire directory that contains audio files
Replies: 10
Views: 353

Re: Adding random noise in the entire directory that contains audio files

import os import random as r directory = r'C:\Users\DNS\Desktop\Audio Captcha\Test Python code\audio_captcha_training_set' for filename in os.listdir(directory): if filename.endswith(".wav") or filename.endswith(".wav"): print(os.path.join(directory, filename)) path = r'C:\Users\DNS\Desktop\Audio C...
by AFJ
Tue Dec 01, 2020 1:22 pm
Forum: Windows
Topic: Adding random noise in the entire directory that contains audio files
Replies: 10
Views: 353

Adding random noise in the entire directory that contains audio files

I have been working with python and have been exhausted since not much familiar with the syntax but I put my best effort to get as far as possible. Now, I need help. I have two folders, let's call folder_1 and folder_2. In folder_1 I have some audio files (1000 files) of no longer than 3 seconds dur...
by AFJ
Tue Dec 01, 2020 1:13 pm
Forum: Windows
Topic: Making Audio Captcha using audacity
Replies: 5
Views: 152

Re: Making Audio Captcha using audacity

Yes, I am trying to break audio captcha for which I need a dataset and I am trying to make my own dataset.
by AFJ
Sat Nov 21, 2020 12:18 pm
Forum: Windows
Topic: Making Audio Captcha using audacity
Replies: 5
Views: 152

Re: Making Audio Captcha using audacity

I want this 1000 times first, then 5000 times and if needed then 10,000 times. I am making a dataset for training a neural network.
by AFJ
Sat Nov 21, 2020 11:50 am
Forum: Windows
Topic: Making Audio Captcha using audacity
Replies: 5
Views: 152

Making Audio Captcha using audacity

Hello everyone, I have two folders. One of them contains A-Z and 0-9 audio clips of 1.5 seconds and in another folder I have different kinds of noises. I want to take 5 characters from first folder (randomly) and stitch them. Then randomly select a noise from the noise folder and add that to the alr...
by AFJ
Wed Nov 04, 2020 10:23 am
Forum: Windows
Topic: Mixing one kind of Noise in multiple audio tracks
Replies: 7
Views: 155

Re: Mixing one kind of Noise in multiple audio tracks

Thank you so much!
by AFJ
Mon Nov 02, 2020 4:30 pm
Forum: Windows
Topic: Mixing one kind of Noise in multiple audio tracks
Replies: 7
Views: 155

Re: Mixing one kind of Noise in multiple audio tracks

Import2 has parameters Filename=" ". I want to add the noise in 50 audio files, do I need to manually add these names?