ftp_origen = "/home/usuario/Videos/xxx.mpg"
ftp_destino = "video.mpg"
f_origen = open(ftp_origen, 'rb')
ftp.cwd("/public_html")
print "Transfiriendo video: " + ftp_origen + " como " + ftp_destino
p = subprocess.Popen(ftp.storbinary('STOR ' + ftp_destino, f_origen), stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdid=subprocess.PIPE)
tiempo_inicio = time.time()
seg_pasados = 0
while True:
print "ciclo while"
if p.poll() is not None:
break
seg_pasados = time.time() - tiempo_inicio
if seg_pasados > 20:
p.kill()
time.sleep(0.5)
f_origen.close()
ftp.quit()