Hi all,
Assuming I have a webrtcsink with multiple streams like this one
pipeline = Gst.parse_launch(f"
webrtcsink name=ws meta=\"meta,name=sender\"
appsrc name=src_left is-live=true min-latency=30000000 ! h264parse ! ws.
appsrc name=src_right is-live=true min-latency=30000000 ! h264parse ! ws.)
Is it possible to name these streams so I know who’s who on the receiver side? Webrtcsink is automatically setting an id somewhere, I’d to do this myself.
Thanks