MCPcopy Create free account
hub / github.com/Holasyb918/HeyGem-Linux-Python-Hack / get_args

Function get_args

run.py:28–46  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

26
27
28def get_args():
29 parser = argparse.ArgumentParser(
30 formatter_class=(argparse.ArgumentDefaultsHelpFormatter)
31 )
32
33 parser.add_argument(
34 "--audio_path",
35 type=str,
36 default="example/audio.wav",
37 help="path to local audio file",
38 )
39 parser.add_argument(
40 "--video_path",
41 type=str,
42 default="example/video.mp4",
43 help="path to local video file",
44 )
45 opt = parser.parse_args()
46 return opt
47
48
49def write_video(

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected