集成SDK之前请先在Visual Studio创建您的项目,如果您已有C#项目,可直接集成SDK。
快速使用流程
1.发起呼叫
2.接听呼叫
<Window x:Name="MyWindow" x:Class="Application1.MainWindow"
<Grid >
<Border x:Name="cameraVideoCell" />
<Border x:Name="remoteVideoCell" />
</Grid>
</Window>
public partial class MainWindow : Window
{
private void MyWindow_CallConnected()
{
// show camera, when call connected:
cameraVideoCell.Child = mNemoSDK.GetVideoElement4Camera();
}
private void MyWindow_OnVideoStream(string videoSourceId)
{
// show remote video, when remote video received:
remoteVideoCell.Child = mNemoSDK.GetVideoElement(videoSourceId);
}
}
Sdk提供接口用于输入未压缩的音视频数据,以代替音视频采集设备的输入(包括第一路流的音视频和第二路流的音视频)