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

HTML에서 비디오의 오디오 출력을 음소거로 설정하는 방법은 무엇입니까?


음소거 속성을 사용하여 비디오의 오디오 출력을 음소거로 설정합니다. 다음 코드를 실행하여 음소거 를 구현할 수 있습니다. 속성 -

예시

<!DOCTYPE HTML>
<html>
   <body>
      <video width = "300" height = "200" controls muted>
         <source src = "/html5/foo.ogg" type = "video/ogg" />
         <source src = "/html5/foo.mp4" type = "video/mp4" />
         Your browser does not support the video element.
      </video>
   </body>
</html>