1#!/bin/bash 2 3# Copyright © 2018 Renesas Electronics Corp. 4# 5# Permission is hereby granted, free of charge, to any person obtaining 6# a copy of this software and associated documentation files (the 7# "Software"), to deal in the Software without restriction, including 8# without limitation the rights to use, copy, modify, merge, publish, 9# distribute, sublicense, and/or sell copies of the Software, and to 10# permit persons to whom the Software is furnished to do so, subject to 11# the following conditions: 12# 13# The above copyright notice and this permission notice (including the 14# next paragraph) shall be included in all copies or substantial 15# portions of the Software. 16# 17# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 18# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 19# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 20# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 21# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 22# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 23# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 24# SOFTWARE. 25# 26# Authors: IGEL Co., Ltd. 27 28# By using this script, client can receive remoted output via gstreamer. 29# Usage: 30# remoting-client-receive.bash <PORT NUMBER> 31 32gst-launch-1.0 rtpbin name=rtpbin \ 33 udpsrc caps="application/x-rtp,media=(string)video,clock-rate=(int)90000,encoding-name=JPEG,payload=26" port=$1 ! \ 34 rtpbin.recv_rtp_sink_0 \ 35 rtpbin. ! rtpjpegdepay ! jpegdec ! autovideosink \ 36 udpsrc port=$(($1 + 1)) ! rtpbin.recv_rtcp_sink_0 \ 37 rtpbin.send_rtcp_src_0 ! \ 38 udpsink port=$(($1 + 2)) sync=false async=false 39