Doc: Added missing images and made some language edits

Change-Id: I9544121601c2c4099927e0e23550c3ab32bbfda9
Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
This commit is contained in:
Venugopal Shivashankar
2012-11-30 15:32:55 +01:00
committed by The Qt Project
parent cf8824c5d4
commit 1315dcf09c
11 changed files with 54 additions and 9 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -30,7 +30,14 @@
\title Audio Input Example \title Audio Input Example
\ingroup audio_examples \ingroup audio_examples
\brief The Audio Input Example shows the use of the QAudioInput class. \brief The Audio Input Example shows the use of the QAudioInput class.
The example demonstrates the basic use cases of the QAudioInput class.
\image audioinput-example.png
Qt provides the QAudioInput class to enable audio functionality within
a standard application user interface.
This example calculates the maximum linear value of the input audio from the microphone and displays the output.
*/ */

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -31,8 +31,13 @@
\ingroup audio_examples \ingroup audio_examples
\brief The Audio Output Example show the use of the QAudioOutput API. \brief The Audio Output Example show the use of the QAudioOutput API.
The example demonstrates the basic use cases of the QAudioOutput class.
\image audiooutput-example.png
This example provides a tone generator to supply continuous audio playback.
The first button allows pause and resume of the playback, and the second
button allows toggling between push and pull modes of operation.
*/ */

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -31,6 +31,34 @@
\ingroup audio_examples \ingroup audio_examples
\brief The Spectrum Example uses a combination multimedia APIs to process microphone input. \brief The Spectrum Example uses a combination multimedia APIs to process microphone input.
The Spectrum Analyzer example shows how the \l{QtMultimedia Module} can be
used to record and then play back an audio stream.
\image spectrum-demo.png
Because QtMultimedia allows the application to access the raw audio
stream, the data can either be inspected or modified by the application.
The Spectrum Analyzer example displays three pieces of information while
audio is being either captured or played back:
\list
\li Information about the raw audio stream, shown in the uppermost widget:
\list
\li The amount of data currently in the buffer, shown in blue
\li The segment of data which was most recently analysed to compute
the frequency spectrum, shown in green
\li The raw audio waveform, shown in white and scrolling from right to
left
\endlist
\li A representation of the frequency spectrum, shown at the lower left
\li The current RMS level of the audio stream, and the recent 'high
watermark' level, shown at the lower right
\endlist
Spectrum analysis is performed by calculating the Fast Fourier Transform
(FFT) of a segment of audio data. An open-source library,
\l{http://ldesoras.free.fr/prod.html}{FFTReal}, against which the
application is dynamically linked, is used to compute the transform.
*/ */

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

View File

@@ -29,8 +29,12 @@
\example videographicsitem \example videographicsitem
\title Video Graphics Item Example \title Video Graphics Item Example
\ingroup video_examples \ingroup video_examples
\brief This example demonstrates how to stream video on a graphics scene.
\brief This example demonstrates how to make a simple video player using the QMediaPlayer The Video Graphics Item example shows how to implement a QGraphicsItem that displays video on a
and QVideoGraphicsItem classes in the Graphics View framework. graphics scene using QtMultimedia's QAbstractVideoSurface.
\image video-videographicsitem.png
\sa {Video Widget Example}
*/ */

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

View File

@@ -26,11 +26,13 @@
****************************************************************************/ ****************************************************************************/
/*! /*!
\example videowidget \example videowidget
\title Video Widget Example \title Video Widget Example
\ingroup video_examples \ingroup video_examples
\brief This example is a simple video player
\brief This example demonstrates how to make a simple video player using the QMediaPlayer The Video Widget example denonstrates how to implement a video widget using
and QVideoWidget classes QtMultimedia's QAbstractVideoSurface.
\image video-videowidget.png
*/ */

View File

@@ -29,8 +29,7 @@ qhp.qtmultimedia.subprojects.qmltypes.indexTitle = Qt Multimedia QML Types
qhp.qtmultimedia.subprojects.qmltypes.selectors = class fake:headerfile qhp.qtmultimedia.subprojects.qmltypes.selectors = class fake:headerfile
qhp.qtmultimedia.subprojects.qmltypes.sortPages = true qhp.qtmultimedia.subprojects.qmltypes.sortPages = true
exampledirs += .. \ exampledirs += ../../../examples \
../../../examples
headerdirs += ../.. headerdirs += ../..