from multiprocessing import Process
import threading
import time
threading.Thread(target=, args=()).start()
while threading.active_count()>80:
time.sleep(1)
#p = Process(target=get_frame_from_video, args=(video_name, id))
#p.start()
target是运行函数,args是参数
threading.Thread 和 Process是两种多线程方式