Tim

Results 8 comments of Tim

Any thoughts how i can prevent this behavior?

I did the following on my _raspberry pi zero 2 w_ with raspbian buster lite and a Raspberry Pi Kamera: ``` git clone https://github.com/aiortc/aiortc.git cd aiortc python3 -m venv env...

`--play-without-decoding` makes the whole system unresponsive because of cpu usages over 100%

i use the following commands to configure the camera: ``` v4l2-ctl -d /dev/video0 -c video_bitrate_mode=1,video_bitrate=2000000,h264_profile=0,h264_i_frame_period=60 v4l2-ctl -d /dev/video0 -v pixelformat=H264,width=640,height=480 v4l2-ctl -d /dev/video0 -p 30 ```

i tried to configure ffmpeg to do the job with: `options = {"framerate": "30", "video_size": "640x480","input_format":"h264","vcodec":"copy"}` but it seems to have no effect. With further testing i can confirm that...

I ended up using @jpiat 's fork with the EncodedMediaStreamTrack and [ PiH264StreamTrack](https://github.com/jpiat/aiortc/blob/main/examples/picamera/pitrack.py). The only problem with that approach was that it was limited to only one concurrent mediatrack with...

> I googled your problem and found it: https://community.octoprint.org/t/low-latency-h264-streaming-support-w-webrtc/36996/36?page=2 before i opened this issue i already tried this approach. it worked with the fork from @johnboiles, but unreliable with the...