How to completely remove screen recording on Xiaomi: instructions for all models

Screen recording on Xiaomi, Redmi or POCO smartphones is a convenient feature for creating gameplay, teaching videos or saving important moments. But after shooting, many people face the problem of where to find the saved file, how to delete it, and why sometimes standard methods do not work. Unlike screenshots that are stored in a separate folder, screen videos can be โ€œhiddenโ€ in different parts of memory, and their removal requires a special approach.

In this article, we will look at all possible ways to delete screen recordings, from basic to advanced, including cleaning through file manager, gallery, cloud services and even resetting. We will focus on hidden MIUI folders, where tails may remain after deletion, and explain why some files are not deleted by standard methods. If you are using Xiaomi 12T, Redmi Note 11 or POCO F4, this will be suitable for all versions of MIUI 12-14.

Where screen recordings are stored on Xiaomi

By default, screen video recordings are saved in one of three folders, depending on the firmware version and device model:

  • ๐Ÿ“ /storage/emulated/0/Movies/ScreenRecordings/ โ€” standard-position MIUI 12โ€“14.
  • ๐Ÿ“ /storage/emulated/0/DCIM/Screenshots/ โ€” Sometimes the recordings come with screenshots (especially on older versions).
  • ๐Ÿ“ /storage/emulated/0/Pictures/ScreenRecord/ โ€” Alternative path for some models POCO.

If you have used third-party recording applications (such as AZ Screen Recorder or DU Recorder), files may be stored in the folders of these programs: /Android/data/[name packet app]/files/. To find them, open Files โ†’ Categories โ†’ Video and sort by date of creation.

On some devices (such as Xiaomi 13 Pro), the recordings are automatically duplicated in Google Photos or Mi Cloud, which means that even after deleting from the phone, a copy can remain in the cloud.

๐Ÿ“Š Where do you usually look for screen recordings?
In the Gallery.
At the File Manager.
In the cloud storage.
I don't know where to look.

The easiest method is to use the built-in Gallery app (Google Photos or Mi Gallery, depending on the model).

  1. Open the Gallery app.
  2. Go to Videos or Albums โ†’ Screen recordings (the title may vary).
  3. Find the right file and tap it to view it.
  4. Click on the basket icon (๐Ÿ—‘๏ธ) Or select Remove from the menu.
  5. Confirm the action by pressing OK.

If the video is not displayed in the Gallery but you are sure that the recording was made, check the display settings:

  1. In the Gallery, click three dots (โ‹ฎ) โ†’ Settings.
  2. Select Show Hidden Files or Show System Folders.
  3. Update the file list (pull the screen down).

Synchronization with the cloud is disabled

File not hidden by system

Gallery Updated to the latest version

The folder with the records is not password protected-->

โš ๏ธ Note: If you use Google Photos, deleting the application will result in synchronous erasure of the file from the cloud. To save a copy, first export the video to your computer or other storage.

Method 2: Delete via File Manager

If the Gallery does not show the entry, try to manually delete it through Files (standard MIUI manager):

  1. Open the Files app (folder icon).
  2. Go to Categories โ†’ Video or Device โ†’ Internal Memory.
  3. Find the Movies/ScreenRecordings folder (or alternative paths from the first section).
  4. Long press on the file โ†’ select Delete.
  5. Confirm the action.

If the folder is not displayed, turn on the display of hidden files:

  1. In Files, click three dots (โ‹ฎ) โ†’ Settings.
  2. Activate the option to show hidden files.
  3. Go back to the root directory and check the Movies or DCIM folders.
folderWayWhen used
ScreenRecordings/Movies/ScreenRecordings/Standard location for MIUI 13-14
Screenshots/DCIM/Screenshots/Older versions of MIUI or Quick Ball recordings
ScreenRecord/Pictures/ScreenRecord/POCO devices or custom firmware
Android/data/.../Android/data/[app_package]/Recordings through third-party applications (e.g. AZ Recorder)

