Created
September 12, 2020 08:24
-
-
Save shinyoshiaki/2258874dcf50ec034a588e8596eddcdc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gst-launch-1.0 \ | |
| udpsrc name=videoRTP port=4002 \ | |
| caps = "application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)VP8, payload=(int)97" \ | |
| ! rtpvp8depay ! queue ! muxer.video_0 \ | |
| udpsrc port=4003 \ | |
| caps = "application/x-rtp, media=(string)audio, clock-rate=(int)48000, encoding-name=(string)OPUS, payload=(int)96" \ | |
| ! rtpopusdepay ! opusparse ! queue ! muxer.audio_0 \ | |
| qtmux name="muxer" ! filesink location=~/Downloads/capture.mp4 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
動くやつ