- class QAudioSource¶
The
QAudioSource
class provides an interface for receiving audio data from an audio input device. More…Synopsis¶
Methods¶
def
__init__()
def
bufferSize()
def
bytesAvailable()
def
elapsedUSecs()
def
error()
def
format()
def
isNull()
def
processedUSecs()
def
reset()
def
resume()
def
setBufferSize()
def
setVolume()
def
start()
def
state()
def
stop()
def
suspend()
def
volume()
Signals¶
def
stateChanged()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description¶
Warning
This section contains snippets that were automatically translated from C++ to Python and may contain errors.
You can construct an audio input with the system’s default audio input device. It is also possible to create
QAudioSource
with a specificQAudioDevice
. When you create the audio input, you should also send in theQAudioFormat
to be used for the recording (see theQAudioFormat
class description for details).To record to a file:
QAudioSource
lets you record audio with an audio input device. The default constructor of this class will use the systems default audio device, but you can also specify aQAudioDevice
for a specific device. You also need to pass in theQAudioFormat
in which you wish to record.Starting up the
QAudioSource
is simply a matter of callingstart()
with a QIODevice opened for writing. For instance, to record to a file, you can:QFile destinationFile # Class member QAudioSource* audio # Class member destinationFile.setFileName("/tmp/test.raw") destinationFile.open( QIODevice.WriteOnly | QIODevice.Truncate ) format = QAudioFormat() # Set up the desired format, for example: format.setSampleRate(8000) format.setChannelCount(1) format.setSampleFormat(QAudioFormat.UInt8) info = QMediaDevices.defaultAudioInput() if not info.isFormatSupported(format): qWarning() << "Default format not supported, trying to use the nearest." audio = QAudioSource(format, self) audio.stateChanged.connect(self.handleStateChanged) QTimer::singleShot(3000, self.stopRecording) audio.start(destinationFile) # Records audio for 3000ms
This will start recording if the format specified is supported by the input device (you can check this with
isFormatSupported()
. In case there are any snags, use theerror()
function to check what went wrong. We stop recording in thestopRecording()
slot.def stopRecording(self): audio.stop() destinationFile.close() del audio
At any point in time,
QAudioSource
will be in one of four states: active, suspended, stopped, or idle. These states are specified by theState
enum. You can request a state change directly throughsuspend()
,resume()
,stop()
,reset()
, andstart()
. The current state is reported bystate()
.QAudioSink
will also signal you when the state changes (stateChanged()
).QAudioSource
provides several ways of measuring the time that has passed since thestart()
of the recording. TheprocessedUSecs()
function returns the length of the stream in microseconds written, i.e., it leaves out the times the audio input was suspended or idle. TheelapsedUSecs()
function returns the time elapsed sincestart()
was called regardless of which states theQAudioSource
has been in.If an error should occur, you can fetch its reason with
error()
. The possible error reasons are described by theError
enum. TheQAudioSource
will enter theStoppedState
when an error is encountered. Connect to thestateChanged()
signal to handle the error:def handleStateChanged(self, newState): if newState == QAudio.StoppedState: if audio.error() != QAudio.NoError: # Error handling else: # Finished recording break elif newState == QAudio.ActiveState: # Started recording - read from IO device break else: # ... other cases as appropriate break
See also
- __init__([format=QAudioFormat()[, parent=None]])¶
- Parameters:
format –
QAudioFormat
parent –
QObject
Construct a new audio input and attach it to
parent
. The default audio input device is used with the outputformat
parameters.- __init__(audioDeviceInfo[, format=QAudioFormat()[, parent=None]])
- Parameters:
audioDeviceInfo –
QAudioDevice
format –
QAudioFormat
parent –
QObject
Construct a new audio input and attach it to
parent
. The device referenced byaudioDevice
is used with the inputformat
parameters.- bufferSize()¶
- Return type:
int
Returns the audio buffer size in bytes.
If called before
start()
, returns platform default value. If called beforestart()
butsetBufferSize()
was called prior, returns value set bysetBufferSize()
. If called afterstart()
, returns the actual buffer size being used. This may not be what was set previously bysetBufferSize()
.See also
- bytesAvailable()¶
- Return type:
int
Returns the amount of audio data available to read in bytes.
Note: returned value is only valid while in
ActiveState
orIdleState
state, otherwise returns zero.- elapsedUSecs()¶
- Return type:
int
Returns the microseconds since
start()
was called, including time in Idle and Suspend states.Returns the error state.
- format()¶
- Return type:
Returns the
QAudioFormat
being used.- isNull()¶
- Return type:
bool
Returns
true
if the audio source isnull
, otherwise returnsfalse
.- processedUSecs()¶
- Return type:
int
Returns the amount of audio data processed since
start()
was called in microseconds.- reset()¶
Drops all audio data in the buffers, resets buffers to zero.
- resume()¶
Resumes processing audio data after a
suspend()
.Sets
error()
toNoError
. Setsstate()
toActiveState
if you previously called start(QIODevice*). Setsstate()
toIdleState
if you previously calledstart()
. emitsstateChanged()
signal.- setBufferSize(bytes)¶
- Parameters:
bytes – int
Sets the audio buffer size to
value
bytes.Note: This function can be called anytime before
start()
, calls to this are ignored afterstart()
. It should not be assumed that the buffer size set is the actual buffer size used, callingbufferSize()
anytime afterstart()
will return the actual buffer size being used.See also
- setVolume(volume)¶
- Parameters:
volume – float
Sets the input volume to
volume
.The volume is scaled linearly from
0.0
(silence) to1.0
(full volume). Values outside this range will be clamped.If the device does not support adjusting the input volume then
volume
will be ignored and the input volume will remain at 1.0.The default volume is
1.0
.Note: Adjustments to the volume will change the volume of this audio stream, not the global volume.
See also
Returns a pointer to the internal QIODevice being used to transfer data from the system’s audio input. The device will already be open and read() can read data directly from it.
Note
The pointer will become invalid after the stream is stopped or if you start another stream.
If the
QAudioSource
is able to access the system’s audio device,state()
returnsIdleState
,error()
returnsNoError
and thestateChanged()
signal is emitted.If a problem occurs during this process,
error()
returnsOpenError
,state()
returnsStoppedState
and thestateChanged()
signal is emitted.See also
- start(device)
- Parameters:
device –
QIODevice
Starts transferring audio data from the system’s audio input to the
device
. Thedevice
must have been opened in the WriteOnly, Append or ReadWrite modes.If the
QAudioSource
is able to successfully get audio data,state()
returns eitherActiveState
orIdleState
,error()
returnsNoError
and thestateChanged()
signal is emitted.If a problem occurs during this process,
error()
returnsOpenError
,state()
returnsStoppedState
and thestateChanged()
signal is emitted.See also
Returns the state of audio processing.
This signal is emitted when the device
state
has changed.Note
The QtAudio namespace was named QAudio up to and including Qt 6.6. String-based connections to this signal have to use
QAudio::State
as the parameter type:connect(source, SIGNAL(stateChanged(QAudio::State)), ...);
- stop()¶
Stops the audio input, detaching from the system resource.
Sets
error()
toNoError
,state()
toStoppedState
and emitstateChanged()
signal.- suspend()¶
Stops processing audio data, preserving buffered audio data.
Sets
error()
toNoError
,state()
toSuspendedState
and emitstateChanged()
signal.- volume()¶
- Return type:
float
Returns the input volume.
If the device does not support adjusting the input volume the returned value will be 1.0.
See also