Getting live stream from android phone into jetson nano

Hi Folks,

I am trying to capture live streaming from android device camera to jetson nano, but not able to get it. Just like below post, I need to get video feed from phone camera to jetson nano for computer vision.

Please refer to below post to see if can help: How to view Jetson nano live video from Android OS device - Jetson & Embedded Systems / Jetson Nano - NVIDIA Developer Forums

@kayccc Thanks Buddy. What I actually need to get feed from Android device Camera directly to get consumed in the Jetson Nano image analysis such as live streaming analysis.

Easiest solution that helped and worked for me is below:

detectnet.py --network=SSD-Mobilenet-v2 --width=1280 --height=720 --camera= rtsp://:@:8080**

Infact if you are planning to train model on your own custom data set you can use :

camera-capture rtsp://:8080**

and to do live analysis:

sachinksingh@linux:~/jetson-inference/python/training/detection/ssd$ detectnet --model=models/floor/ssd-mobilenet.onnx --labels=models/floor/labels.txt --input-blob=input_0 --output-cvg=scores --output-bbox=boxes rtsp://:@:8080

1 Like

Thanks for your sharing!

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