Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
众所周知,我们可以/dev/video0将目录作为接收网络摄像头输出的目录。
/dev/video0
是否可以通过程序创建一个假/dev/something目录C并不断输出一些创建的 png 文件的内容以创建一个fake webcam示例?
/dev/something
C
fake webcam
然后,我将读取live其他应用程序的流。
live
谢谢。
如果您只需要文件系统中某个应用程序可以读取某些特定数据的位置,请使用mkfifo它来创建它。
mkfifo
然后,您可以编写一个生产者,以任何比特率写入您需要的任何内容,并让消费者从中读取。如果您输出消费者的期望,您可能会得到类似于伪造数据的“实时流”的东西。