Re: [nodejs] Limit and handling of spawning child_process of ffmpeg

2015-06-29 Thread Ofir Attia
The server is waiting for request, for each request I am take a video input ( it can be RTSP input, video file .. ) and output it as 1 image. for example - this.stream = child_process.spawn("ffmpeg", [ "-i", this.url, "-rtsp_transport", "tcp",'-f', 'mpeg1video', '-b:v', '800k', '-r', '30', '-']

[nodejs] Re: ISO standarts

2015-06-29 Thread Kate Shipitsova
We're interested in ISO/IEC TR 10032:2003 http://www.standards.ru/document/3623210.aspx понедельник, 15 июня 2015 г., 15:04:25 UTC+3 пользователь Kate Shipitsova написал: > > HI, > > How nodejs complies with ISO standarts? > -- Job board: http://jobs.nodejs.org/ New group rules: https://gist

[nodejs] Bower_component, como funciona?

2015-06-29 Thread ToniRezende-SP
Estou usando o BootStrap e com sua instalação veio o Bower_component com vários arquivos em less. Minha dúvida: 1 - editando os arquivo Less no bower, ele compila o css ou tenho de fazer manual. 2 - posso aplicar direto o código less nas páginas? -- Job board: http://jobs.nodejs.org/ New group

[nodejs] How to overload the URL fetch in npm?

2015-06-29 Thread Yuri Vic
I want to create the package for one nodejs-based project. All files that are required to be downloaded should be downloaded and fingerprinted before the npm can be started. Is there the way URL fetch can be overloaded with my own JavaScript function, so I can see what URLs are being fetched, a

[nodejs] Re: How to handle multiple, dynamically created listeners to a single ChildProcess in NodeJS?

2015-06-29 Thread Konrad Moskal
I have already found out that this should be a reasonable solution, right? :) //foobar.js worker.on('message', function(responseData) { // assuming worker returns `{id: ..., data: ...}` var socket = io.sockets.sockets[responseData.id]; socket.emit('response', responseData.data);}); io.socke

Re: [nodejs] Bower_component, como funciona?

2015-06-29 Thread Aria Stewart
> On Jun 29, 2015, at 6:57 AM, ToniRezende-SP > wrote: > > Estou usando o BootStrap e com sua instalação veio o Bower_component com > vários arquivos em less. > Minha dúvida: > 1 - editando os arquivo Less no bower, ele compila o css ou tenho de fazer > manual. > 2 - posso aplicar direto o c

Re: [nodejs] ISO standarts

2015-06-29 Thread Aria Stewart
> On Jun 29, 2015, at 7:24 AM, Kate Shipitsova > wrote: > > We're interested in ISO/IEC TR 10032:2003 > http://www.standards.ru/document/3623210.aspx That's a terms and definitions standard as far as I can tell -- there's nothing for nodejs to comply with, from the sound of it. (I don't ha

Re: [nodejs] Limit and handling of spawning child_process of ffmpeg

2015-06-29 Thread Matt
You've exhausted the threadpool. Try setting the UV_THREADPOOL_SIZE env var higher and see if you can spawn more. On Sun, Jun 28, 2015 at 1:12 PM, Ofir Attia wrote: > The server is waiting for request, for each request I am take a video > input ( it can be RTSP input, video file .. ) and output