using pipes to channel file i/o to another process

前端 未结 2 1326
南笙
南笙 2021-01-25 04:13

Just started learning/using pipes and was wondering how to route file output of an application into a pipe so that another application can use it.

To be exact, I want t

2条回答
  •  感情败类
    2021-01-25 05:08

    ffmpeg can also read from stdin and write to stdout like this:

    ffmpeg -i pipe:0 -f wav pipe:1
    

    where 0 and 1 are the standard POSIX file descriptors.

提交回复
热议问题