<div dir="ltr">Hi All,<div><br></div><div>I'm looking at the python example for dtlssrtpenc element here: <a href="https://cgit.freedesktop.org/gstreamer/gst-plugins-bad/tree/ext/dtls/README">https://cgit.freedesktop.org/gstreamer/gst-plugins-bad/tree/ext/dtls/README</a>, in the pipeline description, what does ".rtp_sink_0" (starting with a dot) mean?  I tried to find it in the document but couldn't find any other examples. I know I can use "xxx.xxx" if there are named elements.</div><div><br></div><div>
<pre><code>def dtls_tx_pipeline_description(name, is_client, port):
    return ' ! '.join([
        'audiotestsrc is-live=true',
        'audio/x-raw, rate=8000, format=S16LE, channels=1',
        'opusenc frame-size=10',
        'rtpopuspay pt=103',
        '<b>.rtp_sink_0</b> dtlssrtpenc connection-id={name} is-client={client} <b>.src</b>',
        'udpsink port={port}'
    ]).format(name=name, client=is_client, port=port)</code></pre>

</div><div><br></div><div>Thanks in advance.</div><div><br></div><div>Bin</div><div><br></div><div><br></div></div>