Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

Media Player Example

This example creates a simple multimedia player. We can play audio and or video files using various codecs.

The example uses a QMediaPlayer object passed into a QVideoWidget to control the video output. To give the application playlist capability we also use a QPlayList object.

To activate the various functions such as play and stop on the dialog we connect clicked() signals to slots that emit the play() and stop() signals and in turn which we connect to the play() and stop() slots in QMediaPlayer.

 connect(controls, SIGNAL(play()), player, SLOT(play()));
 connect(controls, SIGNAL(pause()), player, SLOT(pause()));
 connect(controls, SIGNAL(stop()), player, SLOT(stop()));

We can get the volume (and set our user interface representation)

 controls->setVolume(player->volume());

and we can make widget 'volume' changes change the volume

 connect(controls, SIGNAL(changeVolume(int)), player, SLOT(setVolume(int)));

The example also allows us to change various video properties by means of the QVideoWidget object. We can go to Full Screen mode with a single button click, and back again. Or if we press the "Color Options" dialog button we can have access to more subtle influences. The dialog has a set of sliders so that we can change the brightness, contrast, hue and saturation of the video being watched. The connect() statements are in pairs so that changes to either the user interface widget (the relevant slider) or the QVideoWidget object will update the other object.

     connect(brightnessSlider, SIGNAL(sliderMoved(int)), videoWidget,
         SLOT(setBrightness(int)));
     connect(videoWidget, SIGNAL(brightnessChanged(int)),
         brightnessSlider, SLOT(setValue(int)));

     connect(contrastSlider, SIGNAL(sliderMoved(int)), videoWidget,
         SLOT(setContrast(int)));
     connect(videoWidget, SIGNAL(contrastChanged(int)), contrastSlider,
         SLOT(setValue(int)));

     connect(hueSlider, SIGNAL(sliderMoved(int)), videoWidget,
         SLOT(setHue(int)));
     connect(videoWidget, SIGNAL(hueChanged(int)), hueSlider,
         SLOT(setValue(int)));

     connect(saturationSlider, SIGNAL(sliderMoved(int)), videoWidget,
         SLOT(setSaturation(int)));
     connect(videoWidget, SIGNAL(saturationChanged(int)),
         saturationSlider, SLOT(setValue(int)));

Files:

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 5.0-snapshot
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web