Dominic Szablewski

Results 104 comments of Dominic Szablewski

I'm not familiar with node-rtsp-web, but it seems to transcode any(?) input video **into** MPEG1 on the server. So MPEG1 video goes over the wire. JSMpeg decodes MPEG1 on the...

I don't write much python, but I believe you could use [pl_mpeg](https://github.com/phoboslab/pl_mpeg) via FFI in python to decode the video and audio packets. pl_mpeg doesn't come with an MPEG-TS demuxer...

Works for me™ Tested with html: ```html let player = null; let port = '8082'; let canvas = document.getElementById('video-canvas'); let toggleStreams = function() { port = port === '8082' ?...

Looks like some kind of timeout, forcing the connection to close. What server software (the one accepting the https traffic from ffmpeg) are you using?