OpenVisualCloud/SVT-HEVC

Write to named pipe or stdout?

markg85 opened this issue · 1 comments

Hi,

I want to pipe the output of this application to a socket.
For that i need to be able to let it output to either stdout or a named pipe. As far as i can fell from the docs and the code there is no option to do either of these? I might have missed it?

Best regards,
Mark

And closed :)

mkfifo foo
<app> -b foo

And in another app (mpv in this case)
cat foo | mpv -

Works just fine.