123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- using System;
- using UnityEngine;
- using UnityEngine.UI;
- using UnityEngine.Serialization;
- using Agora.Rtc;
- using Agora.Util;
- using Logger = Agora.Util.Logger;
- using RingBuffer;
- namespace Agora_RTC_Plugin.API_Example.Examples.Advanced.ProcessAudioRawData
- {
- public class ProcessAudioRawData : MonoBehaviour
- {
- [FormerlySerializedAs("appIdInput")]
- [SerializeField]
- private AppIdInput _appIdInput;
- [Header("_____________Basic Configuration_____________")]
- [FormerlySerializedAs("APP_ID")]
- [SerializeField]
- private string _appID = "";
- [FormerlySerializedAs("TOKEN")]
- [SerializeField]
- private string _token = "";
- [FormerlySerializedAs("CHANNEL_NAME")]
- [SerializeField]
- private string _channelName = "";
- public Text LogText;
- internal Logger Log;
- internal IRtcEngine RtcEngine;
- private const int CHANNEL = 1;
- private const int PULL_FREQ_PER_SEC = 100;
- public const int SAMPLE_RATE = 32000; // this should = CLIP_SAMPLES x PULL_FREQ_PER_SEC
- public const int CLIP_SAMPLES = 320;
- internal int _count;
- internal int _writeCount;
- internal int _readCount;
- internal RingBuffer<float> _audioBuffer;
- internal AudioClip _audioClip;
- private bool _startSignal;
- void Start()
- {
- LoadAssetData();
- if (CheckAppId())
- {
- InitEngine();
- JoinChannel();
- var aud = GetComponent<AudioSource>();
- if (aud == null)
- {
- gameObject.AddComponent<AudioSource>();
- }
- SetupAudio(aud, "externalClip");
- }
- }
- // Update is called once per frame
- void Update()
- {
- PermissionHelper.RequestMicrophontPermission();
- PermissionHelper.RequestCameraPermission();
- }
- bool CheckAppId()
- {
- Log = new Logger(LogText);
- return Log.DebugAssert(_appID.Length > 10, "Please fill in your appId in API-Example/profile/appIdInput.asset");
- }
- //Show data in AgoraBasicProfile
- [ContextMenu("ShowAgoraBasicProfileData")]
- public void LoadAssetData()
- {
- if (_appIdInput == null) return;
- _appID = _appIdInput.appID;
- _token = _appIdInput.token;
- _channelName = _appIdInput.channelName;
- }
- void InitEngine()
- {
- RtcEngine = Agora.Rtc.RtcEngine.CreateAgoraRtcEngine();
- UserEventHandler handler = new UserEventHandler(this);
- RtcEngineContext context = new RtcEngineContext(_appID, 0,
- CHANNEL_PROFILE_TYPE.CHANNEL_PROFILE_LIVE_BROADCASTING,
- AUDIO_SCENARIO_TYPE.AUDIO_SCENARIO_DEFAULT);
- RtcEngine.Initialize(context);
- RtcEngine.InitEventHandler(handler);
- RtcEngine.RegisterAudioFrameObserver(new AudioFrameObserver(this), OBSERVER_MODE.RAW_DATA);
- RtcEngine.SetPlaybackAudioFrameParameters(SAMPLE_RATE, 1, RAW_AUDIO_FRAME_OP_MODE_TYPE.RAW_AUDIO_FRAME_OP_MODE_READ_ONLY, 1024);
- }
- void JoinChannel()
- {
- RtcEngine.SetClientRole(CLIENT_ROLE_TYPE.CLIENT_ROLE_BROADCASTER);
- RtcEngine.EnableAudio();
- RtcEngine.EnableVideo();
- RtcEngine.JoinChannel(_token, _channelName, "");
- }
- private void OnDestroy()
- {
- Debug.Log("OnDestroy");
- if (RtcEngine != null)
- {
- RtcEngine.UnRegisterAudioFrameObserver();
- RtcEngine.InitEventHandler(null);
- RtcEngine.LeaveChannel();
- RtcEngine.Dispose();
- }
- }
- void SetupAudio(AudioSource aud, string clipName)
- {
- // //The larger the buffer, the higher the delay
- var bufferLength = SAMPLE_RATE / PULL_FREQ_PER_SEC * CHANNEL * 100; // 1-sec-length buffer
- _audioBuffer = new RingBuffer<float>(bufferLength, true);
- _audioClip = AudioClip.Create(clipName,
- CLIP_SAMPLES,
- CHANNEL, SAMPLE_RATE, true,
- OnAudioRead);
- aud.clip = _audioClip;
- aud.loop = true;
- aud.Play();
- }
- private void OnAudioRead(float[] data)
- {
- for (var i = 0; i < data.Length; i++)
- {
- lock (_audioBuffer)
- {
- if (_audioBuffer.Count > 0)
- {
- data[i] = _audioBuffer.Get();
- _readCount += 1;
- }
- }
- }
- Debug.LogFormat("buffer length remains: {0}", _writeCount - _readCount);
- }
- internal static float[] ConvertByteToFloat16(byte[] byteArray)
- {
- var floatArray = new float[byteArray.Length / 2];
- for (var i = 0; i < floatArray.Length; i++)
- {
- floatArray[i] = BitConverter.ToInt16(byteArray, i * 2) / 32768f; // -Int16.MinValue
- }
- return floatArray;
- }
- }
- #region -- Agora Event ---
- internal class UserEventHandler : IRtcEngineEventHandler
- {
- private readonly ProcessAudioRawData _agoraVideoRawData;
- internal UserEventHandler(ProcessAudioRawData agoraVideoRawData)
- {
- _agoraVideoRawData = agoraVideoRawData;
- }
- public override void OnError(int err, string msg)
- {
- _agoraVideoRawData.Log.UpdateLog(string.Format("OnError err: {0}, msg: {1}", err, msg));
- }
- public override void OnJoinChannelSuccess(RtcConnection connection, int elapsed)
- {
- int build = 0;
- _agoraVideoRawData.Log.UpdateLog(string.Format("sdk version: ${0}",
- _agoraVideoRawData.RtcEngine.GetVersion(ref build)));
- _agoraVideoRawData.Log.UpdateLog(
- string.Format("OnJoinChannelSuccess channelName: {0}, uid: {1}, elapsed: {2}",
- connection.channelId, connection.localUid, elapsed));
- }
- public override void OnRejoinChannelSuccess(RtcConnection connection, int elapsed)
- {
- _agoraVideoRawData.Log.UpdateLog("OnRejoinChannelSuccess");
- }
- public override void OnLeaveChannel(RtcConnection connection, RtcStats stats)
- {
- _agoraVideoRawData.Log.UpdateLog("OnLeaveChannel");
- }
- public override void OnClientRoleChanged(RtcConnection connection, CLIENT_ROLE_TYPE oldRole,
- CLIENT_ROLE_TYPE newRole)
- {
- _agoraVideoRawData.Log.UpdateLog("OnClientRoleChanged");
- }
- public override void OnUserJoined(RtcConnection connection, uint uid, int elapsed)
- {
- _agoraVideoRawData.Log.UpdateLog(string.Format("OnUserJoined uid: ${0} elapsed: ${1}", uid,
- elapsed));
- }
- public override void OnUserOffline(RtcConnection connection, uint uid, USER_OFFLINE_REASON_TYPE reason)
- {
- _agoraVideoRawData.Log.UpdateLog(string.Format("OnUserOffLine uid: ${0}, reason: ${1}", uid,
- (int)reason));
- }
- }
- internal class AudioFrameObserver : IAudioFrameObserver
- {
- private readonly ProcessAudioRawData _agoraAudioRawData;
- private AudioParams _audioParams;
- internal AudioFrameObserver(ProcessAudioRawData agoraAudioRawData)
- {
- _agoraAudioRawData = agoraAudioRawData;
- _audioParams = new AudioParams();
- _audioParams.sample_rate = 16000;
- _audioParams.channels = 2;
- _audioParams.mode = RAW_AUDIO_FRAME_OP_MODE_TYPE.RAW_AUDIO_FRAME_OP_MODE_READ_ONLY;
- _audioParams.samples_per_call = 1024;
- }
- public override bool OnRecordAudioFrame(string channelId, AudioFrame audioFrame)
- {
- Debug.Log("OnRecordAudioFrame-----------");
- return true;
- }
- public override bool OnPlaybackAudioFrame(string channelId, AudioFrame audioFrame)
- {
- Debug.Log("OnPlaybackAudioFrame-----------");
- if (_agoraAudioRawData._count == 1)
- {
- Debug.LogWarning("audioFrame = " + audioFrame);
- }
- var floatArray = ProcessAudioRawData.ConvertByteToFloat16(audioFrame.RawBuffer);
- lock (_agoraAudioRawData._audioBuffer)
- {
- _agoraAudioRawData._audioBuffer.Put(floatArray);
- _agoraAudioRawData._writeCount += floatArray.Length;
- _agoraAudioRawData._count++;
- }
- return true;
- }
-
- public override int GetObservedAudioFramePosition()
- {
- Debug.Log("GetObservedAudioFramePosition-----------");
- return (int)(AUDIO_FRAME_POSITION.AUDIO_FRAME_POSITION_PLAYBACK |
- AUDIO_FRAME_POSITION.AUDIO_FRAME_POSITION_RECORD |
- AUDIO_FRAME_POSITION.AUDIO_FRAME_POSITION_BEFORE_MIXING |
- AUDIO_FRAME_POSITION.AUDIO_FRAME_POSITION_MIXED);
- }
- public override AudioParams GetPlaybackAudioParams()
- {
- Debug.Log("GetPlaybackAudioParams-----------");
- return this._audioParams;
- }
- public override AudioParams GetRecordAudioParams()
- {
- Debug.Log("GetRecordAudioParams-----------");
- return this._audioParams;
- }
- public override AudioParams GetMixedAudioParams()
- {
- Debug.Log("GetMixedAudioParams-----------");
- return this._audioParams;
- }
- public override bool OnPlaybackAudioFrameBeforeMixing(string channel_id,
- uint uid,
- AudioFrame audio_frame)
- {
- Debug.Log("OnPlaybackAudioFrameBeforeMixing-----------");
- return false;
- }
- public override bool OnPlaybackAudioFrameBeforeMixing(string channel_id,
- string uid,
- AudioFrame audio_frame)
- {
- Debug.Log("OnPlaybackAudioFrameBeforeMixing2-----------");
- return false;
- }
- }
- #endregion
- }
|