Ignore BrokenPipeError

old-commit-hash: 5c8c6faa9a6a3041bf2d85b8397656d61b1603ce
This commit is contained in:
mitchellgoffpc
2022-03-22 12:52:25 -07:00
parent b20ee9c4aa
commit b7e99b3f45
+2
View File
@@ -348,6 +348,8 @@ class VideoStreamDecompressor:
if len(r) == 0:
break
self.proc.stdin.write(r)
except BrokenPipeError:
pass
finally:
self.proc.stdin.close()