โš ๏ธ Note: If you attempt to delete an error "File is used by another application", close any programs that may block it (for example, a video player or editor). โ†’ Annexes โ†’ Initiated to forcibly stop the process.

๐Ÿ’ก

If the record is not deleted, try renaming the file (e.g. adding " old" at the end) and then trying again.

Method 3: Cleaning through cloud services

Many Xiaomi users automatically sync media files to Mi Cloud or Google Photos. If you deleted a post locally but it is still available in the cloud, follow these steps:

For Mi Cloud:

  1. Open the Mi Cloud app (or go to i.mi.com).
  2. Sign in with the same account as on your phone.
  3. Go to the Gallery section โ†’ Video.
  4. Find the screen recording, highlight it and press Delete.
  5. Confirm the deletion and clear the Recycle Bin (files are stored there for 30 days).

For Google Photos:

  1. Open Google Photos.
  2. In the Library โ†’ Video section, find the file you want.
  3. Tap it on three points (โ‹ฎ) โ†’ Remove from the device (if you only need local removal) or Remove from anywhere (for complete erasure).
  4. Clean the basket in the side menu.

If youโ€™re not sure if your device is synced to the cloud, check your settings:

  • ๐Ÿ”„ Settings โ†’ Accounts and synchronization โ†’ Mi Cloud โ†’ Synchronization of the gallery.
  • ๐Ÿ”„ Settings โ†’ Google โ†’ Backup โ†’ Backup Google Photos.
What if the record is deleted but takes up space?
Sometimes, after deleting a file, the system doesn't immediately release the memory, and this is due to the MIUI caching. To force the cache to clear: Go to Settings โ†’ Storage. Click Clear Cache (bottom of the screen). Reboot the device. If the problem persists, use Files by Google to clean the garbage deep.

Method 4: Forced removal via ADB (for power users)

If the record is not deleted by standard methods (e.g., due to a file system failure or MIUI limitations), you can use ADB (Android Debug Bridge), which requires connecting the phone to your computer and basic command line knowledge.

You'll need:

  • ๐Ÿ–ฅ๏ธ A computer with installed Xiaomi drivers and ADB Tools.
  • ๐Ÿ“ฑ Included debugging by USB on the phone (Settings) โ†’ The phone. โ†’ Version. MIUI โ†’ 7 times tap to activate the developer mode, then Settings โ†’ Additionally. โ†’ For developers โ†’ Debugging by USB).
  • ๐Ÿ”Œ USB-cable (preferably original).

Step-by-step:

  1. Connect the phone to the PC and confirm the debugging permission.
  2. Open the command line (Windows) or terminal (macOS/Linux) in the adb folder.
  3. Enter the command to check the connection: Adb devices should display the name of your device.
  4. Find the path to the file (e.g. /sdcard/Movies/ScreenRecordings/video.mp4).
  5. Delete the file by command: adb shell rm -f "/sdcard/Movies/ScreenRecordings/video.mp4"

If the path contains gaps, use quotes:

adb shell rm -f "/sdcard/My Folder/record.mp4"

โš ๏ธ Attention: Command rm -f Deletes the file irrevocably, bypassing the shopping cart. Make sure you point the right path - an error can lead to the loss of other data.

๐Ÿ’ก

ADB is a powerful tool, but it requires caution. Never use rm -rf / or similar commands, it will lead to a complete system reset!

Method 5: Resetting settings (extreme case)

If the screen recording is not deleted by any method and takes up a critical place, you have to reset to factory settings, which erases all the data from the device, so use it only as a last resort.

How to reset:

  1. Back up your important data (Settings โ†’ About Phone โ†’ Backup).
  2. Go to Settings โ†’ Additional โ†’ Recovery and Reset.
  3. Select Settings Reset.
  4. Confirm the action and wait for the reboot.

