VideoLayer

video layer는 비디오를 로딩하며 layer.player 객체를 가지고 비디오를 제어한다.

브라우저는 다양한 타입의 비디오를 지원한다. 여기에는 alpha channel을 지원하는 Animation codec도 포한된다. 비디오 동작에 관련된 보다 자세한 내용은 여기를 참조한다.

videolayer.video <string>

video layer에 video url을 설정한다.

# Set on creation
layerA = new VideoLayer
    video: "hello.mp4" 

# Change afterwards
layerA.video = "bye.mp4"

videolayer.player <string>

Player 객체는 여러분이 비디오를 제어하고 다시재생 이벤트를 감지하는데 사용한다.

관련된 내용은 여기를 참조한다. 이벤트에 대해서는 여기를 참조하자.

# Set on creation
layerA = new VideoLayer
    video: "hello.mp4"

# Enable auto play
layerA.player.autoplay = true

# Play the video
layerA.player.play()

# Jump to 5 seconds
layerA.player.fastSeek(5)

# Listen to paused playback
Events.wrap(layerA.player).on "pause", ->
    print "Video paused"