diff --git a/handle_imported_video.py b/handle_imported_video.py index f4e17c0..57fd2c8 100644 --- a/handle_imported_video.py +++ b/handle_imported_video.py @@ -213,7 +213,8 @@ if _ACTION == "join": pbar.update(1) pbar.close() - print(f"Exported size: {str(cur_stat)}") + file_stats = os.stat(export_name) + print(f"Exported size: {str(file_stats.st_size )}") print(f"Expected size: {final_size}") print("\r\n",end='',flush=True) print(f"\rProcess finished with rc: {proc.returncode}",end='',flush=True)