Using QMicrophone
hamishwillee
(Talk | contribs) m (Text replace - "Category:MeeGo" to "Category:MeeGo Harmattan") |
hamishwillee
(Talk | contribs) m (Text replace - "<code cpp>" to "<code cpp-qt>") |
||
| Line 30: | Line 30: | ||
=== .pro === | === .pro === | ||
| − | <code cpp> | + | <code cpp-qt> |
include(./QMicrophone/microphone.pri) | include(./QMicrophone/microphone.pri) | ||
</code> | </code> | ||
=== main.cpp === | === main.cpp === | ||
| − | <code cpp> | + | <code cpp-qt> |
#include <QtGui/QApplication> | #include <QtGui/QApplication> | ||
#include "qmlapplicationviewer.h" | #include "qmlapplicationviewer.h" | ||
| Line 59: | Line 59: | ||
== QML == | == QML == | ||
=== How to Record Audio Files === | === How to Record Audio Files === | ||
| − | <code cpp> | + | <code cpp-qt> |
import QtQuick 1.1 | import QtQuick 1.1 | ||
import Microphone 1.0 | import Microphone 1.0 | ||
| Line 137: | Line 137: | ||
=== How to manage Volume === | === How to manage Volume === | ||
| − | <code cpp> | + | <code cpp-qt> |
import QtQuick 1.1 | import QtQuick 1.1 | ||
import Microphone 1.0 | import Microphone 1.0 | ||
Latest revision as of 04:20, 11 October 2012
Article Metadata
Tested with
Devices(s): Nokia N8, Nokia C7-00, N950
Compatibility
Platform(s): Symbian^3 and later, Qt 4.7 and later, Meego
Platform Security
Capabilities: UserEnvironment
Article
Keywords: Microphone, lmmfdevsound,multimedia
Created: galazzo
(04 Apr 2012)
Last edited: hamishwillee
(11 Oct 2012)
Contents |
Introduction
This article explains how to use QMicrophone, a class to easily manage microphone on your device. It will also explain how to record a file and manage volume. The idea behind the volume management is the ability to trigger events with sounds. Take, for example, to change a page, snapping his fingers, or trigger an event when environment noise exceeds a threshold.
Before starting
- Include QMicrophone directory into your project
.pro
include(./QMicrophone/microphone.pri)
main.cpp
#include <QtGui/QApplication>
#include "qmlapplicationviewer.h"
#include <QtDeclarative>
#include "QMicrophone/qmicrophone.h"
Q_DECL_EXPORT int main(int argc, char *argv[])
{
QScopedPointer<QApplication> app(createApplication(argc, argv));
qmlRegisterType<QMicrophone>("Microphone", 1, 0, "Microphone");
QmlApplicationViewer viewer;
viewer.setOrientation(QmlApplicationViewer::ScreenOrientationLockPortrait);
viewer.setMainQmlFile(QLatin1String("qml/QMicrophoneSample/main.qml"));
viewer.showExpanded();
return app->exec();
}
QML
How to Record Audio Files
import QtQuick 1.1
import Microphone 1.0
Rectangle {
Column {
height: parent.height
width: parent.width
anchors.horizontalCenter: parent.horizontalCenter
Rectangle {
width: parent.width
height: 100
radius: 1
Text {
text: qsTr("Start recording for 5 sec")
horizontalAlignment: Text.AlignLeft
anchors.centerIn: parent
}
MouseArea {
anchors.fill: parent
onClicked: {
microphone.startRecording("test.wav", 5000);
}
}
}
Rectangle {
width: parent.width
height: 100
radius: 1
Text {
text: qsTr("Start recording")
anchors.centerIn: parent
}
MouseArea {
anchors.fill: parent
onClicked: {
microphone.startRecording("test.wav");
}
}
}
Rectangle {
width: parent.width
height: 100
radius: 1
Text {
text: qsTr("Stop recording")
anchors.centerIn: parent
}
MouseArea {
anchors.fill: parent
onClicked: {
microphone.stopRecording();
}
}
}
}
Microphone {
id:microphone
onRecordingStarted: console.log("Start recording")
onRecordingStopped: console.log("Stop recording")
}
}
startRecording has two parameters:
- filename where audio will be saved
- recording time in msec. If not set recording will continue until stopRecording will be called
How to manage Volume
import QtQuick 1.1
import Microphone 1.0
Rectangle {
Microphone {
id:microphone
threshold: 150
onThresholdExceeded: {
console.log(volume)
}
}
Component.onCompleted: {
microphone.startVolumeAnalysis();
}
}
This functionality is very useful if you wish to trigger an event when Volume exceed the threshold.
Restrictions
At moment, if you are already using Microphone to record an audio file, you cannot use in the same time volume management, due the fact the resource it's already busy.
Work in progress
- recording and volume management in the same time
- clap or fingers snapping detection
- simple command voice detection, like "up", "down", "left", "right", "stop"...
Source Code
You may download the source code from here

