From e5962182a4e40f66f5c61f266f06c585e5dd1733 Mon Sep 17 00:00:00 2001 From: benoit74 Date: Thu, 16 Nov 2023 21:34:25 +0100 Subject: [PATCH] Add log indicating that reeconde will start --- src/youtube2zim/processing.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/youtube2zim/processing.py b/src/youtube2zim/processing.py index 7836c054..9dd7d368 100644 --- a/src/youtube2zim/processing.py +++ b/src/youtube2zim/processing.py @@ -57,6 +57,7 @@ def post_process_video(video_dir, video_id, preset, video_format, low_quality): return dst_path = src_path.with_name(f"video.{video_format}") + logger.info(f"Reencode video to {dst_path}") reencode( src_path, dst_path, preset.to_ffmpeg_args(), delete_src=True, failsafe=False )