Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- C++
- pandas
- 기타 연주
- Python
- pytorch
- paramiko
- JSON
- windows forms
- Numpy
- error
- 핑거스타일
- OpenCV
- 오류
- pip
- 채보
- 컨테이너
- ubuntu
- label
- C
- LIST
- C#
- Selenium
- SSH
- Docker
- YOLO
- 프로그래머스
- Visual Studio
- mysql
- Linux
- VS Code
Archives
- Today
- Total
목록stdin (1)
기계는 거짓말하지 않는다
Python subprocess pipe stdin write 중단 문제
아래와 같은 예시 코드에서 import subprocess as sp # 실행 시킬 명령어 command = ["any command..."] proc = sp.Popen(command, stdin=sp.PIPE, stderr=sp.PIPE) while 반복 조건: # 큰 데이터 받음 data = 데이터 IN # write proc.stdin.write(data.tostring()) 반복문을 실행하다가 프로세스가 종료되는 경우가 있다. 한 가지 상황은 이미지를 데이터로 받아 FFMPEG에 raw data로 넘겨줄 때였다. FFMPEG는 stderr에 지속해서 기록하므로 버퍼가 계속 차게 된다. stderr을 사용하지 않거나, 비워주어야 한다. 비우는 방법은 write 후 stderr을 close 하거나 ..
Python
2023. 8. 19. 17:03