RecorderInfo

The information about the file that is recorded.

struct RecorderInfo {
  const char* fileName;
  unsigned int durationMs;
  unsigned int fileSize;

  RecorderInfo() : fileName(NULL), durationMs(0), fileSize(0) {}
  RecorderInfo(const char* name, unsigned int dur, unsigned int size) : fileName(name), durationMs(dur), fileSize(size) {}
};

Attributes

filename
The absolute path of the recording file.
durationMs
The recording duration (ms).
fileSize
The size (bytes) of the recording file.