From 3e653e3841c28ab5b672ad3f3715c4a3600a0e7a Mon Sep 17 00:00:00 2001 From: Johannes Stelzer Date: Wed, 23 Nov 2022 14:59:21 +0100 Subject: [PATCH] printing bug --- movie_util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/movie_util.py b/movie_util.py index 88f10f4..590a027 100644 --- a/movie_util.py +++ b/movie_util.py @@ -138,7 +138,7 @@ class MovieSaver(): self.ffmpg_process.stdin.close() self.ffmpg_process.wait() duration = int(self.nmb_frames / self.fps) - print(f"Movie saved, {duration}s playtime, watch her: {self.fp_out}") + print(f"Movie saved, {duration}s playtime, watch here: \n{self.fp_out}") @@ -176,7 +176,7 @@ def concatenate_movies(fp_final: str, list_fp_movies: List[str]): cmd = f'ffmpeg -f concat -safe 0 -i {fp_list} -c copy {fp_final}' subprocess.call(cmd, shell=True, cwd=dp_movie) os.remove(fp_list) - print(f"concatenate_movies: success! Watch here: {fp_final}") + print(f"concatenate_movies: success! Watch here: \n{fp_final}") class MovieReader():