Shoes.app width: 400, height: 300 do
background gold..cyan, angle: 90
space = ' ' * 3
v = video 'http://is.gd/xZ6Jih'
links = para space,
link('play'){v.play; links.move(0, 300)},
space, link('pause'){v.pause},
space, link('-1sec'){v.time -= 1000},
space, link('+1sec'){v.time += 1000},
top: 250
msg = para left: 250, top: 300
every do
msg.text = fg("#{(v.position*100).to_i}% " +
"(#{v.time/1000}/#{v.length.to_i/1000}sec)",
darkcyan)
end
end
In addition to video formats, some audio formats are also supported, such as MP3, WAV and Ogg Vorbis.
Hides the video. If already playing, the video will continue to play. This just turns off display of the video. One possible use of this method is to collapse the video area when it is playing an audio file, such as an MP3.
Note: Green Shoes doesn't support hide method so far.
The full length of the video in milliseconds. Returns nil if the video is not yet loaded.
Moves the video to specific coordinates, the (left, top) being the upper left hand corner of the video.
Note: Green Shoes doesn't support move method so far.
Pauses the video, if it is playing.
Returns true if the video is currently playing. Or, false if the video is paused or stopped.
Starts playing the video, if it isn't already playing. If already playing, the video is restarted from the beginning.
The position of the video as a decimanl number (a Float) between the beginning (0.0) and the end (1.0). For instance, a Float value of 0.5 indicates the halfway point of the video.
Sets the position of the video using a Float value. To move the video to its 25% position: @video.position = 0.25
.
Removes the video from its slot. This will stop the video as well.
Note: Green Shoes doesn't support remove method so far.
Reveals the video, if it has been hidden by the hide()
method.
Note: Green Shoes doesn't support show method so far.
Stops the video, if it is playing.
The time position of the video in milliseconds. So, if the video is 10 seconds into play, this method would return the number 10000.
Set the position of the video to a time in milliseconds.
Toggles the visibility of the video. If the video can be seen, then hide
is called. Otherwise, show
is called.
Note: Green Shoes doesn't support tobble method so far.
Next: AndSoForth