Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/Assets/Lua/tasjudy.py
2 views
1
import os
2
import datetime
3
from multiprocessing import Pool
4
5
bizhawkPath = ""
6
romPath = ""
7
moviePath = ""
8
9
def emu(arg):
10
ret = os.system(bizhawkPath + " " + romPath + " --movie=" + moviePath)
11
print("Ending %d with %d at %s" % (arg,ret,datetime.datetime.now().time()))
12
13
if __name__ == '__main__':
14
print("Starting at %s" % datetime.datetime.now().time())
15
p = Pool(processes=4)
16
p.map(emu,range(1))
17
print("Ending parent at %s" % datetime.datetime.now().time())
18
19
20