WebRtc stream with Jetson Orin

Hi all,

I’m trying to streaming a live camera video using WebRtc, but when I run:

video-viewer /dev/video0 webrtc://@:8554/output

I receive:

[video] videoOutput – unsupported protocol (webrtc)

I read webrtc is built in with Jetson AGX Orin. So, what could be the error ?

Thank you

Hi @domenico.depascale, are you running the jetson-inference docker container or have you built it from source?
Maybe you are running an outdated version of jetson-inference before WebRTC support was merged into the jetson-inference master branch.

Which version of JetPack-L4T are you running - if you’re using the container, do a sudo docker pull dustynv/jetson-inference:rXX.X. And if you build jetson-inference from source, try updating the repo and rebuilding/reinstalling:

cd /path/to/your/jetson-inference
git pull --recurse-submodules
cd build
cmake ../
make
sudo make install

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.