Unable to view the video feed

Hi Team,

I’m trying to visualise the video feed via local machine. I followed this tutorial Jetson AI Fundamentals - S3E1 - Hello AI World Setup - YouTube

from 14.00 min

Inside jetson nano device I ran the following command to capture the frame video-viewer --headless csi://0 rtp://<remote-ip>:1234 --input-flip=rotate-180

When I run the above command I can see the following output

from local machine I used the following command to visualize the camera feed gst-launch-1.0 -v udpsrc port=1234 caps = "application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, payload=(int)96" ! rtph264depay ! decodebin ! videoconvert ! autovideosink

when I run the above command in my local machine, it doesn’t run, it just stuck

Could you please help me here to fix the problem? I’m trying this with headless mode.
#jetson

Hi,
Probably certain plugins are not installed on the host PC. Please try this command:

gst-launch-1.0 -v udpsrc port=1234 caps = "application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, payload=(int)96" ! rtph264depay ! h264parse ! avdec_h264 ! xvimagesink

See if it works by linking the plugins one by one.

And please make sure you have connected a camera(such as Raspberry Pi camera V2) to Jetson Nano and then launch video-viewer.

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