How to make a live wallpaper with sound on Xiaomi Redmi Note 9: the complete guide

Xiaomi Redmi Note 9 – a popular smartphone with powerful hardware and flexible settings MIUI, But standard features don't allow you to install live wallpaper with built-in sound, and this capability requires workarounds, from third-party applications to fine-tuning system settings. Unlike flagship models (for example, Mi 11 Ultra), where live wallpaper is supported out of the box, the Redmi Note 9 will have to work hard – but the result is worth the effort.

In this article, you’ll find 3 working ways to add animation from audio to the lock screen and home screen, including detailed instructions for selecting apps, optimizing performance, and solving typical problems. We'll also look at why sound can stutter or disappear, and how to avoid it without losing image quality. MIUI 12-14 and Android 10-12.

Why Redmi Note 9 doesn’t have live wallpaper with default sound

Smartphone manufacturers limit the functionality of live wallpaper for several reasons:

  • πŸ”‹ Energy consumption: animation + Background sound discharges the battery 15-25% faster (GSMArena 2023 test data).
  • πŸ“± Performance: Helio processor G85 Redmi Note 9 is not optimized for permanent background animation, which can cause lags.
  • πŸ›‘οΈ Security: MIUI Blocks auto-run third-party applications to protect against malware.
  • 🎨 Design concept: Xiaomi bets on minimalism in standard themes, offering live wallpaper only in premium series (Mi 13, Mix Fold).

But these limitations are bypassable, and the key is to understand that the sound in the live wallpaper is not implemented through system settings, but through third-party applications that mimic background playback, which means that:

⚠️ Warning: Forced inclusion of live wallpaper with sound may conflict with energy saving mode MIUI. If after setting the wallpaper "freeze" after 5-10 seconds, check the battery settings for the player application.

πŸ“Š What live wallpaper do you prefer?
Abstract animation
Nature (rain, fire, water)
Futuristic 3D-effects
Personalized (with your own videos)
I don’t care, the main thing is with sound.

Method 1: Video Live Wallpaper (Simple Method)

The most reliable option for beginners is to use Vimage's Video Live Wallpaper, which allows you to convert any video to live wallpaper and overlay the audio track.

  • 🎬 Support for formats MP4, MOV, GIF prior 1080p.
  • πŸ”Š Ability to cut audio from a video or download a separate track.
  • πŸ“± Optimized for MIUI β€” no root-rights requirement.
  • πŸ†“ Free version with minimal advertising (premium disables watermark).

Step-by-step:

  1. Download Video Live Wallpaper from Google Play.
  2. Open the app and click Create Live Wallpaper.
  3. Select a video from the gallery or download a new one. For better performance, cut the video to 10-15 seconds.
  4. Click on the icon. 🎡 in the lower right corner to add sound: πŸ”„ Use audio from video – if there is already sound in the video. πŸ“ Download a separate track - if you want to overlay music (formats) MP3, WAV).

play-loop

volume

Settings β†’ Wallpaper β†’ Live wallpaper

Cut the video to 10-15 seconds|Press down the permit to 1080p (if 4K)|Remove unnecessary sounds (rustle, noise)|Check the compatibility of formats (MP4 + MP3)|Disable energy saving for the application-->

If the sound is not played after using the wallpaper, check:

  • πŸ”‡ Media volume (not to be confused with the volume of the call!).
  • 🚫 Settings Do not disturb in MIUI (Settings β†’ Sound).
  • πŸ”„ Restart the Video Live Wallpaper app through Task Manager.

πŸ’‘

For smooth animation without lags, convert the video to format H.264 with a bitrate of less than 5 Mbps. Use the free HandBrake converter on PC.

Method 2: KLWP + Tasker (for advanced users)

If you need customized live wallpaper with dynamic elements (for example, changing weather) + rain sounds), combo KLWP + Tasker has almost infinite possibilities. It's more complicated, but it allows you to do it:

  • 🎨 Create animations based on JSON-code-patterns.
  • πŸ”Š Attach sounds to specific events (e.g., the sound of waves when unlocked).
  • πŸ“Š Control battery consumption through Tasker triggers.

