Skip to content

Instantly share code, notes, and snippets.

@imneonizer
Created August 30, 2021 04:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imneonizer/227f6ef73414b46543bc6aac146c151b to your computer and use it in GitHub Desktop.
Save imneonizer/227f6ef73414b46543bc6aac146c151b to your computer and use it in GitHub Desktop.
capture rtsp snapshot using gstreamer
# https://stackoverflow.com/questions/59025321/capture-jpeg-images-from-rtsp-gstreamer
gst-launch-1.0 rtspsrc location="rtsp://admin:123456@192.168.0.123/stream0" num-buffers=1 \
! rtph264depay ! avdec_h264 \
! nvjpegenc ! multifilesink location="./frame.jpg"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment