HTML <video> Etiketi


Örnek

Bir video oynatın:

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

Tanım ve Kullanım

<video>etiketi, film klibi veya diğer video akışları gibi bir belgeye video içeriği gömmek için kullanılır .

Etiket , farklı video kaynaklarına sahip <video>bir veya daha fazla etiket içeriyor . <source>Tarayıcı, desteklediği ilk kaynağı seçecektir.

<video>ve etiketleri arasındaki metin </video> yalnızca <video> öğesini desteklemeyen tarayıcılarda görüntülenecektir.

HTML'de desteklenen üç video formatı vardır: MP4, WebM ve 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

İpuçları ve Notlar

İpucu: Ses dosyaları için etikete bakın. <audio>



Tarayıcı Desteği

Tablodaki sayılar, öğeyi tam olarak destekleyen ilk tarayıcı sürümünü belirtir.

Element
<video> 4.0 9.0 3.5 3.1 11.5

İsteğe Bağlı Özellikler

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

Genel Özellikler

Etiket ayrıca HTML'deki Global Nitelikleri<video> de destekler .


Etkinlik Özellikleri

Etiket ayrıca HTML'deki Etkinlik Niteliklerini<video> de destekler .


İlgili Sayfalar

HTML DOM referansı: HTML Ses/Video DOM Referansı


Varsayılan CSS Ayarları

Hiçbiri.