Ignore BrokenPipeError

pull/24024/head
mitchellgoffpc 2022-03-22 12:52:25 -07:00
parent 7cd8575c74
commit 5c8c6faa9a
1 changed files with 2 additions and 0 deletions

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()