Open jdbodyfelt opened 3 years ago
Were you able to figure this out? Facing the same error
Were you able to figure this out? Facing the same error
process = (
ffmpeg
.input(file)
.output("pipe:", format="rawvideo", pix_fmt="rgb24", s="27*48", vsync="0")
.run_async( pipe_stdout=True)
)
video_stream, err = process.communicate()
I also encountered this problem. Is there a solution?
I'm trying to get pipes working in a class in the following manner
where
opts["device"]
,opts["size"]
,self.name
, andself.fps
are objects within my class. When I call my code, I get the following errorNot really sure where the problem is on the bad file descriptor? Any advice?