Advertisement
Guest User

Untitled

a guest
Mar 30th, 2020
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. srtpdec gstsrtpdec.c:1262:gst_srtp_dec_chain:<srtpdec0> Invalid buffer, dropping
  2. dtlssrtpdec gstdtlssrtpdec.c:412:on_decoder_request_key:<dtlssrtpdec0> no srtp key available yet
  3. srtpdec gstsrtpdec.c:818:request_key_with_signal:<srtpdec0> Could not get caps for stream with SSRC 1356955624
  4.  
  5. Streaming side:
  6. gst-launch-1.0 -e v4l2src device=/dev/video0 ! \
  7. video/x-raw,width=1280,height=720,framerate=30/1 ! \
  8. x264enc speed-preset=ultrafast tune=zerolatency \
  9. byte-stream=true threads=4 key-int-max=15 intra-refresh = true ! \
  10. h264parse ! \
  11. rtph264pay ! \
  12. "application/x-rtp, payload=(int)96, ssrc=(uint)1356955624" ! \
  13. .rtp_sink_0 dtlssrtpenc connection-id=red is-client=true .src ! udpsink host=192.168.1.207 port=5000 \
  14. udpsrc port=5002 ! .sink dtlssrtpdec connection-id=red .rtp_src ! queue ! fakesink async=true \
  15. --gst-debug-level=3
  16.  
  17. Receiving side:
  18. gst-launch-1.0 -e dtlssrtpenc connection-id=client is-client=false .src ! \
  19. udpsink host=192.168.1.250 port=5002 \
  20. udpsrc port=5000 caps="application/x-srtp, encoding-name=H264, payload=(int)96, ssrc=(uint)1356955624, roc=(uint)0" ! \
  21. .sink dtlssrtpdec connection-id=client .rtp_src ! rtph264depay ! \
  22. tee name = t \
  23. t. ! queue ! fakesink async=false \
  24. t. ! queue ! avdec_h264 ! autovideosink \
  25. --gst-debug-level=3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement