This commit is contained in:
yumoqing 2020-08-08 19:54:32 +08:00
parent e1d8053389
commit 5e5bf1e4e1

View File

@ -34,6 +34,7 @@ class NewVideo(Video):
Window.bind(on_rotate=self.ctrl_fullscreen) Window.bind(on_rotate=self.ctrl_fullscreen)
def ctrl_fullscreen(self,*args): def ctrl_fullscreen(self,*args):
print('newvideo(),crtl_fullscreen',args)
if Window.width > Window.height: if Window.width > Window.height:
self.fullscreen = True self.fullscreen = True
else: else:
@ -48,6 +49,7 @@ class NewVideo(Video):
x = self._video._ffplayer.request_channel('audio') x = self._video._ffplayer.request_channel('audio')
def on_fullscreen(self, instance, value): def on_fullscreen(self, instance, value):
print('NewVideo::on_fullscreen(),value=', value)
window = self.get_parent_window() window = self.get_parent_window()
if not window: if not window:
Logger.warning('VideoPlayer: Cannot switch to fullscreen, ' Logger.warning('VideoPlayer: Cannot switch to fullscreen, '