Balise HTML <vidéo>


Exemple

Lire une vidéo :

<video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
  Your browser does not support the video tag.
</video>

Définition et utilisation

La <video>balise est utilisée pour intégrer du contenu vidéo dans un document, tel qu'un clip vidéo ou d'autres flux vidéo.

La <video>balise contient une ou plusieurs <source>balises avec différentes sources vidéo. Le navigateur choisira la première source qu'il prend en charge.

Le texte entre les balises <video>et </video> ne sera affiché que dans les navigateurs qui ne prennent pas en charge l'élément <video>.

Il existe trois formats vidéo pris en charge en HTML : MP4, WebM et OGG.

Browser MP4 WebM Ogg
Edge YES YES YES
Chrome YES YES YES
Firefox YES YES YES
Safari YES YES NO
Opera YES YES YES

Conseils et remarques

Conseil : pour les fichiers audio, regardez la balise. <audio>



Prise en charge du navigateur

Les nombres dans le tableau indiquent la première version du navigateur qui prend entièrement en charge l'élément.

Element
<video> 4.0 9.0 3.5 3.1 11.5

Attributs facultatifs

Attribute Value Description
autoplay autoplay Specifies that the video will start playing as soon as it is ready
controls controls Specifies that video controls should be displayed (such as a play/pause button etc).
height pixels Sets the height of the video player
loop loop Specifies that the video will start over again, every time it is finished
muted muted Specifies that the audio output of the video should be muted
poster URL Specifies an image to be shown while the video is downloading, or until the user hits the play button
preload auto
metadata
none
Specifies if and how the author thinks the video should be loaded when the page loads
src URL Specifies the URL of the video file
width pixels Sets the width of the video player

Attributs globaux

La <video>balise prend également en charge les attributs globaux en HTML .


Attributs d'événement

La <video>balise prend également en charge les attributs d'événement en HTML .


Pages connexes

Référence HTML DOM : Référence HTML Audio/Vidéo DOM


Paramètres CSS par défaut

Rien.