Closed Klayflash closed 2 years ago
We have no plans to implemented named pipe support into the FidelityFX CLI tool unfortunately, but we will happily review and accept a suitable patch from a contributor that implements it.
pipes/files can be read via
fopen("filepath","rb")
Just by replacing existing calls by these.
Python example that accepts file or pipe for read:
fh = open(name,"rb")
actual = fh.read()
and for write:
fh = open(name,"wb")
fh.write(buf)
Hello.
I like to use tool without storing temporary files for video transcoding. So, piped IO is required.
For example vmaf tool on Windows can be used like this:
Or something like image2pipe from ffmpeg (see ffmpeg faq):
Thanks!