Laurent Denoue

Results 39 comments of Laurent Denoue

Is this lib using pion underneath or it depends on mediasoup?

I think that the rtp-forwarder example would let you pipe the rtp packets to ffmpeg: if you just tell ffmpeg what output format you want, it will save to the...

did you notice better accuracy when using pytorch?

@tml1024 and @twoframesperminute I made an app called [Screegle](https://www.appblit.com/screegle) that currently fails to work with Zoom because it "hides" the window by moving it to the right side of the...

Indeed :) I just tried FluffyDisplay was able able to put a window there, and Zoom can capture it. However, I'm trying to understand how to create the virtual display...

Answering my own question: this positions a display on top ``` var configRef:CGDisplayConfigRef? = nil CGBeginDisplayConfiguration(&configRef) CGConfigureDisplayOrigin(configRef,currentDisplay,0,-1280) CGCompleteDisplayConfiguration(configRef,CGConfigureOption.permanently) ```

This would be awesome. At [Appblit](https://www.appblit.com), we develop a safer screen sharing experience by letting users share several windows over a clean virtual desktop image (so they don't have to...

What I ended up doing was capturing a NSWindow from inside the Plugin, at an interval. That's because my application needed to send the contents of a NSWindow opened on...

Thanks Sean for pointing me in the right direction. I wouldn’t have realized that this forwarder example was all I needed. As you said, it would simply forward the RTP...

To follow up on this, the [rtp-forwarder example](https://github.com/pion/webrtc/tree/master/examples/rtp-forwarder) worked well coupled with this FFMPEG command line to send to an existing RTMP: ```ffmpeg -protocol_whitelist file,udp,rtp -i rtp-forwarder.sdp -c:v libx264 -codec:a...