123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Linq;
- using UnityEngine;
- using UnityEngine.UI;
- using System.Text;
- namespace Unity.WebRTC.Samples
- {
- class MediaStreamSample : MonoBehaviour
- {
- #pragma warning disable 0649
- [SerializeField] private Button callButton;
- [SerializeField] private Button addTracksButton;
- [SerializeField] private Button removeTracksButton;
- [SerializeField] private Camera cam;
- [SerializeField] private InputField infoText;
- [SerializeField] private RawImage RtImage;
- #pragma warning restore 0649
- private RTCPeerConnection _pc1, _pc2;
- private List<RTCRtpSender> pc1Senders;
- private MediaStream videoStream;
- private MediaStreamTrack track;
- private DelegateOnIceConnectionChange pc1OnIceConnectionChange;
- private DelegateOnIceConnectionChange pc2OnIceConnectionChange;
- private DelegateOnIceCandidate pc1OnIceCandidate;
- private DelegateOnIceCandidate pc2OnIceCandidate;
- private DelegateOnTrack pc2Ontrack;
- private DelegateOnNegotiationNeeded pc1OnNegotiationNeeded;
- private StringBuilder trackInfos;
- private bool videoUpdateStarted;
- private void Awake()
- {
- WebRTC.Initialize(WebRTCSettings.LimitTextureSize);
- callButton.onClick.AddListener(Call);
- addTracksButton.onClick.AddListener(AddTracks);
- removeTracksButton.onClick.AddListener(RemoveTracks);
- }
- private void OnDestroy()
- {
- WebRTC.Dispose();
- }
- private void Start()
- {
- trackInfos = new StringBuilder();
- pc1Senders = new List<RTCRtpSender>();
- callButton.interactable = true;
- pc1OnIceConnectionChange = state => { OnIceConnectionChange(_pc1, state); };
- pc2OnIceConnectionChange = state => { OnIceConnectionChange(_pc2, state); };
- pc1OnIceCandidate = candidate => { OnIceCandidate(_pc1, candidate); };
- pc2OnIceCandidate = candidate => { OnIceCandidate(_pc2, candidate); };
- pc2Ontrack = e => { OnTrack(_pc2, e); };
- pc1OnNegotiationNeeded = () => { StartCoroutine(PcOnNegotiationNeeded(_pc1)); };
- var codecName = WebRTCSettings.UseVideoCodec == null
- ? "Default"
- : $"{WebRTCSettings.UseVideoCodec.mimeType} {WebRTCSettings.UseVideoCodec.sdpFmtpLine}";
- infoText.text = $"Currently selected video codec is {codecName}";
- }
- private static RTCConfiguration GetSelectedSdpSemantics()
- {
- RTCConfiguration config = default;
- config.iceServers = new[] {new RTCIceServer {urls = new[] {"stun:stun.l.google.com:19302"}}};
- return config;
- }
- private void OnIceConnectionChange(RTCPeerConnection pc, RTCIceConnectionState state)
- {
- switch (state)
- {
- case RTCIceConnectionState.New:
- Debug.Log($"{GetName(pc)} IceConnectionState: New");
- break;
- case RTCIceConnectionState.Checking:
- Debug.Log($"{GetName(pc)} IceConnectionState: Checking");
- break;
- case RTCIceConnectionState.Closed:
- Debug.Log($"{GetName(pc)} IceConnectionState: Closed");
- break;
- case RTCIceConnectionState.Completed:
- Debug.Log($"{GetName(pc)} IceConnectionState: Completed");
- break;
- case RTCIceConnectionState.Connected:
- Debug.Log($"{GetName(pc)} IceConnectionState: Connected");
- break;
- case RTCIceConnectionState.Disconnected:
- Debug.Log($"{GetName(pc)} IceConnectionState: Disconnected");
- break;
- case RTCIceConnectionState.Failed:
- Debug.Log($"{GetName(pc)} IceConnectionState: Failed");
- break;
- case RTCIceConnectionState.Max:
- Debug.Log($"{GetName(pc)} IceConnectionState: Max");
- break;
- default:
- throw new ArgumentOutOfRangeException(nameof(state), state, null);
- }
- }
- IEnumerator PcOnNegotiationNeeded(RTCPeerConnection pc)
- {
- Debug.Log($"{GetName(pc)} createOffer start");
- var op = pc.CreateOffer();
- yield return op;
- if (!op.IsError)
- {
- yield return StartCoroutine(OnCreateOfferSuccess(pc, op.Desc));
- }
- else
- {
- OnCreateSessionDescriptionError(op.Error);
- }
- }
- private void AddTracks()
- {
- pc1Senders.Add(_pc1.AddTrack(track));
- if (WebRTCSettings.UseVideoCodec != null)
- {
- var codecs = new[] { WebRTCSettings.UseVideoCodec };
- foreach (var transceiver in _pc1.GetTransceivers())
- {
- if (pc1Senders.Contains(transceiver.Sender))
- {
- transceiver.SetCodecPreferences(codecs);
- }
- }
- }
- if (!videoUpdateStarted)
- {
- StartCoroutine(WebRTC.Update());
- videoUpdateStarted = true;
- }
- addTracksButton.interactable = false;
- removeTracksButton.interactable = true;
- }
- private void RemoveTracks()
- {
- foreach (var sender in pc1Senders)
- {
- _pc1.RemoveTrack(sender);
- }
- foreach(var transceiver in _pc1.GetTransceivers())
- {
- transceiver.Stop();
- }
- pc1Senders.Clear();
- addTracksButton.interactable = true;
- removeTracksButton.interactable = false;
- trackInfos.Clear();
- infoText.text = "";
- }
- private void Call()
- {
- callButton.interactable = false;
- Debug.Log("GetSelectedSdpSemantics");
- var configuration = GetSelectedSdpSemantics();
- _pc1 = new RTCPeerConnection(ref configuration);
- Debug.Log("Created local peer connection object pc1");
- _pc1.OnIceCandidate = pc1OnIceCandidate;
- _pc1.OnIceConnectionChange = pc1OnIceConnectionChange;
- _pc1.OnNegotiationNeeded = pc1OnNegotiationNeeded;
- _pc2 = new RTCPeerConnection(ref configuration);
- Debug.Log("Created remote peer connection object pc2");
- _pc2.OnIceCandidate = pc2OnIceCandidate;
- _pc2.OnIceConnectionChange = pc2OnIceConnectionChange;
- _pc2.OnTrack = pc2Ontrack;
- videoStream = cam.CaptureStream(WebRTCSettings.StreamSize.x, WebRTCSettings.StreamSize.y);
- track = videoStream.GetTracks().First();
- RtImage.texture = cam.targetTexture;
- }
- private void OnIceCandidate(RTCPeerConnection pc, RTCIceCandidate candidate)
- {
- GetOtherPc(pc).AddIceCandidate(candidate);
- Debug.Log($"{GetName(pc)} ICE candidate:\n {candidate.Candidate}");
- }
- private void OnTrack(RTCPeerConnection pc, RTCTrackEvent e)
- {
- trackInfos.Append($"{GetName(pc)} receives remote track:\r\n");
- trackInfos.Append($"Track kind: {e.Track.Kind}\r\n");
- trackInfos.Append($"Track id: {e.Track.Id}\r\n");
- infoText.text = trackInfos.ToString();
- }
- private string GetName(RTCPeerConnection pc)
- {
- return (pc == _pc1) ? "pc1" : "pc2";
- }
- private RTCPeerConnection GetOtherPc(RTCPeerConnection pc)
- {
- return (pc == _pc1) ? _pc2 : _pc1;
- }
- private IEnumerator OnCreateOfferSuccess(RTCPeerConnection pc, RTCSessionDescription desc)
- {
- Debug.Log($"Offer from {GetName(pc)}\n{desc.sdp}");
- Debug.Log($"{GetName(pc)} setLocalDescription start");
- var op = pc.SetLocalDescription(ref desc);
- yield return op;
- if (!op.IsError)
- {
- OnSetLocalSuccess(pc);
- }
- else
- {
- var error = op.Error;
- OnSetSessionDescriptionError(ref error);
- }
- var otherPc = GetOtherPc(pc);
- Debug.Log($"{GetName(otherPc)} setRemoteDescription start");
- var op2 = otherPc.SetRemoteDescription(ref desc);
- yield return op2;
- if (!op2.IsError)
- {
- OnSetRemoteSuccess(otherPc);
- }
- else
- {
- var error = op2.Error;
- OnSetSessionDescriptionError(ref error);
- }
- Debug.Log($"{GetName(otherPc)} createAnswer start");
- // Since the 'remote' side has no media stream we need
- // to pass in the right constraints in order for it to
- // accept the incoming offer of audio and video.
- var op3 = otherPc.CreateAnswer();
- yield return op3;
- if (!op3.IsError)
- {
- yield return OnCreateAnswerSuccess(otherPc, op3.Desc);
- }
- else
- {
- OnCreateSessionDescriptionError(op3.Error);
- }
- }
- private void OnSetLocalSuccess(RTCPeerConnection pc)
- {
- Debug.Log($"{GetName(pc)} SetLocalDescription complete");
- }
- static void OnSetSessionDescriptionError(ref RTCError error)
- {
- Debug.LogError($"Error Detail Type: {error.message}");
- }
- private void OnSetRemoteSuccess(RTCPeerConnection pc)
- {
- Debug.Log($"{GetName(pc)} SetRemoteDescription complete");
- }
- IEnumerator OnCreateAnswerSuccess(RTCPeerConnection pc, RTCSessionDescription desc)
- {
- Debug.Log($"Answer from {GetName(pc)}:\n{desc.sdp}");
- Debug.Log($"{GetName(pc)} setLocalDescription start");
- var op = pc.SetLocalDescription(ref desc);
- yield return op;
- if (!op.IsError)
- {
- OnSetLocalSuccess(pc);
- }
- else
- {
- var error = op.Error;
- OnSetSessionDescriptionError(ref error);
- }
- var otherPc = GetOtherPc(pc);
- Debug.Log($"{GetName(otherPc)} setRemoteDescription start");
- var op2 = otherPc.SetRemoteDescription(ref desc);
- yield return op2;
- if (!op2.IsError)
- {
- OnSetRemoteSuccess(otherPc);
- }
- else
- {
- var error = op2.Error;
- OnSetSessionDescriptionError(ref error);
- }
- }
- private static void OnCreateSessionDescriptionError(RTCError error)
- {
- Debug.LogError($"Error Detail Type: {error.message}");
- }
- }
- }
|