From 2078bc74b6ad06036f334dc45294689c45c68a65 Mon Sep 17 00:00:00 2001 From: gabrielkheisa Date: Tue, 25 Oct 2022 18:46:54 +0700 Subject: [PATCH] try adding built in Alpine fonts --- renderDB.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renderDB.py b/renderDB.py index fc0887f..5796e2a 100644 --- a/renderDB.py +++ b/renderDB.py @@ -64,7 +64,7 @@ def checkindo(): durations = [3,3,3,3,3,5,3,3,3] for text,t,duration in zip(texts, starts, durations): - txt_clip = TextClip(text, fontsize = 40, color='white', stroke_color="black") + txt_clip = TextClip(text, fontsize = 40, color='white', font="DejaVu-Serif-Bold", stroke_color="black") txt_clip = txt_clip.set_start(t) txt_clip = txt_clip.set_pos('bottom').set_duration(duration) txt_clips.append(txt_clip)