What you need:

  • KLWP Live Wallpaper Maker (Paid Version).
  • Tasker (free trial version)
  • Ready to preset for KLWP (You can download it from Kustom Rocks).

Instructions:

  1. Install and open. KLWP. Import your favorite preset (e.g., Animated Weather).
  2. In the editor KLWP Add the audio trigger: mu(play, /sdcard/Download/rain.mp3, loop, 1) where rain.mp3 β€” your sound file and loop is the loop command.
  3. Save the wallpaper and apply it through Settings β†’ Wallpaper.
  4. In Tasker, create a sound control task: πŸ“± Trigger: Display β†’ Display Unlocked (when unlocked). πŸ”Š Action: Media β†’ Media Control β†’ Play (indicate) KLWP target-app).
Problem.Reason.Decision
The sound is interrupted after 30 seconds.MIUI kills background processesAdd in. KLWP Exceptions to battery: settings β†’ Battery β†’ Optimizing the battery β†’ All applications β†’ KLWP β†’ No restrictions.
Animation slows downToo complex preset or high resolutionSimplify animation in KLWP or reduce FPS until 24-30
The sound plays on other screens.Incorrect trigger in TaskerAdd a condition %SCREEN ~ Home (only on the main screen)

⚠️ Note: When using Tasker, disable optimization for both apps (KLWP Otherwise, the sound will be reset after 1-2 minutes of downtime.

Method 3: Manual creation APK with live wallpaper (for enthusiasts)

If you are ready to dive into the development of Android, you can create your own APK It's a live wallpaper and sound:

  • πŸ’» PC with Android Studio installed.
  • πŸ“š Basic knowledge Java/Kotlin and the structure of Android projects.
  • 🎡 Sound files in format OGG (optimal for Android).

The short algorithm:

  1. Create a new project in Android Studio with a Live Wallpaper template.
  2. Add sound files to the folder res/raw/.
  3. In the WallpaperService.java file, write the sound playback: MediaPlayer mediaPlayer = MediaPlayer.create(this, R.raw.sound); mediaPlayer.setLooping(true); mediaPlayer.start();
  4. Compile. APK and install it on the Redmi Note 9 through ADB: adb install your_wallpaper.apk

On the Redmi Note. 9 s MIUI 14+ You may need to disable signature verification APK Adb shell settings put global verifier_verify_adb_installs 0, Otherwise, the system will block the installation.

Example of code for playing sound in Live Wallpaper
In the WallpaperService.java file, add the following method for sound management: ```java private void playSound() { if (mediaPlayer == null) { mediaPlayer = MediaPlayer.create(this, R.raw.background_sound); mediaPlayer.setLooping(true); mediaPlayer.setVolume(0.5f, 0.5f); // Volume level (0.0 - 1.0) } if (!mediaPlayer.isPlaying()) { mediaPlayer.start(); } } @Override public void onVisibilityChanged(boolean visible) { if (visible) { playSound(); } else { if (mediaPlayer!= null && mediaPlayer.isPlaying()) { mediaPlayer.pause(); } } } ``` This code will only play sound when the wallpaper is visible on the screen (e.g., on the home screen or lock screen).

How to Optimize Performance and Battery

Live wallpaper with sound is a resource-intensive feature. To prevent the Redmi Note 9 from becoming a stove in 2 hours, follow these tips:

  • πŸ”‹ Turn off background animation in games: in Settings β†’ Special facilities β†’ Overlay permissions prohibit applications (e.g, PUBG Genshin Impact: working on the wallpaper.
  • ⚑ Use the "Adaptive Brightness": in MIUI she's reducing the load GPU animation.
  • πŸ—‘οΈ Clear the app cache with wallpaper once every 3 days through Settings β†’ Annexes β†’ [Name of name] β†’ Warehouse β†’ Clear the cache.
  • πŸ”„ Switch to static wallpaper at night: set up Tasker to automatically change wallpaper from 23:00 to 7:00.
Setting upRecommended valueThe effect
Permission of video wallpaper720p (1280Γ—720)Reduces the GPU load by 40%
Bitrate sound96–128 kbpsMinimizes reproduction delays
FPS animation24-30 personnel/sReduces battery consumption by 15-20%
Performance mode MIUIBalancedOptimal balance between smoothness and energy consumption

πŸ’‘

If after using live wallpaper smartphone began to warm up, check the load on the processor in Settings β†’ The phone. β†’ Status of the system β†’ Use of CPU: Norm - up to 20% in simple.

Top.-5 live wallpaper applications with sound

Not all of the Google Play software actually supports wallpaper sound, and we tested 15 apps and selected the best ones.

AnnexSound supportPlusesCons
Video Live Wallpaperβœ… Yes (MP3, WAV)Simple interface, video clipping, loop settingWatermark in the free version
Live Wallpapers 4K❌ No (animation only)Large library of ready-made wallpaperNo customization of sound
KLWPβœ… Yes, through code)Maximum customization, integration with TaskerHard for beginners.
Neon Wallsβœ… Yes (built-in sounds)Futuristic 3D-audio-effectsPaid wallpaper packages
LWP+βœ… Yes (OGG, MP3)Gyroscope support (responds to phone tilt)Rare bugs with a sound on MIUI

For the Redmi Note 9, we recommend the Video Live Wallpaper for simplicity or KLWP Avoid low-rated apps (below 4.0) – they often contain adware that conflicts with the MIUI.

Frequent problems and their solutions

Even when set up properly, live wallpaper with sound can work unstable.-7 problems and ways to correct them:

  • πŸ”‡ No Sound: Check if the audio is turned off in the media settings (Settings) β†’ Sound. β†’ Media volume. Reinstall the wallpaper app. Try a different sound format (e.g., audio format, OGG instead MP3).
  • 🐒 Lags and brakes: Reduce video resolution to 720p. Disable background apps through Settings β†’ Annexes β†’ Start Manager. Switch to Performance Mode Balanced in MIUI.
  • πŸ”‹ Fast battery discharge: Limit sound playback time (e.g., only when unlocked).Use Tasker to turn off wallpaper when low charge (%BATTERY < 20).

⚠️ Note: If after installing live wallpaper smartphone began to spontaneously reboot, this may indicate a conflict with the MIUI Optimization. Turn it off through ADB: adb shell pm disable-user --user 0 Be careful: this can affect the stability of the system.

Can you make a live wallpaper with sound without third-party applications?
No, the standard settings of the Redmi Note 9 do not support sound in the wallpaper, even if you set the wallpaper live through the Settings. β†’ Wallpaper, the soundtrack will not play, and you need to use third-party tools like Video Live Wallpaper or something like that. KLWP.
Why does the sound disappear in a few minutes?
This is due to the aggressive optimization of the battery in the MIUI. The system kills application background processes to save charge.Solution: Add the wallpaper app to battery exclusions (Settings) β†’ Battery β†’ Optimizing the battery β†’ All applications. Turn off the power saving mode for the application. Use Tasker to periodically wake up the playback process.
How to make the sound play only on the lock screen?
To do this, you need to configure triggers in Tasker: Create a profile with the Display condition β†’ Display State = Off (screen off). Add the Media task β†’ Media Play with the audio file. Second profile is Display. β†’ Display Unlocked (unlocked) with Media β†’ Media Stop. Alternative: Use the App LWP+ Play on Lockscreen Only.
Can I use my music and videos for my music?
Yes, most apps (like Video Live Wallpaper or the likes of the video game) KLWP) They allow you to upload your own files. Main requirements: Video: format MP4 or MOV, up to 30 seconds, resolution not higher 1080p. Audio: formats MP3, WAV, or OGG, Bitrate up to 192 kbps. Use HandBrake to convert video (free).
Will this method work for other Xiaomi models (Redmi Note 10, POCO X3 etc.)?
Yes, all of the described methods are compatible with most Xiaomi devices based on the MIUI (including the Redmi Note 8/10/11, POCO F3/X3, Mi 10/11). Exceptions: POCO M3 Other budget models with Helio G80 You may have lags because of a weak processor. 13 Ultra and new flagships live wallpaper with sound can be installed through standard settings (Theme) β†’ Live wallpaper).