Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Collapse
Brand Logo

ModalAI Forum

  1. ModalAI Support Forum
  2. Ask your questions right here!
  3. m500 camera stream

m500 camera stream

Scheduled Pinned Locked Moved Ask your questions right here!
5 Posts 2 Posters 1.1k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Syed OmairS Offline
    Syed OmairS Offline
    Syed Omair
    wrote on last edited by
    #1

    can someone tell me how I can stream video from a different camera than the hi res camera ? like I want to be able to see all of these

    cameras

    I followed steps on this site but was only able to get hires

    Link Preview Image
    Page not found

    ModalAI technical documentation for VOXL and VOXL 2 Companion Computers for PX4 and ArduPilot Obstacle Avoidance and GPS-denied navigation, assembled in the USA

    favicon

    ModalAI Technical Docs (docs.modalai.com)

    thank you

    Alex KushleyevA 1 Reply Last reply
    0
    • Syed OmairS Syed Omair

      can someone tell me how I can stream video from a different camera than the hi res camera ? like I want to be able to see all of these

      cameras

      I followed steps on this site but was only able to get hires

      Link Preview Image
      Page not found

      ModalAI technical documentation for VOXL and VOXL 2 Companion Computers for PX4 and ArduPilot Obstacle Avoidance and GPS-denied navigation, assembled in the USA

      favicon

      ModalAI Technical Docs (docs.modalai.com)

      thank you

      Alex KushleyevA Online
      Alex KushleyevA Online
      Alex Kushleyev
      ModalAI Team
      wrote on last edited by
      #2

      @Syed-Omair , you can display all the video streams using voxl-portal for debugging purposes (select the camera in the Cameras menu on the top. Is this what you are trying to achieve?

      Syed OmairS 1 Reply Last reply
      0
      • Alex KushleyevA Alex Kushleyev

        @Syed-Omair , you can display all the video streams using voxl-portal for debugging purposes (select the camera in the Cameras menu on the top. Is this what you are trying to achieve?

        Syed OmairS Offline
        Syed OmairS Offline
        Syed Omair
        wrote on last edited by
        #3

        @Alex-Kushleyev

        I apologize for being late. I am aware of the voxl-portal for debugging purposes but no that's not what I want for now. like I want to be able to read the data frame by frame using a python script which reads from a rtsp "live" link. I think its just configuring the voxl-streamer server to something else ? idk I am lost on what to do her

        two more questions

        1. is there a way for me to also in real time read the point cloud data ? I can view one the being generated in the voxl-portal section "pointcloud" but I want to read the actual pointcloud dataset in real time so I can do some other visualizations with it.

        2. I would love if you could let me know how i can read quaternion data in real time as well..

        Thank you

        Alex KushleyevA 1 Reply Last reply
        0
        • Syed OmairS Syed Omair

          @Alex-Kushleyev

          I apologize for being late. I am aware of the voxl-portal for debugging purposes but no that's not what I want for now. like I want to be able to read the data frame by frame using a python script which reads from a rtsp "live" link. I think its just configuring the voxl-streamer server to something else ? idk I am lost on what to do her

          two more questions

          1. is there a way for me to also in real time read the point cloud data ? I can view one the being generated in the voxl-portal section "pointcloud" but I want to read the actual pointcloud dataset in real time so I can do some other visualizations with it.

          2. I would love if you could let me know how i can read quaternion data in real time as well..

          Thank you

          Alex KushleyevA Online
          Alex KushleyevA Online
          Alex Kushleyev
          ModalAI Team
          wrote on last edited by
          #4

          @Syed-Omair

          You can use voxl-streamer to create an rtsp stream of any of the camera images that you are either coming directly from cameras or images that are output from algorithms like qvio or dfs. You can also use voxl-streamer to serve a h264/h265 stream that has already been encoded. Here are some examples:

          #examples of images that are not h264/h265 which will be encoded by voxl-streamer
          voxl-streamer -i qvio_overlay
          voxl-streamer -i dfs_disparity
          voxl-streamer -i stereo
          voxl-streamer -i tracking
          
          #example of streamer a stream that is already encoded as it comes from camera server (this stream has to be enabled in `voxl-camera-server.conf`
          voxl-streamer -i hires_large_encoded
          

          So, you can just use voxl-inspect-cam -a to see what camera streams are available and just start voxl-streamer (in foreground for testing) with -i argument and provide the stream name. You can also check the help description by running:

          voxl-streamer -h
          

          It tells you how to change rtsp port and how to run multiple instances using --standalone option.

          Alex KushleyevA 1 Reply Last reply
          0
          • Alex KushleyevA Alex Kushleyev

            @Syed-Omair

            You can use voxl-streamer to create an rtsp stream of any of the camera images that you are either coming directly from cameras or images that are output from algorithms like qvio or dfs. You can also use voxl-streamer to serve a h264/h265 stream that has already been encoded. Here are some examples:

            #examples of images that are not h264/h265 which will be encoded by voxl-streamer
            voxl-streamer -i qvio_overlay
            voxl-streamer -i dfs_disparity
            voxl-streamer -i stereo
            voxl-streamer -i tracking
            
            #example of streamer a stream that is already encoded as it comes from camera server (this stream has to be enabled in `voxl-camera-server.conf`
            voxl-streamer -i hires_large_encoded
            

            So, you can just use voxl-inspect-cam -a to see what camera streams are available and just start voxl-streamer (in foreground for testing) with -i argument and provide the stream name. You can also check the help description by running:

            voxl-streamer -h
            

            It tells you how to change rtsp port and how to run multiple instances using --standalone option.

            Alex KushleyevA Online
            Alex KushleyevA Online
            Alex Kushleyev
            ModalAI Team
            wrote on last edited by
            #5

            you can see how the point cloud data is received in our voxl-mpa-tools :

            https://gitlab.com/voxl-public/voxl-sdk/utilities/voxl-mpa-tools/-/blob/master/tools/voxl-inspect-points.c . This is a very simple example, but you can use it to make your own application.

            this example shows how you can inspect 6DOF pose : https://gitlab.com/voxl-public/voxl-sdk/utilities/voxl-mpa-tools/-/blob/master/tools/voxl-inspect-pose.c (i believe you need voxl vision hub running for that)

            1 Reply Last reply
            0

            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

            With your input, this post could be even better 💗

            Register Login
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            ModalAI
            Categories Recent Tags ModalAI.com Docs
            © 2026 ModalAI® · Accelerating autonomy for smaller, smarter, safer drones · Powered by NodeBB
            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • Users
            • Groups