HTML5 VIDEO태그 속성
페이지 정보

본문
http://www.w3schools.com/html/html5_video.asp
HTML5 Video by By Pete LePage
비디오 관련 캡션자막처리 등 모든기술 망라해서 정리 됨.Introduction, The Markup, JavaScript, Interacting with other elements, Formats & codecs, Mobile, Further Reading, Summary
http://www.html5rocks.com/en/tutorials/video/basics/
//w3c HTML 이벤트 및 속성 목록
http://www.w3schools.com/tags/ref_eventattributes.asp
Video DOM
http://www.w3schools.com/tags/ref_av_dom.asp
박종명의 아름다운 개발
Taggon in Happy Life의 비디오 속성과 메소드
http://mygony.com/archives/3058
[HTML5 튜토리얼] Video와 Audio 태그 기본
http://www.w3schools.com/html/html5_video.asp
http://www.w3schools.com/jsref/dom_obj_video.asp
FullScreen 모드일 때 HTML5 Video 네이티브 컨트롤 감추기
비디오속성 정리. 자막 등.
WebVTT (CSS적용법)
http://dev.w3.org/html5/webvtt/
//비디오 타입 설정
VideoObj.canPlayType('video/webm; codecs="vp8.0, vorbis"');video/ogg; codecs="theora, vorbis"
video/mp4; codecs="avc1.4D401E, mp4a.40.2"
video/webm; codecs="vp8.0, vorbis"
audio/ogg; codecs="vorbis"
audio/mp4; codecs="mp4a.40.5"
.addTextTrack()
var text1 = VideoObj.addTextTrack("caption");text1.addCue(new TextTrackCue("Test text", 01.000, 04.000, "", "", "", true));
buffered - get the buffered ranges of the audio/video
seekable - get the seekable ranges of the audio/videoduration - get the duration of the audio/video
currentTime - get or set the current playback position of the audio/video
paused - check if the audio/video is paused
play() - play the audio/video
controller
pause() - pause the audio/video
played - check if the audio/video has been played
defaultPlaybackRate - get or set the default playback rate of the audio/video
playbackRate - get or set the current playback rate of the audio/video
volume - get or set the volume of the audio/video
muted - get or set if the audio/video is muted
- 이전글html5에서 녹음기능 - navigator.getUserMedia 16.04.18
댓글목록


