mirror of
https://github.com/3b1b/manim.git
synced 2025-07-27 12:03:03 +08:00
12 lines
263 B
Python
12 lines
263 B
Python
#!/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:
|
|
stream_starter.start_livestream(args.to_twitch)
|