Merge pull request #291 from SeanFxyz/patch-1
Update pipe_no_wait function to work on FreeBSD
This commit is contained in:
commit
3733353170
2
util.py
2
util.py
@ -164,7 +164,7 @@ def pipe_no_wait():
|
|||||||
""" Generate a non-block pipe used to fetch the STDERR of ffmpeg.
|
""" Generate a non-block pipe used to fetch the STDERR of ffmpeg.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
if platform == "linux" or platform == "linux2" or platform == "darwin" or platform.startswith("openbsd"):
|
if platform == "linux" or platform == "linux2" or platform == "darwin" or platform.startswith("openbsd") or platform.startswith("freebsd"):
|
||||||
import fcntl
|
import fcntl
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user