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  ·  Tous les espaces de nom  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

VideoPlayer Class Reference
(Phonon::VideoPlayer)
[Phonon module]

The VideoPlayer widget is used to perform playback of video. More...

Inherits QWidget.

This class was introduced in Qt 4.4.

Public Functions

  • 206 public functions inherited from QWidget
  • 29 public functions inherited from QObject
  • 12 public functions inherited from QPaintDevice

Public Slots

  • void load ( const Phonon::MediaSource & source )
  • void pause ()
  • void play ( const Phonon::MediaSource & source )
  • void play ()
  • void seek ( qint64 ms )
  • void setVolume ( float volume )
  • void stop ()
  • 19 public slots inherited from QWidget
  • 1 public slot inherited from QObject

Signals

Additional Inherited Members

  • 57 properties inherited from QWidget
  • 1 property inherited from QObject
  • 4 static public members inherited from QWidget
  • 5 static public members inherited from QObject
  • 38 protected functions inherited from QWidget
  • 7 protected functions inherited from QObject
  • 1 protected function inherited from QPaintDevice
  • 1 protected slot inherited from QWidget

Detailed Description

The VideoPlayer widget is used to perform playback of video.

With VideoPlayer you can get results quickly and easily. You can do the standard playback tasks like play(), pause(), and stop(), but also set a playback volume and seek - if the media and backend supports seeking.

VideoPlayer is provided for convenience and removes the need to create a media graph with a MediaObject, AudioOutput, and VideoWidget. If you need functionality not supported by the player, you can build this graph yourself.

Keep in mind that when the VideoPlayer instance is deleted the playback will stop.

A play and forget code example:

 VideoPlayer *player = new VideoPlayer(Phonon::VideoCategory, parentWidget);
 connect(player, SIGNAL(finished()), player, SLOT(deleteLater()));
 player->play(url);

See also Phonon Module.


Member Function Documentation

VideoPlayer::VideoPlayer ( Phonon::Category category, QWidget * parent = 0 )

Constructs a new VideoPlayer instance with the specified parent.

category is the category used for the audio output device.

VideoPlayer::~VideoPlayer ()

On destruction the playback is stopped, also the audio output is removed so that the desktop mixer will not show the application anymore. If you need a persistent audio output don't use VideoPlayer but MediaObject, VideoPath and VideoOutput.

AudioOutput * VideoPlayer::audioOutput () const

Returns the audio output object being used by the player.

qint64 VideoPlayer::currentTime () const

Get the current time (in milliseconds) of the file currently being played.

void VideoPlayer::finished ()   [signal]

This signal is emitted when the playback finished.

bool VideoPlayer::isPaused () const

Returns true if it is currently paused; otherwise returns false if it is currently playing or stopped

bool VideoPlayer::isPlaying () const

Returns true if it is currently playing; otherwise returns false if it is currently stopped or paused

void VideoPlayer::load ( const Phonon::MediaSource & source )   [slot]

Starts pre-loading the media data from the specified source and filling audio buffers in the backend.

When there's already a media playing (or paused) it will be stopped (the finished signal will not be emitted).

MediaObject * VideoPlayer::mediaObject () const

Returns the media object being used by the player.

You can manipulate the object, for instance, use it for a SeekSlider.

See also Phonon::SeekSlider and Phonon::MediaObject.

void VideoPlayer::pause ()   [slot]

Pauses the playback.

void VideoPlayer::play ( const Phonon::MediaSource & source )   [slot]

Plays the media from the given source. Starts playback as fast as possible. This can take a considerable time depending on the URL and the backend.

If you need low latency between calling play() and the sound actually starting to play on your output device you need to use MediaObject and be able to set the URL before calling play(). Note that

 audioPlayer->load(url);
 audioPlayer->play();

doesn't make a difference: the application should be idle between the load and play calls so that the backend can start preloading the media and fill audio buffers.

void VideoPlayer::play ()   [slot]

This is an overloaded member function, provided for convenience.

Continues playback of paused media. Restarts playback of a stopped media.

void VideoPlayer::seek ( qint64 ms )   [slot]

Seeks to the requested time. Note that the backend is free to ignore the seek request if the media source isn't seekable.

The ms parameter is the time in milliseconds from the start of the media.

void VideoPlayer::setVolume ( float volume )   [slot]

Sets the volume of the output as voltage factor.

1.0 means 100%, 0.5 means 50% voltage/25% power, 0.0 means 0%

See also volume().

void VideoPlayer::stop ()   [slot]

Stops the playback.

qint64 VideoPlayer::totalTime () const

Get the total time (in milliseconds) of the file currently being played.

VideoWidget * VideoPlayer::videoWidget () const

Returns the video widget being used by the player.

float VideoPlayer::volume () const

This is the current volume of the output as voltage factor.

1.0 means 100%, 0.5 means 50% voltage/25% power, 0.0 means 0%

See also setVolume().

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 53
  2. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  3. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  4. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
  7. La rubrique Qt a besoin de vous ! 1
Page suivante

Le blog Digia au hasard

Logo

Déploiement d'applications Qt Commercial sur les tablettes Windows 8

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

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 4.4
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