Ignore BrokenPipeError

This commit is contained in:
mitchellgoffpc
2022-03-22 12:52:25 -07:00
parent 7cd8575c74
commit 5c8c6faa9a
+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()