Skip to content

Commit fb43d0a

Browse files
authored
Merge pull request #131 from mightbecharles/main
Fix deadlock in ffdec.available()
2 parents b694c4f + 79e608b commit fb43d0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

audioread/ffdec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def available():
110110
except OSError:
111111
return False
112112
else:
113-
proc.wait()
113+
proc.communicate()
114114
return proc.returncode == 0
115115

116116

0 commit comments

Comments
 (0)