printing bug

This commit is contained in:
Johannes Stelzer 2022-11-23 14:59:21 +01:00
parent 2abf976eb2
commit 3e653e3841
1 changed files with 2 additions and 2 deletions

View File

@ -138,7 +138,7 @@ class MovieSaver():
self.ffmpg_process.stdin.close() self.ffmpg_process.stdin.close()
self.ffmpg_process.wait() self.ffmpg_process.wait()
duration = int(self.nmb_frames / self.fps) 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}' cmd = f'ffmpeg -f concat -safe 0 -i {fp_list} -c copy {fp_final}'
subprocess.call(cmd, shell=True, cwd=dp_movie) subprocess.call(cmd, shell=True, cwd=dp_movie)
os.remove(fp_list) 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(): class MovieReader():