Record Audio From Microphone
-
(1) - Record Audio I want to make an audio recorder. It can record from microphone input, all sound from the computer, part of it (wave only, cd audio only, or line-in only). How can I do that. (2) - Read Current Audio Volume Is there some ways to read the volume of the audio mixer, since i want to make something using progress bar that detect current volume of my pc. Anyone can help me? Thanks
- No Signature Available -
-
(1) - Record Audio I want to make an audio recorder. It can record from microphone input, all sound from the computer, part of it (wave only, cd audio only, or line-in only). How can I do that. (2) - Read Current Audio Volume Is there some ways to read the volume of the audio mixer, since i want to make something using progress bar that detect current volume of my pc. Anyone can help me? Thanks
- No Signature Available -
Hello, You may use the following VB Script to record audio: Dim rec Set rec = CreateObject("AudioCtl.AudioRecord.1") 'Select sound device 0 rec.DeviceIndex = 0 'Set output file rec.SetOutputFileName "1.mp3" 'Start record with given parameters, record mp3 audio rec.StartRecord 2, 11025 'Record for 10 secs WScript.Sleep 10000 'Stop Record rec.StopRecord Thanks, James
James Smith www.componentone.com
-
(1) - Record Audio I want to make an audio recorder. It can record from microphone input, all sound from the computer, part of it (wave only, cd audio only, or line-in only). How can I do that. (2) - Read Current Audio Volume Is there some ways to read the volume of the audio mixer, since i want to make something using progress bar that detect current volume of my pc. Anyone can help me? Thanks
- No Signature Available -