gonzopi

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

commit f9335704eb27e4745af2ce6a4e3be8a5d26f68cf
parent c139845d317810cbbb69fd62e9a06a4da81244d9
Author: rbckman <rob@tarina.org>
Date:   Wed, 15 May 2024 16:33:01 +0100

randomhex to video in case of multishooting

Diffstat:
MVERSION | 2+-
Mgonzopi.py | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/VERSION b/VERSION @@ -1,2 +1,2 @@ -1.57 +1.58 Jackson diff --git a/gonzopi.py b/gonzopi.py @@ -1263,7 +1263,7 @@ def main(): if cammode == 'film': videos_totalt = db.query("SELECT COUNT(*) AS videos FROM videos")[0] tot = int(videos_totalt.videos) - video_origins=datetime.datetime.now().strftime('%Y%d%m')+str(tot).zfill(5) + video_origins=datetime.datetime.now().strftime('%Y%d%m')+str(tot).zfill(5)+'_'+os.urandom(8).hex() db.insert('videos', tid=datetime.datetime.now(), filename=filmfolder+'.videos/'+video_origins+'.mp4', foldername=foldername, filmname=filmname, scene=scene, shot=shot, take=take, audiolenght=0, videolenght=0) os.system(gonzopifolder + '/alsa-utils-1.1.3/aplay/arecord -D plughw:' + str(plughw) + ' -f '+soundformat+' -c ' + str(channels) + ' -r '+soundrate+' -vv '+ foldername + filename + '.wav &') sound_start = time.time()