hi everybody
i just want to send live feed of csi camera (imx 477 12mp) from jetson nano to an other linux system .
for preventing fps dropping because of converting image format that could readed by jetson nano and othe things that make process slower i decide to use rtp or rtsp to send data from jetson nano to other system .
i can send camera feed from jetson and recieve in other system only in terminal .
in jetson i use nvarguscamera as source and in other system i’m using udpsrc as src in command and it will work fine .
but when i wanna read data in linux system (not jetson nano) i dont know who to use gstreamer elements and which source and sink should be used.
for practice i use udpsrc as source and appsink ass sink element and this dosent work (sample code below)
hi daneLLL
the first command will work in terminal very well
but second line (gst_line2= …) not work in python
and about gstreamer in python i think it should be enabaled because it work when i wanna take image straight from camera in python .
do you have another solution to solve this problem ??
Having gstreamer working in python may not be enough…the question is does your opencv version running from python support gstreamer.
What gives from your pyhton:
import cv2
print(cv2.getBuildInformation())
Check for GStreamer SUPPORT : should be YES.
If ok, you may tell more about how you’re using it.