From 90ec90fe4444138cf80567e4bf1bb640cb4572d6 Mon Sep 17 00:00:00 2001 From: gabrielkheisa Date: Tue, 21 Mar 2023 00:13:19 +0700 Subject: [PATCH] fix font size --- renderDB.py | 2 +- ronaldo/renderDB.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/renderDB.py b/renderDB.py index 48af045..1e85c65 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 = 20, color='white', font="DejaVu-Serif-Bold", stroke_color="black") + txt_clip = TextClip(text, fontsize = 30, 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) diff --git a/ronaldo/renderDB.py b/ronaldo/renderDB.py index 9c18879..04e6fed 100644 --- a/ronaldo/renderDB.py +++ b/ronaldo/renderDB.py @@ -57,7 +57,7 @@ def checkindo(): durations = [8,0] for text,t,duration in zip(texts, starts, durations): - txt_clip = TextClip(text, fontsize = 20, color='white', font="DejaVu-Serif-Bold", stroke_color="black") + txt_clip = TextClip(text, fontsize = 15, 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)