Recording phone conversations on Xiaomi smartphones is a useful feature, but often it is spoiled by an annoying beep. This can be a click at the beginning of the recording, periodic notifications about recording, or the system sound that is heard by the interlocutor. Depending on the model (Redmi Note 12, POCO X5, Mi 11) and the version of MIUI (12-14), the ways to turn off the sound differ โ somewhere you need to change the settings of the application, and somewhere you need to edit the system files.
In this article, we will discuss all the current methods, including official (via the phone menu) and alternative (using ADB or third-party applications), and pay special attention to the nuances for different versions of firmware and models, since since MIUI 13 Global, Xiaomi has limited access to some recording settings due to legal requirements in certain countries. If you encounter a problem that the sound of the recording is not turned off by standard methods, here you will find a solution.
Why is there a sound when recording a conversation?
The sound signals when recording a call on Xiaomi appear for three main reasons:
- ๐ Legal requirements: in some countries (for example, India, EU) it is mandatory to notify the interlocutor of the recording. MIUI default-on.
- ๐ฑ Dictator function: the standard com.miui.voiceassist application can play a click at the beginning/end of a recording.
- ๐ System notifications: MIUI can duplicate the sound of the beginning of the recording, even if the recorder is disabled.
On Redmi and POCO with MIUI 12-14, the sound can come from a variety of sources:
- ๐ค Microphone click (hardware artifact upon recording activation).
- ๐ข Voice notification ("Recording has begun" in some regional firmware).
- ๐ Notification sound (if recording is made via "Call Record" in phone settings).
โ ๏ธ Note: On smartphones with MIUI China (Chinese firmware) recording sound is often missing by default, but it cannot be disabled manually - this is due to local privacy laws.
Method 1: Turn off the sound in the standard Xiaomi voice recorder
If you use the built-in Dictator app (com.miui.voiceassist) to record conversations, check its settings first:
- Open the Dictaphone app (mic icon).
- Tap it on three points (โฎ) top-right โ Settings.
- Find the item "Record Sound" or "Record Notices" (name depends on the version of MIUI).
- Turn off the sliders: ๐ The sound of the recording ๐ Sound of recording ending ๐ Voice prompts (if any)
On MIUI 14, the path may differ: Settings โ Applications โ Recorder โ Notifications โ Recording Sound. If there is no point, then the sound is controlled at the system level (see Method 3).
Appendix opens"|Sound settings checked|All audio notifications are disabled|Reboot the phone to apply changes-->
โ ๏ธ Note: On some models (Redmi 10, POCO M4 Pro) after the sound in the recorder is turned off, it may appear again after the update MIUI. In this case, you will need to reset the application settings or use ADB-team.
Method 2: Configure call recording in phone settings
If the recording is not conducted through the recorder, but through the built-in function "Recording calls" in the phone settings, the sound is controlled separately:
- Go to Settings โ Applications โ Phone โ Recording calls.
- Slip on "Record Settings" (or "Additional").
- Turn off the options: ๐ Notification of recording (sound signal) ๐ฃ๏ธ Voice alert (if any)
Save the changes and restart the phone.
On MIUI 13 Global and later, this section can be hidden to open:
Settings โ About Phone โ MIUI version (tap 7 times to unlock Developer Mode)
Settings โ Additional โ Developer Mode โ Enable โShow Call RecordingโWhat to do if there is no "recording" item?
Method 3: Disable system recording sounds via ADB
If the audio is not turned off via the menu, it can be locked at the system level using the Android Debug Bridge (ADB), which works on all versions of MIUI, but requires the phone to be connected to a computer.
Step-by-step:
- Download ADB Tools and unpack the archive.
- Turn on your phone Debugging over USB: Settings โ About Phone โ MIUI version (tap 7 times) โ Developer settings โ Debugging over USB.
- Connect the phone to the PC and confirm the debugging permission.
- Open the command prompt (Windows) or terminal (Mac/Linux) in the folder with ADB.
- Follow the commands in turn: adb shell settings put global call_recording_notification 0 settings put global call_recording_tone 0
- Reboot your phone: adb reboot.
How to set up:
- Install the app from Google Play.
- Open the app settings and find the Notifications or Sounds section.
- Turn it off: ๐ Beginning/end sound of recording ๐ข Voice prompts ๐ System notifications (if any)
Settings โ Applications โ [Application Name] โ Notifications
MIUI 13/14 may require third-party recording applications to:
Settings โ Special permissions โ Call recording โ Select the application๐ก
Before installing a third-party app, check its rating and reviews โ some programs may contain ads or collect data.
Method 5: Manual removal of system sounds (for advanced)
If the recording sound is stored in system files, it can be manually removed, a method that requires root rights or access to the file system via ADB.
Instructions:
- Connect your phone to your PC and open ADB.
- Run the command to search for audio files: adb shell su find /system -name "record" -type f
- Find files with recording sounds (usually in /system/media/audio/notifications or /system/media/audio/ui).
- Delete or rename them: mv /system/media/audio/ui/CallRecordStart.ogg /system/media/audio/ui/CallRecordStart.ogg.bak
- Reboot the phone.
๐ก
On Xiaomi with a Snapdragon processor (e.g., POCO F4), recording sound is most often programmatic and is disabled through settings. On models with MediaTek (Redmi 9A), ADB or root may be required.