File size: 340 Bytes
ced9582
 
 
 
fdb717e
ced9582
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import os
import time

#command = "python run.py -s D:/Esyle-Prod/fotos/irina.jpg  -t D:/Briefcase/wow.jpg -o D:/Esyle-Prod/resultados/irina-wow.jpg --frame-processor face_swapper"
command = "python hola.py -t D:/Esyle-Prod/fotos/irina.jpg"
print(command)
time.sleep(1)
proc = os.popen(command)
output = proc.read()

print(output)