1. microphone
- Posted by timmy <tim781 at PACBELL.NET>
Jan 24, 2000
-
Last edited Jan 25, 2000
Hi everybody, I'm writting to ask if anyone knows how
to record from your microphone using Euphoria.
...thanks a bunch!
2. Re: microphone
On Mon, 24 Jan 2000, you wrote:
> Hi everybody, I'm writting to ask if anyone knows how
> to record from your microphone using Euphoria.
>
> ...thanks a bunch!
> .
Jacques Deschenes has a SoundBlaster library on the Archives pages at
http://www.rapideuphoria.com.
However, he notes:
global function ReadADC()
-- ReadADC reads a byte from analog to digital converter.
-- The ADC is connected to microphone input.
-- Used in a loop could be used to record sound.
-- Unusable in euphoria due to lack of speed.
WriteDSP(READ_ADC)
return ReadDSP()
end function -- ReadDAC()
If you have a fast pc, perhaps it will work - it's worth a try. Otherwise, it
may be necessary to write a routine in assembler to read and save the mic
data.
Regards,
Irv