Popen.communicate
sẽ đặt returncode
thuộc tính khi hoàn thành (*). Đây là phần tài liệu liên quan:
Popen.returncode
The child return code, set by poll() and wait() (and indirectly by communicate()).
A None value indicates that the process hasn’t terminated yet.
A negative value -N indicates that the child was terminated by signal N (Unix only).
Vì vậy, bạn chỉ có thể làm (Tôi đã không kiểm tra nhưng nó sẽ hoạt động):
import subprocess as sp
child = sp.Popen(openRTSP + opts.split(), stdout=sp.PIPE)
streamdata = child.communicate()[0]
rc = child.returncode
(*) Điều này xảy ra do cách thức triển khai: sau khi thiết lập các luồng để đọc các luồng của trẻ, nó chỉ gọi wait
.