Deleting video from Android TV only seems like a simple task - in practice, users are faced with a lot of nuances. Files can remain in the application cache, duplicated in cloud services, or even โhideโ in system folders that are not accessible through the standard interface. The problem is especially pressing for owners of TV Sony Bravia, Xiaomi Mi TV or NVIDIA Shield, where the file system is organized differently than on smartphones.
In this article we will look at all possible removal methods โfrom basic (through the built-in file manager) to advanced (commands ADB and manually clearing the cache). Weโll separately focus on how to get rid of โundeletableโ files that take up space but are not displayed in the gallery. If you tried to delete the video, but it appears again after a reboot, here you will find a solution.
We warn you right away: some methods require Developer rights or connecting to a PC. If you have never worked with ADB or are not sure of your actions, start with the first three methods. They are safe and do not require additional knowledge.
1. Removal through the built-in file manager
The most obvious way is to use the standard application "Files" (Files) or "Explorer" (File Manager), which is preinstalled on most Android TV. However, there are pitfalls here: not all models support full access to the file system, and some manufacturers (for example, LG in their hybrid TVs) limit the functionality of the manager.
To delete a video:
- Open the application "Files"** (the icon is usually blue or green with a folder image).
- Go to the section
Local storageorInternal memory. - Find video folder. Most often this is:
- ๐
Moviesโ for movies downloaded via a browser; - ๐
Downloadโ if the video was downloaded via Google Chrome; - ๐
DCIMorPicturesโ for screen recordings or screencasts; - ๐
Android/data/com.your_applicationโ for videos from specific apps (for example Kodi or VLC).
- ๐
Delete (the button is usually indicated by a trash can).If the folder Android/data is not in the list, it means that your Android TV hides system directories. In this case, go to method with ADB.
โ ๏ธ Attention: On some TVs (for example, Sony Bravia 2020-2022) the built-in file manager does not show files larger than 4 GB. If the video is heavier, use third-party applications like FX File Explorer.
โ๏ธ What to check before deleting
)2. Deleting via Google Photos or other cloud services
If the video was uploaded to Google Photos, Dropbox or OneDrive, deleting it through the file manager may not work. The file will remain in the cloud and will be downloaded to the device again the next time you connect to the Internet. To get rid of it forever:
For Google Photos:
- Open the application Google Photos on your TV.
- Find the video in the library (section
PhotoorVideo). - Select the file and click
โฎ โ Delete from device(this will delete only the local copy) orDelete from Google Photos(will also delete from the cloud). - If the video is in data-i="107">โ clear it manually (section Trash - clean it manually (section
Trash โ Empty Trash). - ๐ Open the web version of the service on your PC or smartphone.
- ๐๏ธ Find the video and delete it from there (this may not be available on the TV).
- ๐ฑ On the TV, go to the cloud application settings and click
SynchronizeorUpdate. - ๐ FX File Explorer - supports root access (if it is unlocked) and shows hidden files.
- ๐ Solid Explorer - convenient two-panel interface, works with clouds.
- ๐๏ธ X-plore File Manager - shows
APKfiles and application cache.
For other clouds (Dropbox, OneDrive):
โ ๏ธ Attention: If the video was automatically downloaded in Google Photos (for example, through the function Backup), deleting it from the TV will not stop it from being re-uploaded. Turn off backup for the video folder in the application settings.
How to disable auto-upload in Google Photos
Go to Settings โ Backup and synchronization and disable the option for the folder Movies or Download.
3. Using third-party file managers
Standard applications for working with files on Android TV often trimmed down. If you do not see the necessary folders or cannot delete the video, install one of these managers:
How to delete a video via FX File Explorer:
- Install the application from Google Play.
- Launch it and provide access to the storage.
- Go to
/storage/emulated/0/(internal memory) or/storage/USB_OTG/(external storage). - Find the video and delete it (hold the button
OKon the remote to highlight).
If the file is not deleted, check:
- ๐ Does it have the attribute
Read only(in the file properties). - ๐ก๏ธ Is it being used by another application (for example, VLC can block files during playback).
- ๐ Is it located on a protected section (for example,
/system).
If the video is not deleted due to โbusyโ, restart the TV and try again. Sometimes it helps to disable the application that uses the file (for example, Kodi or MX Player).
4. Clearing the cache and application data
Sometimes the video โdisappearsโ from the gallery, but continues to take up space. This happens when the file is stored in application cache (for example, YouTube, Netflix or Kodi download a video for offline viewing). To clear the cache:
Method 1: Through Android TV settings
- Go to
Settings โ Applications. - Select the application that may have saved the video (for example, Google Play Movies or VLC).
- Click
Storage โ Clear cacheandClear data.
Method 2: For Kodi and the like media players
- ๐ Open the file manager and go to
/Android/data/org.xbmc.kodi/files/.kodi/userdata/Database/. - ๐๏ธ Delete files with the extension
.db(these are databases with information about media files). - ๐ Reboot Kodi โ the application will rebuild the library without โghostโ videos.
If you use YouTube or Netflix in offline mode:
- ๐ฌ Open the application and go to the section
Library โ Downloads. - ๐๏ธ Delete the video from there - this will clear the cache.
| Application | Path to cache | How to clear |
|---|---|---|
| YouTube | /Android/data/com.google.android.youtube/cache/ |
Through application settings or file manager |
| Netflix | /Android/data/com.netflix.ninja/cache/ |
In the application: Menu โ Settings โ Delete downloads |
| Kodi | /Android/data/org.xbmc.kodi/files/.kodi/ |
Delete folder Thumbnail (thumbnails) and files .db |
| VLC | /Android/data/org.videolan.vlc/files/ |
Clearing the cache in the application settings |
Clearing the cache does not delete downloaded videos from applications like Netflix or YouTube. To do this, you need to use their built-in download management features.
5. Removal via ADB (for experienced users)
If the video is stored in system folder or is not visible through file managers, it will help ADB (Android Debug Bridge). This method requires connecting the TV to the PC and turning on USB debugging.
What you will need:
- ๐ฅ๏ธ Computer with installed ADB Tools.
- ๐ Cable USB-A โ USB-C (or Micro-USB, depending on the TV model).
- ๐ง Enabled USB debugging on the TV (see instructions below).
Steps:
- Enable USB debugging on Android TV:
- Go to
Settings โ About TV โ Build number. - Click on
Build number7 times until the message appearsYou have become a developer!. - Go back to
Settings โ For developersand enableDebugging by USB.
- Go to
Command Line (Windows) or Terminal (Mac/Linux).adb devices
(the name of your TV should appear)
adb shell
(go to the Android shell)
su
(if you have root access)
find /storage -name ".mp4" -o -name ".mkv"
(search for all video files)
rm -f /path/to/video/filename.mp4
(deleting a specific file)
โ ๏ธ Warning: Commandsrmandsucan permanently damage the systemif used incorrectly. Do not delete files from the/systemor/vendorfolders - this will cause the TV to crash.
If you do not have root access, try deleting the file via ADB without superuser rights:
adb shell rm /sdcard/Download/your_video.mp4
What to do if ADB does not see the TV?
1. Check the cable (it is better to use the original one from the TV manufacturer).
2. In the developer settings, enable USB Debugging (Safe Mode).
3. On your PC, update the drivers for Android ADB Interface via Device Manager.
6. Resetting the TV to factory settings (extreme case)
If the video is not deleted in any way (for example, due to a file system failure or a virus), the last option remains - full reset. This will delete all dataincluding installed applications, accounts and settings.
How to reset Android TV:
- Go to
Settings โ Storage and reset โ Data reset(on some models:Settings โ Support โ Reset). - Select
Delete everythingorReset to factory settings. - Confirm the action (you may need to enter a PIN code).
- Wait reboot (will take 5-15 minutes).
- ๐ The TV will return to its out-of-the-box state.
- ๐ฅ You will have to re-configure Wi-Fi, log into your Google account and install applications.
- ๐๏ธ All videos, including those that were not deleted, will be erased.
After the reset:
โ ๏ธ Attention: On TVs Sony Bravia and Philips resetting may block some functions (for example, data-i="276">), if they were activated through the manufacturer's account. Before resetting, check whether your account is linked to the device. Google Assistant or Chromecast), if they were activated through the manufacturer's account. Before resetting, check whether your account is linked to the device.
FAQ: Frequently asked questions about deleting videos from Android TV
โ Why is the video deleted, but appears again after a reboot?
Most likely, the file is synchronized with the cloud (Google Photos, Dropbox) or restored from a backup. Disable auto-upload in the cloud service settings or check the folder /Android/data/com.google.android.apps.photos/ for cached copies.
โ How to delete a video that is not visible in file managers?
Such files may be stored in the application cache or system folders. Try:
- Clear the cache of all media applications (Kodi, VLC, Gallery).
- Use
ADBto search by extensions (find / -name "*.mp4"). - Check the folder
/data/media/0/โsometimes files are duplicated there.
โ Is it possible to recover a deleted video?
If the file was deleted without emptying the recycle bin (for example, in Google Photos), it can be restored within 30-60 days. For local files, try apps like DiskDigger (requires root). The chances are low - Android TV often overwrites deleted data.
โ Why canโt I delete videos from an external hard drive?
Possible reasons:
- ๐ The disk is formatted in
NTFSโ Android TV supports read only for this format. Reformat inFAT32orexFAT. - ๐ก๏ธ The file is write protected (check the attributes on your PC).
- ๐ The power of the USB port is not enough for stable operation of the disk (connect through a hub with power).
โ How to prevent applications from saving video to the TV memory?
Open the settings of a specific application (for example, YouTube or Browser) and:
- Disable
Automatic downloadingorVideo caching. - Limit access to storage in
Settings โ Applications โ Permissions. - For the browser (Chrome), set
Ask where to save files.