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.
我正在使用 c#。
使用ffmpeg时是否可以输出到字节数组而不是文件?
我正在使用 process 方法来执行 ffmpeg。
谢谢
是的。你必须学习如何使用FFmpeg的其他协议。文件的输入/输出只是一个特定的协议......但您可以输出,例如,套接字、FTP/HTTP 等等......
任何人都可以很容易地创建一个新协议(当然是用 C 语言)并将其注册到 FFmpeg。我不认为 FFmpeg 具有写入缓冲区的内置解决方案,但可以肯定的是。我做过一次。