tencent cloud

Tencent Real-Time Communication

Release Notes and Announcements
Release Notes
Recent Product Announcement
TRTC Live (TUILiveKit) Product Launch Announcement
TRTC Conference Official Editions Launched
The commercial version of Conference is coming soon
Terms and Conditions Applicable to $9.9 Starter Package
Rules for the "First Subscription $100 Discount" Promotion
Announcement on the Start of Beta Testing for Multi-person Audio and Video Conference
TRTC Call Official Editions Launched
License Required for Video Playback in New Version of LiteAV SDK
TRTC to Offer Monthly Packages
Product Introduction
Overview
Concepts
Features
Strengths
Use Cases
Performance Statistics
Tencent RTC Quickplay: Experience Ultimate Real-Time Audio and Video Interaction!
Purchase Guide
Billing Overview
Free Minutes
Monthly subscription
Pay-as-you-go
TRTC Overdue and Suspension Policy
FAQs
Refund Instructions
User Tutorial
Free Demo
Call
Overview
Activate the Service
Run Demo
Integration
Offline Call Push
Conversational Chat
On-Cloud Recording
AI Noise Reduction
UI Customization
Calls integration to Chat
Additional Features
No UI Integration
Server APIs
Client APIs
Solution
ErrorCode
Release Notes
FAQs
Conference
Overview(TUIRoomKit)
Activate the Service (TUIRoomKit)
Run Demo(TUIRoomKit)
Integration(TUIRoomKit)
Screen Sharing (TUIRoomKit)
Schedule a meeting (TUIRoomKit)
In-meeting Call (TUIRoomKit)
UI Customization(TUIRoomKit)
Virtual Background (TUIRoomKit)
Conference Control (TUIRoomKit)
Cloud Recording (TUIRoomKit)
AI Noise Reduction (TUIRoomKit)
In-Conference Chat (TUIRoomKit)
Robot Streaming (TUIRoomKit)
Enhanced Features (TUIRoomKit)
Client APIs (TUIRoomKit)
Server APIs (TUIRoomKit)
FAQs (TUIRoomKit)
Error Code (TUIRoomKit)
SDK Update Log (TUIRoomKit)
Live
Billing of Video Live Component
Overview
Activating the Service (TUILiveKit)
Run Demo
No UI Integration
UI Customization
Live Broadcast Monitoring
Video Live Streaming
Voice Chat Room
Advanced Features
Client APIs
Server APIs
Error Codes
Release Notes
FAQs
RTC Engine
Activate Service
SDK Download
API Examples
Usage Guidelines
API Reference Manual
Advanced Features
AI Integration
Overview
Configure MCP Server
Install Skills
Integration Guide
FAQ
RTC RESTFUL API
History
Introduction
API Category
Room Management APIs
Stream mixing and relay APIs
On-cloud recording APIs
Data Monitoring APIs
Pull stream Relay Related interface
Web Record APIs
AI Service APIs
Cloud Slicing APIs
Cloud Moderation APIs
Making API Requests
Call Quality Monitoring APIs
Usage Statistics APIs
Data Types
Appendix
Error Codes
Console Guide
Application Management
Package Management
Usage Statistics
Monitoring Dashboard
Development Assistance
Solution
Real-Time Chorus
FAQs
Migration Guide
Billing
Features
UserSig
Firewall Restrictions
How to Downsize Installation Package
Android and iOS
Web
Flutter
Electron
TRTCCalling for Web
Audio and Video Quality
Others
Legacy Documentation
RTC RoomEngine SDK(Old)
Integrating TUIRoom (Web)
Integrating TUIRoom (Android)
Integrating TUIRoom (iOS)
Integrating TUIRoom (Flutter)
Integrating TUIRoom (Electron)
TUIRoom APIs
On-Cloud Recording and Playback (Old)
RTC Analytics Monthly Packages (Previous Version)
Protocols and Policies
Compliance
Security White Paper
Notes on Information Security
Service Level Agreement
Apple Privacy Policy: PrivacyInfo.xcprivacy
TRTC Policy
Privacy Policy
Data Processing And Security Agreement
Glossary

Android&iOS&Windows&Mac

PDF
Focus Mode
Font Size
Last updated: 2023-09-28 11:53:14

Overview

Given that it is difficult for users to detect device problems during a call, we recommend that you test devices such as cameras and mics before a video call.

Supported Platforms

iOS
Android
macOS
Windows
Electron
Web
×
×
✓ (Web)

Testing Camera

