UtiLite
0.2.14
A lite utilities library
|
#include <UAudioRecorderMic.h>
Inherits UAudioRecorder.
Public Member Functions | |
UAudioRecorderMic (int driver=0, int fs=44100, int frameLength=1024, int bytesPerSample=2, int channels=1) | |
UAudioRecorderMic (const std::string &fileName, int maxFileSizeMb, int driver=0, int fs=44100, int frameLength=1024, int bytesPerSample=2, int channels=1) | |
Protected Member Functions | |
virtual void | mainLoopBegin () |
virtual void | mainLoop () |
virtual void | mainLoopEnd () |
This recorder gets frames from the microphone. It is configured with the driver number of the microphone and the frequency. You can retrieve the list of available drivers on the computer with the method getRecordDrivers(). It can be also created to record in a file while getting frames from the microphone stream. It records by default in wav but if the file name contains ".mp3", it will automatically encode when the process is finished. The recording is finished when the maximum size set is reached.
Example recording to a file and processing the frame:
UAudioRecorder* recorder = new PlayRecorder("fileName.wav", 100); Frame frame; unsigned int frameId = 0; recorder->start(); while(recorder->getNextFrame(frame, frameId)) { ...process the frame... ... break when a condition is reached... } recorder->stop(); delete recorder;
UAudioRecorderMic::UAudioRecorderMic | ( | int | driver = 0 , |
int | fs = 44100 , |
||
int | frameLength = 1024 , |
||
int | bytesPerSample = 2 , |
||
int | channels = 1 |
||
) |
Record from mic.
UAudioRecorderMic::UAudioRecorderMic | ( | const std::string & | fileName, |
int | maxFileSizeMb, | ||
int | driver = 0 , |
||
int | fs = 44100 , |
||
int | frameLength = 1024 , |
||
int | bytesPerSample = 2 , |
||
int | channels = 1 |
||
) |
Record from mic while saving frames to a file.
virtual void UAudioRecorderMic::mainLoop | ( | ) | [protected, virtual] |
Pure virtual method mainLoop(). The inner loop of the thread. This method is called repetitively until the thread is killed. Note that if kill() is called in mainLoopBegin(), mainLoop() is not called, terminating immediately the thread.
Implements UThreadNode.
virtual void UAudioRecorderMic::mainLoopBegin | ( | ) | [protected, virtual] |
Virtual method mainLoopBegin(). User can implement this function to add a behavior before the main loop is started. It is called once (before entering mainLoop()).
Reimplemented from UThreadNode.
virtual void UAudioRecorderMic::mainLoopEnd | ( | ) | [protected, virtual] |
Virtual method mainLoopEnd(). User can implement this function to add a behavior after the thread is killed (after exiting the mainLoop(), work is still done in the thread before exiting).
Reimplemented from UAudioRecorder.