Add files via upload

This commit is contained in:
wenead99
2019-05-26 20:21:31 +08:00
committed by GitHub
parent 09457b1684
commit cd5d6d571b
2 changed files with 199 additions and 0 deletions

13
AV_Data_Capture.py Normal file
View File

@@ -0,0 +1,13 @@
import glob
import os
import time
#a=glob.glob(os.getcwd()+r"\*.py")
a=glob.glob(os.getcwd()+r"\*\**\*.mp4")
b=glob.glob(os.getcwd()+r"\*.mp4")
for i in b:
a.append(i)
os.chdir(os.getcwd())
for i in a:
os.system('python core.py'+' "'+i+'"')