Detecting Specific Sounds (Frequencies) with Python
up vote
0
down vote
favorite
I want to record sound of a machine and want to detect if its present in another sound file that I record.
I am able to record the sound of the machine and the sound file that I want to detect its presence.
I am also able to take fft of the sound files, however I dont know If I should check specific frequencies or check it in time intervals.
Can I implement it with aubio or is there another way?
silent room
silent room + sound
python audio signal-processing fft aubio
add a comment |
up vote
0
down vote
favorite
I want to record sound of a machine and want to detect if its present in another sound file that I record.
I am able to record the sound of the machine and the sound file that I want to detect its presence.
I am also able to take fft of the sound files, however I dont know If I should check specific frequencies or check it in time intervals.
Can I implement it with aubio or is there another way?
silent room
silent room + sound
python audio signal-processing fft aubio
What is the machine that you are recording? Do you mean the very same record of the machine or record of the same machine?
– Gideon Kogan
Nov 15 at 13:08
Record of same machine. I want to detect the source of the noises in the room automatically. So in a room first I record a sound in wav format. There were no dominant noise exist (assume silent), next I record a specific noise (caused by audio jack from speaker). Now I will write a program which records sounds in a determined interval, then check if the noise (audio jack noise) exist or not. So in basic; how can I compare 2 wav file and figure out the additional sound?
– Yansı Cengiz
Nov 15 at 14:05
If you neglect the reflections, you should create a noise signature and compare it the your reference. This task is not trivial and requires solid knowledge in many fields. To understand how such signature can characterize, I suggest you to review the following work: Antoni, Jérôme. "Cyclostationarity by examples." Mechanical Systems and Signal Processing 23.4 (2009): 987-1036. Good luck
– Gideon Kogan
Nov 15 at 14:54
Thanks for the answer, Since this only a small part of my project, I thoughed that I could compare two sound files with aubio or any python application. Is it possible or there is no such application to do that?
– Yansı Cengiz
Nov 15 at 15:46
I am not familiar with such a program. Maybe you should reconsider your project content or reevaluate the time you want to dedicate for this section.
– Gideon Kogan
Nov 15 at 15:49
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I want to record sound of a machine and want to detect if its present in another sound file that I record.
I am able to record the sound of the machine and the sound file that I want to detect its presence.
I am also able to take fft of the sound files, however I dont know If I should check specific frequencies or check it in time intervals.
Can I implement it with aubio or is there another way?
silent room
silent room + sound
python audio signal-processing fft aubio
I want to record sound of a machine and want to detect if its present in another sound file that I record.
I am able to record the sound of the machine and the sound file that I want to detect its presence.
I am also able to take fft of the sound files, however I dont know If I should check specific frequencies or check it in time intervals.
Can I implement it with aubio or is there another way?
silent room
silent room + sound
python audio signal-processing fft aubio
python audio signal-processing fft aubio
asked Nov 14 at 17:23
Yansı Cengiz
63
63
What is the machine that you are recording? Do you mean the very same record of the machine or record of the same machine?
– Gideon Kogan
Nov 15 at 13:08
Record of same machine. I want to detect the source of the noises in the room automatically. So in a room first I record a sound in wav format. There were no dominant noise exist (assume silent), next I record a specific noise (caused by audio jack from speaker). Now I will write a program which records sounds in a determined interval, then check if the noise (audio jack noise) exist or not. So in basic; how can I compare 2 wav file and figure out the additional sound?
– Yansı Cengiz
Nov 15 at 14:05
If you neglect the reflections, you should create a noise signature and compare it the your reference. This task is not trivial and requires solid knowledge in many fields. To understand how such signature can characterize, I suggest you to review the following work: Antoni, Jérôme. "Cyclostationarity by examples." Mechanical Systems and Signal Processing 23.4 (2009): 987-1036. Good luck
– Gideon Kogan
Nov 15 at 14:54
Thanks for the answer, Since this only a small part of my project, I thoughed that I could compare two sound files with aubio or any python application. Is it possible or there is no such application to do that?
– Yansı Cengiz
Nov 15 at 15:46
I am not familiar with such a program. Maybe you should reconsider your project content or reevaluate the time you want to dedicate for this section.
– Gideon Kogan
Nov 15 at 15:49
add a comment |
What is the machine that you are recording? Do you mean the very same record of the machine or record of the same machine?
– Gideon Kogan
Nov 15 at 13:08
Record of same machine. I want to detect the source of the noises in the room automatically. So in a room first I record a sound in wav format. There were no dominant noise exist (assume silent), next I record a specific noise (caused by audio jack from speaker). Now I will write a program which records sounds in a determined interval, then check if the noise (audio jack noise) exist or not. So in basic; how can I compare 2 wav file and figure out the additional sound?
– Yansı Cengiz
Nov 15 at 14:05
If you neglect the reflections, you should create a noise signature and compare it the your reference. This task is not trivial and requires solid knowledge in many fields. To understand how such signature can characterize, I suggest you to review the following work: Antoni, Jérôme. "Cyclostationarity by examples." Mechanical Systems and Signal Processing 23.4 (2009): 987-1036. Good luck
– Gideon Kogan
Nov 15 at 14:54
Thanks for the answer, Since this only a small part of my project, I thoughed that I could compare two sound files with aubio or any python application. Is it possible or there is no such application to do that?
– Yansı Cengiz
Nov 15 at 15:46
I am not familiar with such a program. Maybe you should reconsider your project content or reevaluate the time you want to dedicate for this section.
– Gideon Kogan
Nov 15 at 15:49
What is the machine that you are recording? Do you mean the very same record of the machine or record of the same machine?
– Gideon Kogan
Nov 15 at 13:08
What is the machine that you are recording? Do you mean the very same record of the machine or record of the same machine?
– Gideon Kogan
Nov 15 at 13:08
Record of same machine. I want to detect the source of the noises in the room automatically. So in a room first I record a sound in wav format. There were no dominant noise exist (assume silent), next I record a specific noise (caused by audio jack from speaker). Now I will write a program which records sounds in a determined interval, then check if the noise (audio jack noise) exist or not. So in basic; how can I compare 2 wav file and figure out the additional sound?
– Yansı Cengiz
Nov 15 at 14:05
Record of same machine. I want to detect the source of the noises in the room automatically. So in a room first I record a sound in wav format. There were no dominant noise exist (assume silent), next I record a specific noise (caused by audio jack from speaker). Now I will write a program which records sounds in a determined interval, then check if the noise (audio jack noise) exist or not. So in basic; how can I compare 2 wav file and figure out the additional sound?
– Yansı Cengiz
Nov 15 at 14:05
If you neglect the reflections, you should create a noise signature and compare it the your reference. This task is not trivial and requires solid knowledge in many fields. To understand how such signature can characterize, I suggest you to review the following work: Antoni, Jérôme. "Cyclostationarity by examples." Mechanical Systems and Signal Processing 23.4 (2009): 987-1036. Good luck
– Gideon Kogan
Nov 15 at 14:54
If you neglect the reflections, you should create a noise signature and compare it the your reference. This task is not trivial and requires solid knowledge in many fields. To understand how such signature can characterize, I suggest you to review the following work: Antoni, Jérôme. "Cyclostationarity by examples." Mechanical Systems and Signal Processing 23.4 (2009): 987-1036. Good luck
– Gideon Kogan
Nov 15 at 14:54
Thanks for the answer, Since this only a small part of my project, I thoughed that I could compare two sound files with aubio or any python application. Is it possible or there is no such application to do that?
– Yansı Cengiz
Nov 15 at 15:46
Thanks for the answer, Since this only a small part of my project, I thoughed that I could compare two sound files with aubio or any python application. Is it possible or there is no such application to do that?
– Yansı Cengiz
Nov 15 at 15:46
I am not familiar with such a program. Maybe you should reconsider your project content or reevaluate the time you want to dedicate for this section.
– Gideon Kogan
Nov 15 at 15:49
I am not familiar with such a program. Maybe you should reconsider your project content or reevaluate the time you want to dedicate for this section.
– Gideon Kogan
Nov 15 at 15:49
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53305661%2fdetecting-specific-sounds-frequencies-with-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What is the machine that you are recording? Do you mean the very same record of the machine or record of the same machine?
– Gideon Kogan
Nov 15 at 13:08
Record of same machine. I want to detect the source of the noises in the room automatically. So in a room first I record a sound in wav format. There were no dominant noise exist (assume silent), next I record a specific noise (caused by audio jack from speaker). Now I will write a program which records sounds in a determined interval, then check if the noise (audio jack noise) exist or not. So in basic; how can I compare 2 wav file and figure out the additional sound?
– Yansı Cengiz
Nov 15 at 14:05
If you neglect the reflections, you should create a noise signature and compare it the your reference. This task is not trivial and requires solid knowledge in many fields. To understand how such signature can characterize, I suggest you to review the following work: Antoni, Jérôme. "Cyclostationarity by examples." Mechanical Systems and Signal Processing 23.4 (2009): 987-1036. Good luck
– Gideon Kogan
Nov 15 at 14:54
Thanks for the answer, Since this only a small part of my project, I thoughed that I could compare two sound files with aubio or any python application. Is it possible or there is no such application to do that?
– Yansı Cengiz
Nov 15 at 15:46
I am not familiar with such a program. Maybe you should reconsider your project content or reevaluate the time you want to dedicate for this section.
– Gideon Kogan
Nov 15 at 15:49