chenxiaoqino

Results 31 comments of chenxiaoqino

It looks like the video input stream is not passed to ffmpeg at all. You probably want to check earlier upstream (getusermedia / socket.io).

For HTTP/3 related: you are welcomed to experiment with it and open a pull request! For encoding: I believe FFMPEG (compiled via emscripten) support many codecs, and the project you...

Hi, you may want to try tune the ffmpeg parameters to add zerolatency options. https://trac.ffmpeg.org/wiki/StreamingGuide#Latency

Hi, this looks like the normal logging information, can you find the actual log that mention some error? Or, is there no more log? (Normally there will be some progress...

I guess the issue is with socket.io, as the log essentially tells that FFMpeg is not receiving any data. Can you try to add some `console.log` to ``` socket.on('binarystream',function(m){ .......

Yes it is possible, however if you are trying P2P stream you should search for webRTC. -- Yours sincerely, Xiaoqi Chen cxqn.info On Tue, May 21, 2019 at 6:35 AM...

Doesn't really need it, as webm or mp4 is supported by most major browser today.

Electron是本地应用环境,既然是本地,可以考虑直接运行ffmpeg命令获取摄像头+推RTMP流,参见 https://trac.ffmpeg.org/wiki/Capture/Webcam

I never tried to build under Windows. Perhaps you need to update the socket API to use Windows WinSock, a totally different system. (Unix-based systems uses the same API for...

Oh interesting, then I dont know why there's linking error. Probably we need to add a flag (similar to the gcc -lm flag for math module)? On Mon, Jul 30,...