tarina

git clone https://git.tarina.org/tarina
Log | Files | Refs | README | LICENSE

commit 047626796246010a4401aa5f6d3502558624008d
parent d44ae8aca16e415438f1bb13267a9101a1febe9d
Author: rob <rob@tarina.org>
Date:   Sat, 29 Feb 2020 07:49:46 +0200

added loading msg when initializing omxplayer

Diffstat:
Mtarina.py | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/tarina.py b/tarina.py @@ -195,6 +195,7 @@ def main(): #VIEW SCENE elif pressed == 'view' and menu[selected] == 'SCENE:': filmfiles = shotfiles(filmfolder, filmname, scene) + writemessage('Loading scene...') if len(filmfiles) > 0: #Check if rendered video exist camera.stop_preview() @@ -205,6 +206,7 @@ def main(): #VIEW FILM elif pressed == 'view' and menu[selected] == 'FILM:': filmfiles = viewfilm(filmfolder, filmname) + writemessage('Loading film...') if len(filmfiles) > 0: camera.stop_preview() renderfilename = renderfilm(filmfolder, filmname, comp) @@ -214,6 +216,7 @@ def main(): #VIEW SHOT OR TAKE elif pressed == 'view': takes = counttakes(filmname, filmfolder, scene, shot) + writemessage('Loading clip...') if takes > 0: removeimage(camera, overlay) camera.stop_preview()