Computer >> 컴퓨터 >  >> 프로그램 작성 >> HTML

HTML에 오디오/비디오 컨트롤을 포함하는 방법은 무엇입니까?


컨트롤 사용 HTML에 오디오/비디오 컨트롤을 포함하려면 HTML의 속성

예시

다음 코드를 실행하여 컨트롤을 구현할 수 있습니다. 속성 -

<!DOCTYPE html>
<html>
   <head>
      <title>HTML video Tag</title>
   </head>
   <body>
      <p>Online Compiler</p>
      <br />
      <video width = "500" height = "300" controls>
         <source src = "/html/compileonline.mp4" type = "video/mp4">
         This browser doesn't support video tag.
      </video>
   </body>
</html>