#概要
manimの作法、調べてみた。
add_sound使ってみた。
#サンプルコード
from manimlib.imports import *
class test(Scene):
def construct(self):
text = Text('お掃除します。', font = 'IPAGothic')
self.play(Write(text))
self.add_sound('20201228093158.wav')
self.wait(2)
#生成した動画
以上。