#概要
manimの作法、調べてみた。
BackgroundRectangle使ってみた。
#サンプルコード
from manimlib.imports import *
class test(Scene):
def construct(self):
src = r'''菅義偉首相は、自助を中心に据えた社会作りを
提唱するが、人々の生活は、自助では成り立たない程、
追い詰められている。
貧富の差が拡大する今は、公助の役割こそが
求められている時代である。
'''
text = Text(src, font = 'IPAGothic')
self.add_sound('20210106112815.wav')
bg = BackgroundRectangle(text, color = WHITE, fill_opacity = 0.85, buff = 0.25)
self.play(FadeInFromDown(bg), *[FadeInFromDown(each) for each in text], run_time = 3, lag_ratio = 0.5)
self.wait()
#生成した動画
以上。