[FFmpeg-user] Unix Socket file using about

Moritz Barsnick barsnick at gmx.net
Wed Nov 23 23:40:06 EET 2016


On Wed, Nov 23, 2016 at 12:42:52 +0300, Hasan BAĞÇACI wrote:
> I am using SDI card for video capture. I want to send video to socket file
> because i am using video different processes. How can I do this?

You can send ffmpeg's output to the "tcp" protocol with the "listen"
option:
https://www.ffmpeg.org/ffmpeg-protocols.html#tcp

That means ffmpeg will basically open a socket which another program
can connect to.

Also, without "listen", you can make that call connect to another
program's socket.

The "unix" protocol is an alternative for local sockets. (On Unix only,
I guess.)

Moritz


More information about the ffmpeg-user mailing list