dusty-nv / jetson-inference

Hello AI World guide to deploying deep-learning inference networks and deep vision primitives with TensorRT and NVIDIA Jetson.
https://developer.nvidia.com/embedded/twodaystoademo
MIT License
7.81k stars 2.98k forks source link

Viewing RTP Remotely #1250

Closed urbansound8K closed 1 year ago

urbansound8K commented 3 years ago

is there anyway to transmit RTP to another remote host without making a SDP file?

I lunched the stream from jetson, then tried to get it on VLC thro the network URL! but that did not work out!!

any idea, please?

thank you

dusty-nv commented 3 years ago

I don't know how to do it using VLC without SDP file. I also recommend using GStreamer on the remote host to view the stream, because it works much better in my experience than VLC. You can install GStreamer on Linux, Mac, or Windows for x86.


From: urbansound8K @.> Sent: Sunday, October 10, 2021 11:54:45 PM To: dusty-nv/jetson-inference @.> Cc: Subscribed @.***> Subject: [dusty-nv/jetson-inference] Viewing RTP Remotely (#1250)

is there anyway to transmit RTP to another remote host without making a SDP file?

I lunched the stream from jetson, then tried to get it on VLC thro the network URL! but that did not work out!!

any idea, please?

thank you

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/dusty-nv/jetson-inference/issues/1250, or unsubscribehttps://github.com/notifications/unsubscribe-auth/ADVEGKZKY7X44FODRKOJ4JLUGJNYLANCNFSM5FXIP67A. Triage notifications on the go with GitHub Mobile for iOShttps://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fapps.apple.com%2Fapp%2Fapple-store%2Fid1477376905%3Fct%3Dnotification-email%26mt%3D8%26pt%3D524675&data=04%7C01%7Cdustinf%40nvidia.com%7Caedd6ea333444f97fcd308d98c6add3d%7C43083d15727340c1b7db39efd9ccc17a%7C0%7C0%7C637695212883594635%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=HX3HmBbliBuTEUeUroTfMToS8UwLjmNj6xPLAOgsZ0U%3D&reserved=0 or Androidhttps://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fid%3Dcom.github.android%26referrer%3Dutm_campaign%253Dnotification-email%2526utm_medium%253Demail%2526utm_source%253Dgithub&data=04%7C01%7Cdustinf%40nvidia.com%7Caedd6ea333444f97fcd308d98c6add3d%7C43083d15727340c1b7db39efd9ccc17a%7C0%7C0%7C637695212883604629%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=xTVoIGjCZN3C2tXBYfZtAOuMPeUj%2Bc5OABeLB6XdU5c%3D&reserved=0.

urbansound8K commented 3 years ago

Thanks a lot!

could you tell me please where in your code I can find this output? image

I honestly want to modify the printed output. I want to get rid of the lines that started with TRT

dusty-nv commented 3 years ago

Hi @urbansound8K, remove the net.PrintProfilerTimes() line from detectnet.py:

https://github.com/dusty-nv/jetson-inference/blob/9bf55495d6a4ff1946dddbb0e81102d2d05f4952/python/examples/detectnet.py#L81

If you change it, re-run this:

cd /path/to/your/jetson-inference/build
cmake ../
make
sudo make install

Then the modified detectnet.py will be copied into the bin directory.

urbansound8K commented 3 years ago

Thank you so much! it works.

I have another question, please!

Is it possible to show the detection in Bird's-eye view? and where to make that?