8000 Add comment in test · dreamCodeMan/ffmpeg-python@f4025b4 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f4025b4

Browse files
committed
Add comment in test
1 parent 7824092 commit f4025b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ffmpeg/tests/test_ffmpeg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def test_pipe():
201201
p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
202202

203203
in_data = bytes(bytearray([random.randint(0,255) for _ in range(frame_size * frame_count)]))
204-
p.stdin.write(in_data)
204+
p.stdin 48FB .write(in_data) # note: this could block, in which case need to use threads
205205
p.stdin.close()
206206

207207
out_data = p.stdout.read()

0 commit comments

Comments
 (0)
0