From 042a6c8d74e81ff7a3abbec7d78acb0e30db8770 Mon Sep 17 00:00:00 2001 From: CordlessCoder Date: Tue, 7 Jun 2022 12:23:55 +0300 Subject: [PATCH] merge conflicts --- video_creation/final_video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video_creation/final_video.py b/video_creation/final_video.py index 0831c44..c478958 100644 --- a/video_creation/final_video.py +++ b/video_creation/final_video.py @@ -37,7 +37,7 @@ def make_final_video(number_of_clips): # Gather all audio clips audio_clips = [] for i in range(0, number_of_clips): - audio_clips.append(AudioFileClip("assets/mp3/{i}.mp3")) + audio_clips.append(AudioFileClip(f"assets/mp3/{i}.mp3")) audio_clips.insert(0, AudioFileClip("assets/mp3/title.mp3")) try: audio_clips.insert(1, AudioFileClip("assets/mp3/posttext.mp3"))