비디오 삽입을 위한 이상적인 솔루션:
HTML5 + <object> + <embed>
(추천 비디오 튜토리얼: html 비디오 튜토리얼)
코드는 다음과 같습니다:
<!DOCTYPE html> <html> <body> <video width="320" height="240" controls="controls" autoplay="autoplay"> <source src="/i/movie.ogg" type="video/ogg" /> <source src="/i/movie.mp4" type="video/mp4" /> <source src="/i/movie.webm" type="video/webm" /> <object data="/i/movie.mp4" width="320" height="240"> <embed width="320" height="240" src="/i/movie.swf" /> </object> </video> </body> </html>
오디오 삽입을 위한 이상적인 솔루션:
<embed>
예제 아래에서는 두 가지 다른 오디오 형식을 사용합니다. Html5 b97864c2e0ef2353a16c4d64c7734e92 요소는 mp3 또는 ogg에서 오디오 재생을 시도합니다. 실패하면 코드는 d8e2720730be5ddc9c2a3782839e8eb6 요소를 시도하게 됩니다.
<!DOCTYPE HTML> <html> <body> <audio controls="controls"> <source src="/i/song.ogg" type="audio/ogg"> <source src="/i/song.mp3" type="audio/mpeg"> <embed height="100" width="100" src="/i/song.mp3" /> </audio> </body> </html>
관련 권장 사항: html 튜토리얼
위 내용은 HTML에 비디오와 오디오를 삽입하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!