ModalAI Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Home
    2. cegeyer
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 2
    • Best 0
    • Controversial 0
    • Groups 0

    cegeyer

    @cegeyer

    0
    Reputation
    2
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    cegeyer Unfollow Follow

    Latest posts made by cegeyer

    • RE: gstreamer uyvy camera stream not working on voxl2

      How are you logged into the VOXL to get the window? I was able to get it by running ssh -X root@<VOXL IP> from a Linxu host were I was logged in with a display. I don't have any peripheral to get a display directly from the VOXL.

      You can test my method by connecting to the VOXL via ssh -X then running this gst-launch-1.0 videotestsrc ! autovideosink. You should see a window pop up with a test pattern.

      Hopefully that fixes the issue, if not, you can try to switch omxh264dec with avdec_h264 but it will then use CPU instead of GPU

      posted in Software Development
      C
      cegeyer
    • RE: gstreamer uyvy camera stream not working on voxl2

      Try to run this command on the VOXL-2 and see if it outputs anything when streaming from the host to make sure you actually are getting data into the VOXL:

      gst-launch-1.0 udpsrc port=8554 num-buffers=1 ! fakesink dump=true
      

      I also have issues with decodebin receiving an h264 stream as it uses qtivdec to decode the h264 and outputs video/x-raw(memory:GBM) which I have issues working with. You can try this pipeline to use a different decoder:

      gst-launch-1.0  udpsrc port=8554 caps = "application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, payload=(int)96" ! rtph264depay ! h264parse ! omxh264dec ! videoconvert ! autovideosink sync=false
      
      posted in Software Development
      C
      cegeyer