علامة HTML <video>


مثال

قم بتشغيل مقطع فيديو:

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

التعريف والاستخدام

تُستخدم <video>العلامة لتضمين محتوى الفيديو في مستند ، مثل مقطع فيلم أو تدفقات فيديو أخرى.

تحتوي <video>العلامة على علامة واحدة أو أكثر <source>بمصادر فيديو مختلفة. سيختار المتصفح المصدر الأول الذي يدعمه.

لن يتم عرض النص الموجود بين العلامتين <video>و </video> في المتصفحات التي لا تدعم عنصر <video>.

هناك ثلاثة تنسيقات فيديو مدعومة في HTML: MP4 و WebM و 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

نصائح وملاحظات

نصيحة: بالنسبة لملفات الصوت ، انظر إلى العلامة. <audio>



دعم المتصفح

تحدد الأرقام الواردة في الجدول إصدار المتصفح الأول الذي يدعم العنصر بشكل كامل.

Element
<video> 4.0 9.0 3.5 3.1 11.5

السمات الاختيارية

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

السمات العالمية

تدعم <video>العلامة أيضًا السمات العامة في HTML .


سمات الحدث

تدعم <video>العلامة أيضًا سمات الحدث في HTML .


الصفحات ذات الصلة

مرجع HTML DOM: مرجع DOM الصوتي / المرئي لـ HTML


إعدادات CSS الافتراضية

لا أحد.