manim 生成视频命令比较长,可以写一个 .py 文件生成批处理文件,在文件内写入你的 manim 文件路径和 名称,运行这个文件来替代。
import os
f = open('run_manim.bat', 'w')
py_file_name = 'your_manim_dir/xxx.py'
classname = 'your_class_name'
# p:autoplay after creation l|m for the quality of the creation
pl = ' ' + '-pl'
pm = ' ' + '-pm'
run_script = 'python -m manim' + ' ' + py_file_name + ' ' + classname + pl
f.write(run_script)
f.close()
os.system('run_manim.bat')
网友评论