How to start and stop audio recording automatically?
I am working on record audio using NAudio in C# and I need to start recording automatically and stop it automatically also after 6 sec. It works as for starting and stopping after 6 seconds but the audio repeated and it seems to enter an infinite loop.
This is the code:
public partial class Form1 : Form
{
System.Windows.Forms.Timer mytimer = new System.Windows.Forms.Timer(); //create a new Timer
private WaveFileWriter RecordedAudioWriter = null;
private WasapiLoopbackCapture CaptureInstance = null;
public Form1()
{
InitializeComponent();
mytimer.Interval = 6000; //set the interval to 1 second.
mytimer.Tick += new EventHandler(mytimer_Tick);
mytimer.Enabled = true;
}
private void mytimer_Tick(object sender, EventArgs e)
{
mytimer.Start();
string outputFilePath = @"D:deepNewTransfaretf-Fileoutputout.wav";
// Redefine the capturer instance with a new instance of the LoopbackCapture class
this.CaptureInstance = new WasapiLoopbackCapture();
// Redefine the audio writer instance with the given configuration
this.RecordedAudioWriter = new WaveFileWriter(outputFilePath, CaptureInstance.WaveFormat);
// When the capturer receives audio, start writing the buffer into the mentioned file
this.CaptureInstance.DataAvailable += (s, a) =>
{
this.RecordedAudioWriter.Write(a.Buffer, 0, a.BytesRecorded);
};
// When the Capturer Stops
this.CaptureInstance.RecordingStopped += (s, a) =>
{
this.RecordedAudioWriter.Dispose();
this.RecordedAudioWriter = null;
CaptureInstance.Dispose();
};
// Start recording !
this.CaptureInstance.StartRecording();
stoprec(sender,e);
}
private void stoprec(object sender, EventArgs e)
{
this.CaptureInstance.StopRecording();
this.mytimer.Enabled = false;
this.Close();
}
Could you please help me?
c# audio naudio
add a comment |
I am working on record audio using NAudio in C# and I need to start recording automatically and stop it automatically also after 6 sec. It works as for starting and stopping after 6 seconds but the audio repeated and it seems to enter an infinite loop.
This is the code:
public partial class Form1 : Form
{
System.Windows.Forms.Timer mytimer = new System.Windows.Forms.Timer(); //create a new Timer
private WaveFileWriter RecordedAudioWriter = null;
private WasapiLoopbackCapture CaptureInstance = null;
public Form1()
{
InitializeComponent();
mytimer.Interval = 6000; //set the interval to 1 second.
mytimer.Tick += new EventHandler(mytimer_Tick);
mytimer.Enabled = true;
}
private void mytimer_Tick(object sender, EventArgs e)
{
mytimer.Start();
string outputFilePath = @"D:deepNewTransfaretf-Fileoutputout.wav";
// Redefine the capturer instance with a new instance of the LoopbackCapture class
this.CaptureInstance = new WasapiLoopbackCapture();
// Redefine the audio writer instance with the given configuration
this.RecordedAudioWriter = new WaveFileWriter(outputFilePath, CaptureInstance.WaveFormat);
// When the capturer receives audio, start writing the buffer into the mentioned file
this.CaptureInstance.DataAvailable += (s, a) =>
{
this.RecordedAudioWriter.Write(a.Buffer, 0, a.BytesRecorded);
};
// When the Capturer Stops
this.CaptureInstance.RecordingStopped += (s, a) =>
{
this.RecordedAudioWriter.Dispose();
this.RecordedAudioWriter = null;
CaptureInstance.Dispose();
};
// Start recording !
this.CaptureInstance.StartRecording();
stoprec(sender,e);
}
private void stoprec(object sender, EventArgs e)
{
this.CaptureInstance.StopRecording();
this.mytimer.Enabled = false;
this.Close();
}
Could you please help me?
c# audio naudio
add a comment |
I am working on record audio using NAudio in C# and I need to start recording automatically and stop it automatically also after 6 sec. It works as for starting and stopping after 6 seconds but the audio repeated and it seems to enter an infinite loop.
This is the code:
public partial class Form1 : Form
{
System.Windows.Forms.Timer mytimer = new System.Windows.Forms.Timer(); //create a new Timer
private WaveFileWriter RecordedAudioWriter = null;
private WasapiLoopbackCapture CaptureInstance = null;
public Form1()
{
InitializeComponent();
mytimer.Interval = 6000; //set the interval to 1 second.
mytimer.Tick += new EventHandler(mytimer_Tick);
mytimer.Enabled = true;
}
private void mytimer_Tick(object sender, EventArgs e)
{
mytimer.Start();
string outputFilePath = @"D:deepNewTransfaretf-Fileoutputout.wav";
// Redefine the capturer instance with a new instance of the LoopbackCapture class
this.CaptureInstance = new WasapiLoopbackCapture();
// Redefine the audio writer instance with the given configuration
this.RecordedAudioWriter = new WaveFileWriter(outputFilePath, CaptureInstance.WaveFormat);
// When the capturer receives audio, start writing the buffer into the mentioned file
this.CaptureInstance.DataAvailable += (s, a) =>
{
this.RecordedAudioWriter.Write(a.Buffer, 0, a.BytesRecorded);
};
// When the Capturer Stops
this.CaptureInstance.RecordingStopped += (s, a) =>
{
this.RecordedAudioWriter.Dispose();
this.RecordedAudioWriter = null;
CaptureInstance.Dispose();
};
// Start recording !
this.CaptureInstance.StartRecording();
stoprec(sender,e);
}
private void stoprec(object sender, EventArgs e)
{
this.CaptureInstance.StopRecording();
this.mytimer.Enabled = false;
this.Close();
}
Could you please help me?
c# audio naudio
I am working on record audio using NAudio in C# and I need to start recording automatically and stop it automatically also after 6 sec. It works as for starting and stopping after 6 seconds but the audio repeated and it seems to enter an infinite loop.
This is the code:
public partial class Form1 : Form
{
System.Windows.Forms.Timer mytimer = new System.Windows.Forms.Timer(); //create a new Timer
private WaveFileWriter RecordedAudioWriter = null;
private WasapiLoopbackCapture CaptureInstance = null;
public Form1()
{
InitializeComponent();
mytimer.Interval = 6000; //set the interval to 1 second.
mytimer.Tick += new EventHandler(mytimer_Tick);
mytimer.Enabled = true;
}
private void mytimer_Tick(object sender, EventArgs e)
{
mytimer.Start();
string outputFilePath = @"D:deepNewTransfaretf-Fileoutputout.wav";
// Redefine the capturer instance with a new instance of the LoopbackCapture class
this.CaptureInstance = new WasapiLoopbackCapture();
// Redefine the audio writer instance with the given configuration
this.RecordedAudioWriter = new WaveFileWriter(outputFilePath, CaptureInstance.WaveFormat);
// When the capturer receives audio, start writing the buffer into the mentioned file
this.CaptureInstance.DataAvailable += (s, a) =>
{
this.RecordedAudioWriter.Write(a.Buffer, 0, a.BytesRecorded);
};
// When the Capturer Stops
this.CaptureInstance.RecordingStopped += (s, a) =>
{
this.RecordedAudioWriter.Dispose();
this.RecordedAudioWriter = null;
CaptureInstance.Dispose();
};
// Start recording !
this.CaptureInstance.StartRecording();
stoprec(sender,e);
}
private void stoprec(object sender, EventArgs e)
{
this.CaptureInstance.StopRecording();
this.mytimer.Enabled = false;
this.Close();
}
Could you please help me?
c# audio naudio
c# audio naudio
edited Nov 20 '18 at 19:45
Ahmed Abdelhameed
5,56382046
5,56382046
asked Nov 20 '18 at 19:28
safosafo
12
12
add a comment |
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%2f53400209%2fhow-to-start-and-stop-audio-recording-automatically%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%2f53400209%2fhow-to-start-and-stop-audio-recording-automatically%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