Click AI assistant in the bottom bar. | Enable AI real-time subtitles | View AI Real-Time Meeting Minutes |
![]() Loading… | ![]() Loading… | ![]() Loading… |
ConferenceSessionImpl.sharedInstance().isShowAISpeechToTextButton = true;
private String mTaskId; // Task ID after enabling AI transcriptionprivate String aiSecretId = "PLACEHOLDER"; // AI voice transcription IDprivate String aiSecretKey = "PLACEHOLDER"; // AI voice transcription keyprivate String roomId = "PLACEHOLDER"; // Room IDprivate int sdkAppId = 0L; // Your SDKAppIdprivate String sdkSecretKey = "PLACEHOLDER"; // Your SDKAppId keyprivate String robotUserId = "PLACEHOLDER"; // AI chatbot's userId in the room, which cannot be the same as other users' userIds in the roomprivate void startAITranscription() {Runnable startAITranscriptionRun = () -> {try {// Code leakage may lead to the leakage of aiSecretId and aiSecretKey, and threaten the security of all resources under the account.// The following code example is for reference only. It is recommended to use the key in a more secure way. Please see: https://cloud.tencent.com/document/product/1278/85305// Obtain the key at the official website console https://console.cloud.tencent.com/cam/capiCredential credential = new Credential(aiSecretId, aiSecretKey);TrtcClient client = new TrtcClient(credential, null);StartAITranscriptionRequest request = new StartAITranscriptionRequest();request.setRoomId(roomId);request.setRoomIdType(1L);request.setSdkAppId((long)sdkAppId);TranscriptionParams transcriptionParams = new TranscriptionParams();transcriptionParams.setUserId(robotUserId);transcriptionParams.setUserSig(GenerateTestUserSig.genTestUserSig(sdkAppId, robotUserId, sdkSecretKey));request.setTranscriptionParams(transcriptionParams);StartAITranscriptionResponse response = client.StartAITranscription(request);mTaskId = response.getTaskId();} catch (TencentCloudSDKException e) {e.printStackTrace();}};new Thread(startAITranscriptionRun).start();}
private var mTaskId: String? = null // Task ID after enabling AI transcriptionprivate val aiSecretId = "PLACEHOLDER" // AI voice transcription IDprivate val aiSecretKey = "PLACEHOLDER" // AI voice transcription keyprivate val roomId = "PLACEHOLDER" // Room IDprivate val sdkAppId = 0L // Your SDKAppIdprivate val sdkSecretKey = "PLACEHOLDER" // Your SDKAppId keyprivate val robotUserId = "PLACEHOLDER" // AI chatbot's userId in the room, which cannot be the same as other users' userIds in the roomprivate fun startAITranscription() {Thread {try {// Code leakage may lead to the leakage of aiSecretId and aiSecretKey, and threaten the security of all resources under the account.// The following code example is for reference only. It is recommended to use the key in a more secure way. Please see: https://cloud.tencent.com/document/product/1278/85305// Obtain the key at the official website console https://console.cloud.tencent.com/cam/capival credential = Credential(aiSecretId, aiSecretKey)val client = TrtcClient(credential, null)val request = StartAITranscriptionRequest()request.roomId = roomIdrequest.roomIdType = 1Lrequest.sdkAppId = sdkAppIdval transcriptionParams = TranscriptionParams()transcriptionParams.userId = robotUserIdtranscriptionParams.userSig = GenerateTestUserSig.genTestUserSig(sdkAppId, robotUserId, sdkSecretKey)request.transcriptionParams = transcriptionParamsval response = client.StartAITranscription(request)mTaskId = response?.taskId} catch (e: TencentCloudSDKException) {e.printStackTrace()}}.start()}
private void stopAITranscription() {Runnable stopAITranscriptionRun = () -> {try {Credential credential = new Credential(secretId, secretKey);TrtcClient client = new TrtcClient(credential, null);StopAITranscriptionRequest stopAITranscriptionRequest = new StopAITranscriptionRequest();stopAITranscriptionRequest.setTaskId(mTaskId);client.StopAITranscription(stopAITranscriptionRequest);} catch (TencentCloudSDKException e) {e.printStackTrace();}};new Thread(stopAITranscriptionRun).start();}
private fun stopAITranscription() {Thread {try {val credential = Credential(secretId, secretKey)val client = TrtcClient(credential, null)val stopAITranscriptionRequest = StopAITranscriptionRequest()stopAITranscriptionRequest.taskId = mTaskIdclient.StopAITranscription(stopAITranscriptionRequest)} catch (e: TencentCloudSDKException) {e.printStackTrace()}}.start()}