Ajout du GUI
This commit is contained in:
38
kivy/tests/pyinstaller/video_widget/project/__init__.py
Normal file
38
kivy/tests/pyinstaller/video_widget/project/__init__.py
Normal file
@@ -0,0 +1,38 @@
|
||||
from kivy.app import App
|
||||
from kivy.uix.videoplayer import VideoPlayer
|
||||
from kivy.clock import Clock
|
||||
import os
|
||||
import time
|
||||
|
||||
|
||||
class VideoApp(App):
|
||||
|
||||
player = None
|
||||
|
||||
start_t = None
|
||||
|
||||
def build(self):
|
||||
self.player = player = VideoPlayer(
|
||||
source=os.environ['__KIVY_VIDEO_TEST_FNAME'], volume=0)
|
||||
|
||||
self.player.fbind('position', self.check_position)
|
||||
Clock.schedule_once(self.start_player, 0)
|
||||
Clock.schedule_interval(self.stop_player, 1)
|
||||
return player
|
||||
|
||||
def start_player(self, *args):
|
||||
self.player.state = 'play'
|
||||
self.start_t = time.perf_counter()
|
||||
|
||||
def check_position(self, *args):
|
||||
if self.player.position > 0.1:
|
||||
self.stop_player()
|
||||
|
||||
def stop_player(self, *args):
|
||||
if time.perf_counter() - self.start_t > 10:
|
||||
assert self.player.duration > 0
|
||||
assert self.player.position > 0
|
||||
self.stop()
|
||||
else:
|
||||
if self.player.position > 0 and self.player.duration > 0:
|
||||
self.stop()
|
||||
Binary file not shown.
Reference in New Issue
Block a user