From b5d6c7fe4f35b4b9dedb4dc6b9dfcfd97136bc8e Mon Sep 17 00:00:00 2001 From: lededev Date: Tue, 28 Sep 2021 18:30:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A5=E5=BF=97=E5=86=85=E5=89=8D=E5=90=8E?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=AE=8C=E6=95=B4=E6=97=A5=E6=9C=9F=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E6=88=B3=E4=BB=A5=E4=BE=BF=E6=97=A5=E5=BF=97=E5=90=88?= =?UTF-8?q?=E5=B9=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AV_Data_Capture.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/AV_Data_Capture.py b/AV_Data_Capture.py index b7ab406..8ac0d9c 100755 --- a/AV_Data_Capture.py +++ b/AV_Data_Capture.py @@ -317,7 +317,7 @@ if __name__ == '__main__': count = 0 count_all = str(len(movie_list)) - print('[+]Find', count_all, 'movies') + print('[+]Find', count_all, 'movies. Start at', time.strftime("%Y-%m-%d %H:%M:%S")) main_mode = conf.main_mode() stop_count = conf.stop_counter() if stop_count<1: @@ -344,7 +344,8 @@ f'[!]运行模式:**维护模式**,本程序将在处理{count_all}个视频 end_time = time.time() total_time = str(timedelta(seconds=end_time - start_time)) - print("[+]Running time", total_time[:len(total_time) if total_time.rfind('.') < 0 else -3]) + print("[+]Running time", total_time[:len(total_time) if total_time.rfind('.') < 0 else -3], + " End at", time.strftime("%Y-%m-%d %H:%M:%S")) print("[+]All finished!!!") if not (conf.auto_exit() or auto_exit):