Re: [FFmpeg-user] progress output to unix domain socket

2017-07-06 Thread Moritz Barsnick
On Thu, Jul 06, 2017 at 11:16:36 +0200, Nicolas George wrote: > Well, since you are being sarcastic: > > I meant like: mkfifo? > ... I hope you will share the exact version of the operating system you > use where mkfifo can be used to create Unix domain sockets. You can just point out an error wit

Re: [FFmpeg-user] progress output to unix domain socket

2017-07-06 Thread tasos
There is no need to argue people. I will try Writing to unix socket works for me with url like this: -progress "unix:/tmp/foo" _ and let you know! Thanks!!! On 7/6/2017 1:52 PM, Nicolas George wrote: L'octidi 18 messidor, an CCXXV, Anatoly a écrit : don't mess

Re: [FFmpeg-user] progress output to unix domain socket

2017-07-06 Thread Nicolas George
L'octidi 18 messidor, an CCXXV, Anatoly a écrit : > don't mess socket(2) nc(1) and pipe(2) mkfifo(1) > socket(2) is a matter of networking staff, while pipe(2) is a matter of > ipc. I know all that, but all that is completely unrelated to UNIX DOMAIN SOCKETS. Judging by your other mail, you know w

Re: [FFmpeg-user] progress output to unix domain socket

2017-07-06 Thread Anatoly
tasos wrote: > More specifically i get > Failed to open progress URL "/tmp/foo": No such device or > address Writing to unix socket works for me with url like this: -progress "unix:/tmp/foo" ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://

Re: [FFmpeg-user] progress output to unix domain socket

2017-07-06 Thread Anatoly
don't mess socket(2) nc(1) and pipe(2) mkfifo(1) socket(2) is a matter of networking staff, while pipe(2) is a matter of ipc. ___ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link a

Re: [FFmpeg-user] progress output to unix domain socket

2017-07-06 Thread Nicolas George
L'octidi 18 messidor, an CCXXV, Moritz Barsnick a écrit : > Haha! Who needs operating systems when we have ... JavaScript! ;-) Well, since you are being sarcastic: > I meant like: mkfifo? ... I hope you will share the exact version of the operating system you use where mkfifo can be used to crea

Re: [FFmpeg-user] progress output to unix domain socket

2017-07-05 Thread tasos
Hahahaha I totally understand you.Javascript will destroy the world someday ;) But node.js is the best solution IMHO for the specific project of mine. Btw i used nc -U /tmp/foo and it was successful.I mean i was able to write data to the socket. That's why i thought it was strange. Well i will

Re: [FFmpeg-user] progress output to unix domain socket

2017-07-05 Thread Moritz Barsnick
On Thu, Jul 06, 2017 at 01:57:47 +0300, tasos wrote: > I'm creating it via node.js Haha! Who needs operating systems when we have ... JavaScript! ;-) I meant like: mkfifo? With which user? With which permissions? I did $ mkfifo /tmp/foo One terminal: $ ffmpeg -progress /tmp/foo [...] Other termi

Re: [FFmpeg-user] progress output to unix domain socket

2017-07-05 Thread tasos
Thanks for replying. I'm creating it via node.js I will give it a try again since you are telling me that it's valid. Thanks. On 7/6/2017 1:50 AM, Moritz Barsnick wrote: On Thu, Jul 06, 2017 at 01:33:35 +0300, tasos wrote: More specifically i get Failed to open progress URL "/tmp/foo": No such

Re: [FFmpeg-user] progress output to unix domain socket

2017-07-05 Thread Moritz Barsnick
On Thu, Jul 06, 2017 at 01:33:35 +0300, tasos wrote: > More specifically i get > > Failed to open progress URL "/tmp/foo": No such device or address Works for me. > Is it impossible or am i missing something? How did you create /tmp/foo? Moritz ___ ff

[FFmpeg-user] progress output to unix domain socket

2017-07-05 Thread tasos
Hello. I'm trying to send the output of 'progress' to a unix domain socket but i'm dealing with some problems. More specifically i get Failed to open progress URL "/tmp/foo": No such device or address Is it impossible or am i missing something? Thanks! ___