class VideoApp
Attributes
control[RW]
control_bg[RW]
control_label[RW]
control_pause[RW]
control_play[RW]
control_seek1[RW]
control_seek2[RW]
control_seekbar[RW]
controls_showing[RW]
controls_timeout[RW]
mouse_in_window[RW]
paused[RW]
stage[RW]
vtexture[RW]
Public Class Methods
new()
click to toggle source
# File clutter-gstreamer/sample/2.0/video-player.rb, line 49 def initialize @controls_showing = false @paused = false @mouse_in_window = false @controls_timeout = 0 end
Public Instance Methods
run()
click to toggle source
# File clutter-gstreamer/sample/3.0/video-player.rb, line 70 def run @player.playing = true @stage.show Clutter.main end