vmolsa

Results 17 comments of vmolsa

[Chromium Linux Build instructions](https://chromium.googlesource.com/chromium/src/+/master/docs/linux_build_instructions.md) [Chromium’s build instructions for Windows](https://chromium.googlesource.com/chromium/src/+/master/docs/windows_build_instructions.md)

Is streaming to browser working also? On Mac and windows it's not working.. But first install arm dependencies by running script. ``` # sudo ./third_party/webrtc/src/build/install-build-deps.sh --arm ``` After that set...

Nice! :) The message "WARNING: no real random source present!" comes from libsrtp and it's "hard" coded to it. And it means that there is no secure RNG method enabled....

It seems that pangyp is configured to using target_arch = "x64" you can check it from build/config.gypi where line "target_arch" is "x64"? change line 20 @ package.json ``` "install": "pangyp...

Easiest way to build the module is from device but you need almost 10GB disk space to build it and time.. :/

git is running out of memory. ``` fatal: Out of memory, malloc failed (tried to allocate 106589184 bytes) ```

Maybe should try with webrtc branch 50 or 49 https://chromium.googlesource.com/external/webrtc/+/branch-heads/50 16.3.2016 7.28 "bfishman" [email protected] kirjoitti: > I'm getting a freeze - which actually hangs the entire terminal in which >...

I have made some performance changes to webrtc-native and now module is compiled with branch chromium 50 and `npm test` is running successfully.

How about `npm test` ? And what node version you are using?

I'm planning to provide capturer/recorder for png/jpeg/webm/wav from MediaStream / MediaStreamTrack. prototype example: ``` WebRTC.getUserMedia({ video: true }, function(stream) { var rec = new WebRTC.Recorder(stream, 'image/png'); var frame = 0;...