Pain Point and Solution
It is often necessary to share system audio in scenarios such as screen sharing, but the sound cards of Mac computers do not allow the capturing of system audio, making it impossible to share system audio on Mac computers. To solve this problem, TRTC has introduced a feature that records system audio on Mac computers. See below for details on how to enable the feature.
Directions
Step 1. Integrate the TRTCPrivilegedTask library
The TRTC SDK uses the TRTCPrivilegedTask library to get root access and install the virtual sound card plugin TRTCAudioPlugin.driver
in the system directory /Library/Audio/Plug-Ins/HAL
. Integration via CocoaPods
1. Open the Podfile
file in the root directory of your project and add the following content:
platform :osx, '10.10'
target 'Your Target' do
pod 'TRTCPrivilegedTask', :podspec => 'https://pod-1252463788.cos.ap-guangzhou.myqcloud.com/liteavsdkspec/TRTCPrivilegedTask.podspec'
end
2. Run the pod install
command to install the TRTCPrivilegedTask library.
explain:
If you cannot find a Podfile file in the directory, run the pod init command to create one and then add the above content.
2. Decompress the downloaded file, open your Xcode project, and import the file to the project.
3. Select the target to run, select Build Phases, expand Link Binary with Libraries, click +, and add the dependent library libPrivilegedTask.a
.
Step 2. Disable App Sandbox
In the entitlements file of the app, delete App Sandbox.
Step 3. Package the virtual sound card plugin
After you integrate the TRTCPrivilegedTask library and disable App Sandbox, when you use the system audio recording feature for the first time, the SDK will download the virtual sound card plugin from the internet and install it. To accelerate this process, you can package the virtual sound card plugin TRTCAudioPlugin.driver
in the PlugIns
directory of TXLiteAVSDK_TRTC_Mac.framework
to the resources directory of the app's bundle, as shown below.
Alternatively, copy the file to the PlugIns
directory of the app's bundle.
Step 4. Start capturing system audio
TRTCCloud *trtcCloud = [TRTCCloud sharedInstance];
[_trtc startLocalAudio];
[trtcCloud startSystemAudioLoopback];
notice
After the TRTCPrivilegedTask library is integrated and App Sandbox disabled, when you call startSystemAudioLoopback
for the first time, the SDK will request root access.After being granted root access, the SDK will start installing the virtual sound card plugin to the computer automatically.
Step 5. Stop capturing system audio
TRTCCloud *trtcCloud = [TRTCCloud sharedInstance];
[trtcCloud stopSystemAudioLoopback];
Step 6. Set the volume of system audio capturing
TRTCCloud *trtcCloud = [TRTCCloud sharedInstance];
[trtcCloud setSystemAudioLoopbackVolume:80];
Summary
TRTC records system audio on Mac computers using the virtual sound card plugin TRTCAudioPlugin.driver
. For the plugin to work, you need to copy it to the system directory /Library/Audio/Plug-Ins/HAL
and restart the audio service. You can check whether the plugin is installed successfully using the Audio MIDI Setup app, which can be found in the Other
folder of Launchpad. The presence of a device named "TRTC Audio Device" in the device list of the app indicates that the plugin is installed successfully.
The purpose of integrating the TRTCPrivilegedTask library and disabling App Sandbox is for the SDK to get root access so as to install the virtual sound card plugin; otherwise it cannot automatically install the plugin. However, if a virtual sound card is already installed in the system, you can use the system audio recording feature without integrating the TRTCPrivilegedTask library or disabling App Sandbox. explain
You can also manually install a virtual sound card to enable the feature.
1. Copy TRTCAudioPlugin.driver
in the PlugIns
directory of TXLiteAVSDK_TRTC_Mac.framework
to the system directory /Library/Audio/Plug-Ins/HAL
.
2. Restart the system audio service.
sudo cp -R TXLiteAVSDK_TRTC_Mac.framework/PlugIns/TRTCAudioPlugin.driver /Library/Audio/Plug-Ins/HAL
sudo kill -9 `ps ax|grep 'coreaudio[a-z]' |awk '{print $1}'`
Notes
Disabling App Sandbox will change the user paths obtained in your app.Directories returned via methods such as the calling of NSSearchPathForDirectoriesInDomains
will change from sandbox directories to user directories. For example, ~/Documents
and ~/Library
will become /Users/UsernameDocuments
and /Users/Username/Library
.
You may be unable to release your app to the Mac App Store after integrating the TRTCPrivilegedTask library.App Sandbox must be disabled for the SDK to get root access and automatically install a virtual sound card. This may cause your app to be rejected by the Mac App Store. For details, see App Store Review Guidelines.If you need to release your app to the Mac App Store or want to use the Sandbox feature, consider manually installing a virtual sound card.
Was this page helpful?