Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to play video as live wallpaper android?

Does anyone know how to play .mp4 video as live wallpaper?

I searched a lot, but couldn't find the solution. I just found this one but I am not getting any idea from it.

Please help me if you have any idea regarding this concept.

like image 551
Hardik Joshi Avatar asked Jan 10 '13 11:01

Hardik Joshi


People also ask

How do I turn a video into a live wallpaper?

Install the Video Live Wallpaper app on your Android. To download the app, search the Play Store for "Video Live Wallpaper," then tap the option that has a green hill and house. Tap Install to get the app. You can also use your browser to go to the app's page on the Play Store and tap Install.

How do you get a moving wallpaper on Android?

Press and hold the main Android home screen, select “Wallpapers” then “Live Wallpapers,” or just “Live Wallpapers” if the option is directly available. If press-and-hold does not work, use the device Menu button.

Can Android support live wallpaper?

The Android operating system allows for live wallpapers, which are animated or interactive scenes that work as your phone's home screen image.


1 Answers

After spending 3 days finally I run this project in eclipse.

I am sharing the steps as it may help others:

Firstly, the most important thing is that Your project path and ndk path should not contain spaces else you will have problems following these steps. I also faced problems with it so please remove the spaces, if any.

For example :-

android ndk/Live wallpaper

replace it with

androidndk/Livewallpaper

Following are steps :-

1) Install NDK from Android NDK page (I used Ubuntu OS)

2) Install plugins for NDK ( https://dl-sl.google.com/android/eclipse/ )

3) Open your terminal and go to your project directory path

For Example :- /yourprojectname$

4) Now from your project directory path write Your Android NDk path

For Example :-

 /home/rainc/android_setup/android-ndk-r8d/ndk-build

And Press Enter. This will give you a .so file which means the library file has been generated..

You have done it successfully. If you are getting error(s) here then the installation and the other steps might be having error(s).

Following links helped me in my research:

First

Second

Third

And also thanks to Lazy Ninja for helping me.

like image 196
Hardik Joshi Avatar answered Oct 04 '22 02:10

Hardik Joshi