Detecting Specific Sounds (Frequencies) with Python
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 |
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 '18 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 '18 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 '18 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 '18 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 '18 at 15:49
add a comment |
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 '18 at 17:23
Yansı CengizYansı 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 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 '18 at 15:49
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
0
active
oldest
votes
0
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.
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 '18 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 '18 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 '18 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 '18 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 '18 at 15:49