After discharge:

  • ๐Ÿ”„ The device will return to the state of โ€œout of the boxยป.
  • ๐Ÿ“ฅ All screen recordings, photos and apps will be deleted.
  • ๐Ÿ”‘ You will need to reset your Google and Mi accounts.

If the problem was a file system corruption, the reset should fix it, but it's a radical solution -- 99 percent of the time, the methods described above are enough.

How to avoid data loss during resetting?
Before resetting, copy important files to: ๐Ÿ’พ Outside. SD-card (if supported). ๐Ÿ–ฅ๏ธ Computer through USB Wi-Fi (Mi Drop or Send Anywhere). โ˜๏ธ Google Drive, Mi Cloud, Yandex Disk: Don't rely on just one way to back up!

Frequent problems and solutions

When you delete screen recordings, Xiaomi users face common errors, and consider the most common and ways to fix them:

Problem.Reason.Decision
File not deleted ("Insufficient rights")Recording is protected by system or DRMUse ADB or move the file to your PC and delete it from there.
The recording disappeared from the gallery, but takes up space.File hidden or corruptedCheck through the File Manager with the hidden files displayed enabled
The "file used" errorThe process blocks access (e.g., a media scanner)Restart your phone or stop the process through Settings โ†’
The recording is deleted, but reappears after the rebootFile recovers from MIUI cacheClear the Gallery and File Manager cache

If none of the methods worked, check:

  • ๐Ÿ› ๏ธ File System Integrity: Go to Settings โ†’ Warehouse โ†’ Check and fix (not available on all models).
  • ๐Ÿ” Viruses or malware: scan your device through Google Play Protect or Malwarebytes.
  • ๐Ÿ“ฆ Mistakes. SD-maps (if the record was saved on it): remove the card and check on another device.

FAQ: Answers to Frequent Questions

Can I recover the remote screen recording?
Yes, but only if: ๐Ÿ—‘๏ธ File still in the Gallery Recycle Bin or Google Photos (stored for 30-60 days). ๐Ÿ’พ You use recovery software (such as DiskDigger or Recuva) but success is not guaranteed. โ˜๏ธ You have a backup in Mi Cloud or another cloud. Important: After deleting, do not write new files to the device - this reduces the chances of recovery.
Why do screen recordings take up so much space?
Videos weigh more screenshots because of the: ๐ŸŽฅ Screen resolutions: Xiaomi records in resolution before 1080p or 4K (flagship). ๐ŸŽต Bitrate: by default, high quality (10-20 Mbit / s) is used). โฑ๏ธ Duration: 1 minute of video in 1080p โ‰ˆ 100-200 MB To reduce size: Before recording, lower the resolution in your screen recording settings. Use third-party apps (such as Mobizen) with a bitrate setting. Compress the video after recording via CapCut or InShot.
How to turn off automatic storage of records in the cloud?
For Mi Cloud: Go to Settings โ†’ Accounts and Sync โ†’ Mi Cloud. Turn off Gallery Sync. For Google Photos: Open Google Photos. Tap on the avatar โ†’ Photo Settings โ†’ Backup and Sync. Turn off backup for video.
Can I record the screen without saving the file?
Yes, but only with third-party apps that support streaming (no saving to the device). For example: Vysor - broadcasts the screen on the PC in real time. ApowerMirror - records video directly to the computer. Scrcpy (for advanced users) - control and write from the PC through ADB. Standard screen recording feature MIUI always saves the file locally.
Why did the screen recordings disappear after the MIUI update?
It could be related to: ๐Ÿ”„ Changes in storage methods: in new versions MIUI folders may be renamed. ๐Ÿ—ƒ๏ธ Resetting permission: After updating the Gallery or File Manager may need to re-authorize access to the repository. ๐Ÿ› Firmware bug: in MIUI 14 were instances where media files were temporarily not displayed in the Gallery Solution: Check folders manually through File Manager. Update Gallery apps and Files via Play Market. Clear the cache of these apps in Settings โ†’ Annexes.