You can use the startCameraDeviceTestInView API of TRTCCloud to test a camera and can use the setCurrentCameraDevice API to switch cameras during testing.
macOS
Windows (C++)
Windows (C#)
// Open the camera testing page, on which you can preview camera images and switch cameras.
- (IBAction)startCameraTest:(id)sender {
// Start camera testing. `cameraPreview` is `NSView` on macOS or `UIView` on iOS.
[self.trtcCloud startCameraDeviceTestInView:self.cameraPreview];
}

// Close the camera testing page.
- (void)windowWillClose:(NSNotification *)notification{
// Stop camera testing.
[self.trtcCloud stopCameraDeviceTest];
}

// Start camera testing. Pass in the control handle that renders video.
void TRTCMainViewController::startTestCameraDevice(HWND hwnd)
{
trtcCloud->startCameraDeviceTest(hwnd);
}

// Stop camera testing.
void TRTCMainViewController::stopTestCameraDevice()
{
trtcCloud->stopCameraDeviceTest();
}

// Start camera testing. Pass in the control handle that renders video.
private void startTestCameraDevice(Intptr hwnd)
{
mTRTCCloud.startCameraDeviceTest(hwnd);
}

// Stop camera testing.
private void stopTestCameraDevice()
{
mTRTCCloud.stopCameraDeviceTest();
}


Testing Mic

You can use the startMicDeviceTest API of TRTCCloud to measure mic volume in real time. The result is returned via a callback.
macOS
Windows (C++)
Windows (C#)
// Sample code for mic testing
-(IBAction)micTest:(id)sender {
NSButton *btn = (NSButton *)sender;
if (btn.state == 1) {
// Start mic testing.
__weak __typeof(self) wself = self;
[self.trtcCloud startMicDeviceTest:500 testEcho:^(NSInteger volume) {
dispatch_async(dispatch_get_main_queue(), ^{
// Refresh the mic volume bar.
[wself _updateInputVolume:volume];
});
}];
btn.title = @"Stop test";
}
else{
// Stop mic testing.
[self.trtcCloud stopMicDeviceTest];
[self _updateInputVolume:0];
btn.title = @"Start test";
}
}

// Sample code for mic testing
void TRTCMainViewController::startTestMicDevice()
{
// Set the interval for triggering the volume callback and listen for the `onTestMicVolume` callback. In the sample, the interval is set to 500 ms.
uint32_t interval = 500;
// Start mic testing.
trtcCloud->startMicDeviceTest(interval);
}

// Stop mic testing.
void TRTCMainViewController::stopTestMicDevice()
{
trtcCloud->stopMicDeviceTest();
}

// Sample code for mic testing
private void startTestMicDevice()
{
// Set the interval for triggering the volume callback and listen for the `onTestMicVolume` callback. In the sample, the interval is set to 500 ms.
uint interval = 500;
// Start mic testing.
mTRTCCloud.startMicDeviceTest(interval);
}

// Stop mic testing.
private void stopTestMicDevice()
{
mTRTCCloud.stopMicDeviceTest();
}


Testing Speaker

You can use the startSpeakerDeviceTest API of TRTCCloud to test whether a speaker works properly by playing a default MP3 file.
macOS
Windows (C++)
Windows (C#)
// Sample code for speaker testing
// Take an NSButton for example. In `xib`, set the title of the button in the on and off state to "Stop Test" and "Start Test".
- (IBAction)speakerTest:(NSButton *)btn {
NSString *path = [[NSBundle mainBundle] pathForResource:@"test-32000-mono" ofType:@"mp3"];
if (btn.state == NSControlStateValueOn) {
// Click "Start Test".
__weak __typeof(self) wself = self;
[self.trtcEngine startSpeakerDeviceTest:path onVolumeChanged:^(NSInteger volume, BOOL playFinished) {
// The subsequent steps involve the UI and need to be executed in the main queue.
dispatch_async(dispatch_get_main_queue(), ^{
// `_updateOutputVolume` means updating the speaker volume indicator on the UI.
[wself _updateOutputVolume:volume];
if (playFinished) {
// Set the button status to "Start Test" after playback is completed.
sender.state = NSControlStateValueOff;
}
});
}];
} else {
// Click "Stop Test".
[self.trtcEngine stopSpeakerDeviceTest];
[self _updateOutputVolume:0];
}
}

// Update the speaker volume indicator.
- (void)_updateOutputVolume:(NSInteger)volume {
// `speakerVolumeMeter` is `NSLevelIndicator`.
self.speakerVolumeMeter.doubleValue = volume / 255.0 * 10;
}

// Sample code for speaker testing
void TRTCMainViewController::startTestSpeakerDevice(std::string testAudioFilePath)
{
// `testAudioFilePath` is the absolute path of the audio file (in WAV or MP3 format) and must be a UTF-8-encoded string.
// Listen for the `onTestSpeakerVolume` callback to get the speaker volume.
trtcCloud->startSpeakerDeviceTest(testAudioFilePath.c_str());
}

// Stop speaker testing.
void TRTCMainViewController::stopTestSpeakerDevice() {
trtcCloud->stopSpeakerDeviceTest();
}

// Sample code for speaker testing
private void startTestSpeakerDevice(string testAudioFilePath)
{
// `testAudioFilePath` is the absolute path of the audio file (in WAV or MP3 format) and must be a UTF-8-encoded string.
// Listen for the `onTestSpeakerVolume` callback to get the speaker volume.
mTRTCCloud.startSpeakerDeviceTest(testAudioFilePath);
}

// Stop speaker testing.
private void stopTestSpeakerDevice() {
mTRTCCloud.stopSpeakerDeviceTest();
}


Help and Support

Was this page helpful?

Help us improve! Rate your documentation experience in 5 mins.

Feedback