SDK 集成
1. 集成腾讯特效
2. 集成TEBeautyKit
3. 集成te_adapter_trtc
在 dependencies 中添加 te_adapter_trtc
库的依赖
dependencies{
...
implementation 'com.tencent.mediacloud:te_adapter_trtc:版本号'
}
下载 aar 文件(下载的是一个 zip 文件,解压即可得到 aar 文件)。 添加下载的 te_adapter_trtc_xxxx.aar
文件到 app 工程 libs
目录下。
打开 app 模块的 build.gradle
添加依赖引用:
dependencies{
...
implementation fileTree(dir: 'libs', include: ['*.jar','*.aar'])
}
SDK 使用
第一步:设置路径
TEBeautyKit.setResPath((new File(getFilesDir(), "xmagic_dir").getAbsolutePath()));
第二步:设置面板 JSON 文件
TEUIConfig.getInstance().setTEPanelViewRes("beauty_panel/beauty.json",null, "beauty_panel/lut.json", "beauty_panel/motions.json", "beauty_panel/makeup.json", "beauty_panel/segmentation.json");
注意:如果您不使用提供的美颜面板,请忽略这步操作。
第三步:复制美颜资源
将美颜资源复制到 第一步 中设置的路径下,一个版本只需要成功复制一次。 new Thread(() -> {
boolean result = TEBeautyKit.copyRes(MainActivity.this.getApplicationContext());
runOnUiThread(() -> {
if (result) {
saveCopyData();
}
teProgressDialog.dismiss();
checkLicense();
});
}).start();
第四步:鉴权
TEBeautyKit.setTELicense(this.getApplicationContext(),LicenseConstant.mXMagicLicenceUrl,LicenseConstant.mXMagicKey, (i, s) -> {
if (i == LicenseConstant.AUTH_STATE_SUCCEED) {
Intent intent = new Intent(MainActivity.this, ThirdBeautyActivity.class);
startActivity(intent);
} else {
Log.e(TAG, "te license check is failed,please checke ");
}
});
第五步:初始化 adapter 和添加面板
this.beautyAdapter = new TEBeautyTRTCAdapter();
this.beautyAdapter.notifyScreenOrientationChanged(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
this.beautyAdapter.notifyCameraChanged(isFront, this.isEncoderMirror);
private void initBeautyPanelView() {
RelativeLayout panelLayout = findViewById(R.id.live_pusher_bp_beauty_panel);
this.tePanelView = new TEPanelView(this);
if (lastParamList != null) {
this.tePanelView.setLastParamList(lastParamList);
}
this.tePanelView.showView(this);
panelLayout.addView(this.tePanelView);
}
注意:如果您不使用提供的面板,可以不创建TEPanelView
,美颜属性调用TEBeautyKit
的setEffect
设置美颜属性。
第六步:绑定美颜
this.beautyAdapter.bind(this, this.mTRTCCloud, new ITEBeautyAdapter.CallBack() {
@Override
public void onCreatedTEBeautyKit(TEBeautyKit beautyKit) {
mBeautyKit = beautyKit;
tePanelView.setupWithTEBeautyKit(mBeautyKit);
setTipListener(mBeautyKit);
setLastParam(mBeautyKit);
Log.e("beautyLiveAdapter", "onCreatedTEBeautyKit");
}
@Override
public void onDestroyTEBeautyKit() {
mBeautyKit = null;
Log.e("beautyLiveAdapter", "onDestroyTEBeautyKit");
}
});
第七步:参数变化通知 adapter
this.beautyAdapter.notifyCameraChanged(isFront, this.isEncoderMirror);
this.beautyAdapter.notifyScreenOrientationChanged(orientation);
第八步:销毁美颜
this.beautyAdapter.unbind();
第九步:恢复声音
this.mBeautyKit.onResume()
第十步:暂停声音
this.mBeautyKit.onPause()
本页内容是否解决了您的问题?