3b1b-manim/manim.py

15 lines
324 B
Python
Raw Normal View History

#!/usr/bin/env python
import config
import extract_scene
import stream_starter
args = config.parse_cli()
if not args.livestream:
config = config.get_configuration(args)
extract_scene.main(config)
else:
2018-12-22 18:25:35 -08:00
stream_starter.start_livestream(
to_twitch=args.to_twitch,
twitch_key=args.twitch_key,
)