 |
|
 |
سلام
برنامتونو دانلود کردم ،خیلی ممنون
واقعا خوشحالم که ایرانی هستییییییییییییییییید
|
|
|
|
 |
|
 |
My article still cannot view by others except myself,so please download code directly
can download here:
Record&play synchronous[^]
modified on Monday, January 17, 2011 7:51 PM
|
|
|
|
 |
|
 |
H!,
Thanks for your info. I am really new in programing. Currently, I am writing a project for my research. I would like to recording voice (audio) when I execute the program using VB .net. Could you or anyone who are familiar with VB .net help me to solve the problem?
EW
|
|
|
|
 |
|
 |
I Want to record only system sound ... not the external sound like what ever we talk too ... how pls its urgent ...
|
|
|
|
 |
|
 |
im trying to import the winmm.dll but showing error saying Dll attribute not found...i really need to know how do i play a particular .wav file....waht exactly happens when loading a device....which device is loaded....if u can help please reply asap....im doing a project....all related to playing and recording sounds....dis wld help...
|
|
|
|
 |
|
 |
k...i get d library stuff nw...bt wer do i include d sound files...i dont understand....when in WaveOutOpen...hw do we knw wat is it exactly doin.....!!!
|
|
|
|
 |
|
 |
Hi,
thanks for sharing your code. It is very helpful for me.
I've a little doubt:
I've seen from your code in `VoicePlaying.cpp' that you call
the api `waveOutUnprepareHeader' from the callback function
`VoiceWaveOutProc'.
In my code i want to call `waveOutWrite' in the callback, under the
MM_WOM_DONE message. Do You think this may cause any deadlocks or such?
Bests regards.
Marco
|
|
|
|
 |
|
 |
Hi Mr.Riazi
I just want to play an interger array with value between 0 - 255
in other hand I have an array that i want to play it by speaker.
Can u help me?
thanks
Have fun
MOSTAFA
|
|
|
|
 |
|
 |
Hi,
I'm testing to compile this script but it fails.
I think cpp syntax has been changes at this time, for example :
#include "MMSystem.h" doesn't success, it expects #include "MMSystem" without the ".h"
It's shame because your idea please me, can you give us the version of your compilator ?
If anybody has the solution in order to this script works, I will happy.
Thank you for your response.
Seb.
|
|
|
|
 |
|
 |
How many minutes can I buffer I have to save it to a file. I am trying to record for 10-15 mins and its giving me problems in processing it.
|
|
|
|
 |
|
 |
I successfully compiled the above code to make a cli which takes input from the user. But I would like to start recording until the user presses a key. Can anyone give me some direction on this?
Thanks
Vniks
|
|
|
|
 |
|
 |
is there any way that I could prepare buffer for long time but only use some of it and store it to a file. I mean, I prepare buffer for 5 mins but use only 2 mins and save it to a file. Is this possible ?
|
|
|
|
 |
|
 |
how can i use this for call recording
|
|
|
|
 |
|
|
 |
|
 |
I successfully compiled the files. How do I save them to a file !!
I did try to copy the buffer but it doesnt work.
Can anyone help me out.
Thanks
Nikhil
|
|
|
|
 |
|
 |
Hi,
I am trying to compile the source code using vc++5.0 and am getting many errors.( Around 90 ) If anyone has compiled it, let me know.
Thanks
Nikhil
|
|
|
|
 |
|
 |
Hi,
I am Nikhil, currently working on a project. I would like to use your code. Is your code protected by any license or is it opensource.
Let me know asap
Thanks
Nikhil
|
|
|
|
 |
|
 |
Hi,
It's open source, there is no problem for using it.
Best regards,
A. Riazi
|
|
|
|
 |
|
 |
Dear Mr Riazi
I used an instance of CRercording and an instance of CPlaying in a cuncurrent program.
I want to record data and immediately play it on speaker.
But sound quality is very bad and it has some noises in it.
Is it possible to record and play sound data cuncurrently.
What do you offer for such a project.
Regards
Mahdi Monhi
|
|
|
|
 |
|
 |
Recording and playing are asynchronous.
You should put Sleep() after Record() and Play() call when you just test it in a function.
CVoiceRecording m_Record;
CVoicePlaying m_Play;
m_Record.PrepareBuffer(10); //prepare buffer for recording 10 seconds.
m_Record.Open();
m_Play.PrepareBuffer(10); //prepare buffer for playing of 10 seconds of data
m_Play.Open();
if (m_Record.IsOpen())
{
m_Record.Record();
Sleep(10*1000); // Wait 10 secord to finish recording
}
//after finishing the record scenario,
//play the buffer, first copy recorded buffer to m_Play buffer
m_Play.CopyBuffer(m_Record.buffer, 10);
if (m_Play.IsOpen())
{
m_Play.Play();
Sleep(10*1000); // Wait to finish Playing
}
|
|
|
|
 |
|
 |
Hmmm i'm still a newb and i just copy - paste it in vb.net but most of them are underlined. Can u give the vb.net version of this code? Is it possible, using this code, to record not only from microphone but also mp3 that i play or cd or the others. Thx.
- No Signature Available -
|
|
|
|
 |
|
 |
My brother-in-law was working on an old lake cabin he and my sister recently purchased. While working alone on the cabin late one night he heard whispers, like a conversation, coming from the kitchen area. It freaked him out and he quickly packed up his gear left. The cabin was build by hand 60 yrs ago by the original owner, now deceased.
I'd like to write a voice recorder that is voice activate. I would like to set up my laptop with a high quality microphone overnight and see if it picks up anything. I'd like to eliminate as much dead air as possible (no pun intended).
Can this class be modified to poll sound from a mic and trigger an action based on some frequency threshold being met.
I don't believe in ghosts, but thought it would be fun. This is the closest I've ever come to an encounter. I'll share my results if I find anything interesting.
Thanks - Matt
|
|
|
|
 |
|
 |
i have these compiling error. I use Visual c++
Compiling...
VoiceRecording.cpp
c:\documents and settings\doxsi\escritorio\voicerecording_src\voicerecording.cpp(5) : fatal error C1083: Cannot open include file: 'stdafx.h': No such file or directory
VoiceBase.cpp
c:\documents and settings\doxsi\escritorio\voicerecording_src\voicebase.cpp(5) : fatal error C1083: Cannot open include file: 'stdafx.h': No such file or directory
VoicePlaying.cpp
c:\documents and settings\doxsi\escritorio\voicerecording_src\voiceplaying.cpp(5) : fatal error C1083: Cannot open include file: 'stdafx.h': No such file or directory
Error executing cl.exe.
voce.exe - 3 error(s), 0 warning(s)
Some can help me, please?
doxsi
|
|
|
|
 |
|
 |
hello razi.
i have the same problem as triplebit, when i try to record and playback the result nothing is being recorded.
can you or anyone else that managed to run it properly help me with my problem?
|
|
|
|
 |
|
 |
hi everyone,
i want to add a online recorder in my web application(.net). so can anybody tell me, is this example work properly if i convert it in the VC++ library and then use it in my application, is that possible.
b'cos if it work than in that case, it'll access user's sound card to record the sound instead it'll access server's sound card to record aqny sound. And then it'll create a blank .wav file. as i'm getting right now by other technique.
so plz tell me is that possible to use it on web appl.
praveen.kumar@finalquadrant.com
praveen kumar
|
|
|
|
 |