prabhakar-sivanesan / OpenCV-rtsp-server

RTSP streaming using GStreamer
177 stars 62 forks source link

How can I use rtpvrawpay? #11

Open DongBumKim opened 2 years ago

DongBumKim commented 2 years ago

Hi.

I'm trying to implement a rtsp server which sends loseless real image.

I tried the launch_string as below, and I cannot get open video in the client.

Can you help me out?

Thanks!

    self.launch_string = 'appsrc name=kinect is-live=true block=true format=GST_FORMAT_TIME ' \
                         'caps=video/x-raw,format=BGR,width={},height={},framerate={}/1 ' \
                         '! rtpvrawpay' \
                         .format(opt.image_width, opt.image_height, self.fps)