kivy/examples/kv/app_video.kv

46 lines
692 B
Plaintext
Raw Normal View History

2010-11-08 02:36:17 +00:00
BoxLayout:
orientation: 'vertical'
2010-11-10 16:36:45 +00:00
spacing: 5
padding: 5
2010-11-08 02:36:17 +00:00
Video:
id: myvideo
source: '/home/tito/code/pymt/examples/apps/videoplayer/softboy.avi'
canvas:
Color:
rgb: (1, 1, 1)
Rectangle:
pos: self.pos
texture: self.texture
size: self.size
BoxLayout:
size_hint_y: None
2010-11-10 16:36:45 +00:00
height: 30
2010-11-08 02:36:17 +00:00
Label:
id: mylabel
text: str(myvideo.position)
2010-11-10 16:36:45 +00:00
Slider:
value: myvideo.position
max: myvideo.duration
on_value: print arg[0]
2010-11-08 02:36:17 +00:00
BoxLayout:
size_hint_y: None
height: 50
2010-11-10 16:36:45 +00:00
spacing: 5
2010-11-08 02:36:17 +00:00
ToggleButton:
group: 'video'
text: 'Play'
on_press: myvideo.play = True
ToggleButton:
group: 'video'
text: 'Stop'
on_press: myvideo.play = False