Create a custom boot animation for any android device - Android General

INORDER TO CREATE A CUSTOM BOOT ANIMATION YOU REQUIRE
A ROOTED ANDROID DEVICE
VIDEO FOR WHICH YOU WANT TO CREATE THE ANIMATION
If you are having a .gif read this thread
http://goo.gl/h5KDF3
ES FILE EXPLORER
A BUNCH OF OTHER SOFTWARES {LINKS FOR THEM IN THE DESCRIPTION}
So first of all install all the softwares..
STEPS
1. Create a folder in your desktop for saving all the files .....
For eg:- call it Boot.
2. Open "Free Video to JPG Converter"
3.Select "add files"
4.Make output path as "Boot" folder in desktop.
5.Click "Convert".
6.Open "FastStone Photo ReSizer".
7.Open your folder containing images.
8. Select "add all" option.
9.Select desired out put format{ Best format is png/jpeg }
10.Select " UseAdvance Option" and click "Advance Option"
11.Select "Resize" option.
12. Enter your device's height and width in pixels. {mine is 1080X1920}
13.Select "OK".
14.Make sure that "Rename" option is checked.
15. Click "Convert"
16.Now create a folder and name it as "part0" {case sensitive}.
17.If the number of images is more than 75 create another folder named "part1" and copy the images starting from number 76 into this folder. [Each folder can have maximum 75 images]. If images are more create folder as part2,part3 etc....
18.Create another folder. Lets call it as "files".And move part0 and part1 to this folder.
19.Now open"BOOT ANIMATION CREATOR".
20..Select "Next".
21.Select "Choose Folder".
22.Browse and open the "files" folder..{do not open part0 or part1"}
23.Hit next.
24.Select "Add Loop".
25.Select "part0" from drop down menu.
25.Select number of loops as "1". Do the same for part1. [if number of lopps=0,it is an infinte loop]
26. Click next and Save the file as"bootanimation" [case sensitive]
27.Copy the boot animation to your phone/tablet.
28Open "ES File Explorer".
29.From "Tools" option navigate to "Root Explorer" and make sure that it is selected.
30.From root explorer option select "Mount R/W" and change all option to "RW".
31.Copy the bootanimation.zip to"/system/media/" and paste it there. {make a back up of existingbootanimation.zip in that folder by renaming it to"boot animation.zip.bat".
32.Once thats done you are ready..Go ahead and restart you device and enjoy your new boot animation..
FEEL FREE TO ASK YOUR DOUBTS
DOWNLOAD LINK
1. Free Video to png Converter :-
http://www.dvdvideosoft.com/products/dvd/Free-Video-to-JPG-Converter.htm#.VOmgmjSUd9k
2.Fast Stone Image Resizer:-
http://www.faststone.org/FSResizerDetail.htm
3.Boot Animation Creator:-
https://dl.dropboxusercontent.com/u/25573917/Programs/install_bootanimationcreator.msi

????
tra_dax

tra_dax said:
tra_dax
Click to expand...
Click to collapse
you are welcome

Thank you very much:sly:

thanks!

androidlover5842 said:
thanks!
Click to expand...
Click to collapse
You are welcome

adithyan25 said:
You are welcome
Click to expand...
Click to collapse
hey i am new to android development i have ported cm11 to my device but i want to port twrp to my device and i am getting some error while it's compilation i am using cm11 sources can you help me please

androidlover5842 said:
hey i am new to android development i have ported cm11 to my device but i want to port twrp to my device and i am getting some error while it's compilation i am using cm11 sources can you help me please
Click to expand...
Click to collapse
Its a common error
make sure that the twrp downloaded matches your system requirement
and also specify the error so that i can look into it

adithyan25 said:
Its a common error
make sure that the twrp downloaded matches your system requirement
and also specify the error so that i can look into it
Click to expand...
Click to collapse
how to fix that error http://pastebin.com/WcuKemeA

Thanks for your helpful information. :good:

Related

[GUIDE] How To Make Bootanimation

Hello Everyone
Here Is The Tutorial On How to Create Ur Own Boot Animation for U r Mobile... (Specifically Using Bootanimation Factory By @despotovski01)
Requirements :
1) Windows OS
2) BootAnimation Factory ( Press Thanks Button For His Awesome Work Without Which I Would Have Never Learned It )
3) Image Resizer (To change the resolution of the images)
4) Image Editing Software ( Your wish)
(A)Photoshop (B) GIMP
5) 7Zip
6) Notepad++
What Is BootAnimation??
The Android boot animation is contained within a an uncompressed zip file called bootanimation.zip that can be found in the media folder of the system partition i.e. /system/media on the internal memory of the device. This single file contains all the information required to play the boot animation, and is loaded automatically when the device boots.
What a Bootanimation.zip Contains??
. If you extract the contents of the bootanimation.zip file to your computer, you will see:
1) A desc.txt file
2) A part0 folder (Contains PNG images named in incremental numbers)
3) More part1, part2 etc. folders (May or may not be present)
As you can see, bootanimation.zip merely contains one text file and one or more folders with PNG images. The animation is played simply by displaying the images in a sequence, and the text file defines how they are to be played. In essence, first the PNG files in the part0 folder are displayed one after the other and afterwards, those in the part1 file – if it exists – are displayed, again one after the other, and so on. All of this is defined in the desc.txt file.hence desc.txt file is vital file for creating a bootanimation.
Now Will See What Each Files And Folder Does:laugh:
Imp : This Guide Is Applicable To All Devices..The Change is The RESOLUTION of your Device Change The Resolution Suitable To Your Device Using Image Resizer.Resolution Details Can Be Found On Device Specification.
The folders
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
These contain PNG images named in numbers, starting from something like 0000.jpg or 00001.jpg and proceeding with increments of 1. There has to be at least one folder, and there is no known upper limit to the number of folders.
The desc.txt file
This file defines how the images in the folder(s) are displayed during the boot animation, in the following format:
Width Height Frame-rate
p Loop Pause Folder1
p Loop Pause Folder2
An example of a desc.txt file is:
720 1280 30
p 1 0 part0
p 0 0 part1
As you can see, in the first line, 720 and 1280 define the width and height of the boot animation in pixels for this example. This must be the same as the screen resolution of your device for the boot animation to properly play in full screen. 30 is the frame rate in fps (frames per second) i.e. number of images to display per second.
The second and third lines have a same format, start with p, which stands for a part of the animation and end in part0 or part1, which denotes the folder in which the images for that part are present.
The number after ‘p’ defines how many times this part will loop (repeat playback) before switching to the next part (if present). Specifying 0 would make the part loop indefinitely till the phone has fully booted.
The next number is for the pause, and is expressed in the number of frames, which can be translated into time by dividing it by the frame rate. A pause of 15 for example, would mean pausing for the time it takes 15 frames to play and since the frame rate is 30 frames per second, 15 frames would take half a second.
Translating all of this in case of the above example, the boot animation will play at a resolution of 720 by 1280 pixels, at a frame rate of 30 fps, starting with the contents of part0 folder and after playing them in one loop, switching to contents of part1 folder and playing them continuously till the device fully boots. Best method to find which FPS suits your mobile is open the current Running Bootanimation from your device open the desc.txt and see and enter the same value.
Steps To Create Ur Own Bootanimations
1) Download All The Necessary Tools U need To For This.
2) Install The Necessary Softwares.
3) Go through the entire Inside the bootanimation.zip File Which I will attach at the end of this guide.
4) Plan how your boot animation will run. This includes how many distinct parts it will have, how long will each part play and what will be the sequence of the parts.
5) Make a new folder at any convenient location on your computer, and name it bootanimation.
6) In this folder, create a folder for each part of your boot animation, named part0, part1 and so on.
7) In the image editor of your choice (Adobe Photoshop,GIMP), make all the image files for each part of your boot animation with the proper dimensions equal to your phone’s screen resolution, and save them in the respective folder for each part, in PNG format. Up to 32 bit PNGs are supported.
Note: In case you are converting an existing boot animation to fit your phone’s screen, simply extract the images from it and resize each of them to your device’s screen resolution.
8) Make sure the images are named in numerical format and in proper sequence, i.e. the images in the first part should start with let’s say 00000.jpg and go on till 00075.jpg, and the images in the second part should then start off with 00076.jpg and go on till – for instance – 00123.jpg.
9) Now open the Boot Animation Factory Tool.
10) Click on “Create a New Boot Animation” Button.
11) There will be 2 options Asking for Source (1)From folder and (2) From GIF. Since In This Guide I have used Folder Method, Select Folder and click OK
12) Click On Choose folder and Select The bootanimation folder were u had stored all the necessary folders and images.
13) At the Right Hand Side You Can see the tab were the Resolution of The pics will be displayed..You can edit it and change the resolution and FPS too. Let the setting be “Don’t Repeat”
14) click on add loop button.
15) Select The Folder Ex: part0 . For this folder Set THE LOOP to 1 and TIME DELAY to 0 ( You Can Put your Custom delay if u wish) and Click ADD button.
16) Repeat the Step 15 but here Select the next part In Folder Ex : part1
17) If U have more part folders select the respective part and repeat the Step 15.
18) For last folder ( Ex : If part1 is last folder ) the SET THE LOOP to 0 . So that it Repeats
19) You can PREVIEW your bootanimation before saving by clicking on PREVIEW Button.
20) Click Save Boot Animation Button and name it has “bootanimation”
You Have Done A Bootanimation Successfully..:laugh::laugh:
How To Put It In Your Device?
File browser method (Rooted devices only):
1) Connect your phone to your computer via USB and mount the storage card for file transfer.
2) Copy the bootanimation.zip file that you want to install, to your SD card.
3) Unmount USB storage and launch the file browser of your choice on your phone.
4) Browse to /system/media, copy the existing bootanimation.zip file from there and paste it somewhere safe on your SD card.
5) Browse to the location on the SD card where you copied the new bootanimation.zip and copy it.
6) Browse to /system/media and paste the bootanimation.zip file there.
7) If you are using Root Explorer App, you will have to Touch ‘Mount R/W’. This will make your system partition writeable.
8) Check if the permissions are rw-r—r—. If not, change them to that.
9) Reboot And Enjoy Your New Bootanimation Done by You:laugh:
Credits :
@despotovski01 for his AWESOME BOOTANIMATION FACTORY.... Thread Located Here
FOR SAMPLE DOWNLOAD ANY FROM GOOGLE
Any Doubts Always Free To Post Here
IF ANYONE HAS DONE BOOTANIMATION SUCCESSFULLY POST IT HERE OR DO LET ME KNOW HERE.
ENJOY!!!
:laugh:IF IT HELPED YOU KINDLY PRESS THANKS BUTTON SO THAT I WILL KNOW HOW MANY PEOPLE ARE BENEFITED FROM IT:laugh:
Converting Video Into Bootanimation...!!
POST - 2​Converting Video Into Bootanimation...!!​Here is the Tutorial on How To Extract Frames From Video File for Creating Bootanimation!!:laugh::laugh:​Requirements
1) Windows OS. :silly:
2) Free Video to JPG Converter
Steps To Extract Frames (Images) from A Video :
1) Download the necessary tools required.
2) Open Free Video to JPG Converter.
3) Now Click On The Browse Button And Add Your Video File To Software.
4) Click the lower Browse (Save To) button. Choose the location where you would like to save your snapshots. Click Ok.
5) Set the video frames you want to save as snapshots.
6) For example you can extract every hundredth video frame, frames in every 10 seconds, total 200 frames or even every frame.
Note: Be careful with the "Every frame" option. The total size of the extracted images may be several times bigger than the input file size!
7) Click convert button and wait images to be extracted.
7) Now Resize the Images To The Resolution Of Your Device Using Image Resizer ( Post 1). Example: In my case I take 480x800
8) Follow The Guide In Post (1) To Create Bootanimation using these Images.
:laugh::laugh:IF IT HELPED YOU KINDLY PRESS THANKS BUTTON SO THAT I WILL KNOW HOW MANY PEOPLE ARE BENEFITED FROM IT​
POST-3​THIS GUIDE (POST-3) IS ONLY APPLICABLE TO SAMSUNG DEVICES NOT ANY OTHER ONLY SAMSUNG MOBILES.
CONVERTING BOOTANIMATION.ZIP TO .QMG FILE FOR STOCK ROM'S:laugh:​HELLO EVERYONE:highfive:
Requirements :
1) Windows OS
2) Image Resizer (To change the resolution of the images)
3) Image Editing Software ( Your wish)
4) 7Zip
5) Samsung Theme Designer
THIS GUIDE IS THE PART OF [GUIDE] How To Make Custom Bootanimation
What is .QMG files?
These files are done by using Samsung Theme Creater Officially. Its there own way of making animation which ends with making files having .qmg extension. Shocking is Samsung Theme Designer cannot open QMG files, it can only create them
What Does it Contain?:laugh:
It has 2 files
1) Bootsamsung.qmg
2) Bootsamsungloop.qmg
These 2 files are always together has in general they are together bootanimation.zip.
What Does Each File Do?
1) Bootsamsung.qmg
It contains the files needed for boot. These files are not repeatable.
Ex : From bootanimation.zip if there are 2 folders part0 and part1 then part0 is the folder used to make bootsamsung.qmg
2) Bootsamsungloop.qmg
It contains the files for loop execution. These files are repeatable. Its similar to desc.txt file instruction.
Ex : From bootanimation.zip if there are 2 folders part0 and part1 then part1 is your loop and this folder is used to create Bootsamsungloop.qmg.Remember when we made bootanimation .zip we had put no of loops=0
How To Convert Bootanimation.zip To .QMG files​IMP : HERE I CONSIDER THAT THE BOOTANIMATION.ZIP CONTAINS PART0 AND PART1 FOLDER.
MAKING BOOTSAMSUNG.QMG:laugh:​1) Open Samsung Theme Designer Software.
2) Click create new theme, use type "feature(NonTouch) phone", then "select model" and use any model.
3) Select Default and Name your theme.
4) Choose "Idle Component" then "Idle Background" and change "Background Type" to "animated".
5) Enter No of Frames and hit enter that is nothing but no of pics in part0 folder.
6) Enter delay (This is bit tricky) here its in ms (milli seconds not FPS) to convert that follow this 1000 / (framerate) = (time given in ms)
for example:
1000 / 20fps = 50ms
or
1000 / 25fps = 40ms
7) Under Repeat option select FALSE for bootsamsung.qmg and TRUE for bootsamsungloop.qmg.
8) Drag your image files sequence from your folder(here its part0 folder) to the empty squares in the bottom of the theme designer.
9) Now export your theme and accept the Samsung terms & conditions and wait for your .STM file theme to be created.
10) Once its done click yes to open the saved folder there Rename the .STM file to .ZIP file and open it.
11) After opening zip file drag "IdleBgAnimObj.qmg" to anywere u wish preferably to desktop.
12) Rename the "IdleBgAnimObj.qmg" has bootsamsung.qmg
13) Now your boot file is Read but wait still loop is not done for that follow the below steps.
Creating Loop File :
1) Open Samsung Theme Designer Software.
2) Click create new theme, use type "feature(NonTouch) phone", then "select model" and use same model has above.
3) Select Default and Name your theme.
4) Choose "Idle Component" then "Idle Background" and change "Background Type" to "animated".
5) Enter No of Frames that is nothing but no of pics in part1 folder.
6) Enter delay (This is bit tricky) here its in ms (milli seconds not FPS) to convert that follow this
1000 / (framerate) = (time given in ms)
for example:
1000 / 20fps = 50ms
or
1000 / 25fps = 40ms
7) Under Repeat option select TRUE for bootsamsungloop.qmg.
8) Drag your image files sequence from your folder(here its part1 folder) to the empty squares in the bottom of the theme designer.
9) Now export your theme and accept the Samsung terms & conditions and wait for your .STM file theme to be created.
10) Once its done click yes to open the saved folder there Rename the .STM file to .ZIP file and open it.
11) After opening zip file drag "IdleBgAnimObj.qmg" to anywere you wish preferably to desktop.
12) Rename the "IdleBgAnimObj.qmg" has bootsamsungloop.qmg
13) Copy the both files and keep them together.
YOU HAVE SUCCESSFULLY DONE THE .QMG FOR STOCK ROM'S
Thanks!
Thank u so much for this.
markdarylcorpuz said:
Thank u so much for this.
Click to expand...
Click to collapse
Welcome... Press Thanks Button to OP Instead Of Writing....
jackeagle said:
Welcome... Press Thanks Button to OP Instead Of Writing....
Click to expand...
Click to collapse
thankssssss so so much
EMINEM786 said:
thankssssss so so much
Click to expand...
Click to collapse
Welcome...Plz Press Thanks Button instead of writing..:laugh::laugh:
Great post, but one quick question, can I make a boot animation outta a video? If yes then whats the file type and size I have to keep to make a perfect boot animation. Thanks
Sent from an open source device
Wow..awesome mate..so detail..:good:
thanks
thanks such a good tutorial, i wish i saw this earlier , just yesterday when i saw a file named animation.zip i oepened it and found out its only like a GIF ! so i spend an hour making a dancing guy animation using paint in my screen resolution and crated the desc, it used stock booting animation xD i most see whats wrong once i get time anyway thanks
---------- Post added at 10:46 AM ---------- Previous post was at 10:45 AM ----------
xdagee said:
Great post, but one quick question, can I make a boot animation outta a video? If yes then whats the file type and size I have to keep to make a perfect boot animation. Thanks
Sent from an open source device
Click to expand...
Click to collapse
hm... take screen shots rapidly
xdagee said:
Great post, but one quick question, can I make a boot animation outta a video? If yes then whats the file type and size I have to keep to make a perfect boot animation. Thanks
Sent from an open source device
Click to expand...
Click to collapse
You can make it using a video too... You need a software to capture the frames of your video there is software for it...If software gives the option for frame resolution and then you can set before capturing it or you to resize it using image resizer links are in OP to resize to ur device resolution... will soon post a Guide for it...
--->Plz Press Thanks Button If I Helped You Instead Of Writing<---
Excellent
Hi Bro..Really nice guide for Bootanimation..
Is it possible to add Audio in bootanimation because some indian branded mobile company like Micromax has voice in it's bootanimation and it looks great..
Is it possible to add audio in our nexus Devices .??
If we want to add audio than what things to have in phone..?
Thanks for this..:good:
Will the Bootanimation factory, image resizer, and photoshop work on my PC?? it runs windows service pack 2 64-bit??
Sharm♡♥♡♥ Android 4.1.2 [T3RomV²]
@jackeagle
I am using CM11.
I tried ur tutorial and completed my boot animation. But when I pasted it in system/media and rebooted I found only an
android name as boot animation.. It's not what I created ..
I edited for almost 2hrs each and every frame..please help..I want to use that bootscreen that I created.
All I am seeing a weird android text as bootscreen.
:banghead: :banghead:
Sent from my GT-I9082 using XDA Premium 4 mobile app
okk done
This will do
xdagee said:
Great post, but one quick question, can I make a boot animation outta a video? If yes then whats the file type and size I have to keep to make a perfect boot animation. Thanks
Sent from an open source device
Click to expand...
Click to collapse
Use this software to convert videos to GIF
http://www.video-gif-converter.com/freevideotogif.exe
Hit thanks, if it helps :laugh:
vasanthmes said:
@jackeagle
I am using CM11.
I tried ur tutorial and completed my boot animation. But when I pasted it in system/media and rebooted I found only an
android name as boot animation.. It's not what I created ..
I edited for almost 2hrs each and every frame..please help..I want to use that bootscreen that I created.
All I am seeing a weird android text as bootscreen.
:banghead: :banghead:
Sent from my GT-I9082 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Hello..!!
That is due to the fact that the Mobile has not detected your bootanimation...Its due to permission..have you changed the permission to rw-r-r??
If not cahnge it to it and try again...If still doesn't PM me your bootanimation to me and will look into it...
Rushabh22 said:
Hi Bro..Really nice guide for Bootanimation..
Is it possible to add Audio in bootanimation because some indian branded mobile company like Micromax has voice in it's bootanimation and it looks great..
Is it possible to add audio in our nexus Devices .??
If we want to add audio than what things to have in phone..?
Thanks for this..:good:
Click to expand...
Click to collapse
Hello...!!
Yes you can add Custom PowerOn sound to your mobile...Just navigate to system-->media-->audio-->ui--> check if PowerOn audio file is there if its there just replace it with new one and change permission to rw-r-r....
sharmsy said:
Will the Bootanimation factory, image resizer, and photoshop work on my PC?? it runs windows service pack 2 64-bit??
Sharm♡♥♡♥ Android 4.1.2 [T3RomV²]
Click to expand...
Click to collapse
Hello..!!
Ya it will work without any problems...Just Install Microsoft .NET Framework 4.0 before installing bootanimation factory... Good luck...

[GUIDE] How to change Rom Name of Custom Rom

CLICK FOR THE UPDATE​
Here is a way by which you can Change the Displayed Custom Rom Name
THIS CANNOT BE DONE BY EDITING "build.prop" FILE SO READ THIS GUIDE FOR XPERIA DEVICES CUSTOM ROMS.
Software Needed (downloads attached below)
1) Java
2) 7-zip
3) Notepad ++
4) Advanced APK Tools
Files Needed From Custom Rom:
1) framework-res.apk (from "system >> framework ")
2) SemcGenericUxpRes.apk (from "system >> framework ")
3) settings.apk ( from "system >> app")
Expected From You :
1) Some Time
2) Patience
3) Basic knowledge of Installing Software.
Step wise Guide
STEP 01 : Download and Install "Java" and "Notepad++". Extract "Advanced APK Tools".
STEP 02 : Place the Three Files mentioned above from Custom Rom to "2-IN" folder of Advanced APK Tools.
STEP 03 : Open "Advance ApkTool.exe"; it will check Java on your your PC and then you will get a screen showing different options.
STEP 04 : Type "1" and press Enter to select the Option "1- Install Framework". Install "framework-res.apk" and "SemcGenericUxpRes.apk". Then come back to Main Menu.
STEP 05 : Type "2" and press Enter to select the Option "2- Decompile Files". Decompile "settings.apk" and wait for some time as it will take some time. After decompiling minimize "Advance APK Tools" but DO NOT CLOSE it.
STEP 06 : Open "3-OUT" folder in "Advance APK Tools" folder. There you will see a folder names "Settings.apk". Open this folder and go to " res >> values " folder.
STEP 07 : In the Values folder open the file "strings.xml" using Notepad++. Press "ctrl" and 'F" keys on the Keyboard of your PC at the same time to find the Rom Name as shown in Device. After Finding the ROM Name replace it with Whatever you Want. Save this file and Close is.
STEP 08 : Go back to "Advanced APK Tools" and Type "3" and press Enter to select the Option "3-Recompile Files". Recompile "settings.apk" and wait for some time as it will take some time. After recompiling close "Advance APK Tools".
STEP 09 : Now go to "4-OUT" folder of "Advanced APK Tools" where you will find "settings.apk". Extract this file using 7-zip.
STEP 10 : Open the extracted "settings.apk" and delete the file "Android Manifent.xml " inside it.
STEP 11 : Open 3-OUT" folder. Then go to "Settings.apk folder >> original " from this folder Copy all the contents i.e. "META-INF" folder and " AndroidManifest.xml" file and paste them in extracted "settings.apk" in "4-OUT" folder.
STEP 12 : After all this, select all contents of settings.apk in 4-OUT Folder and add them to archieve using 7-Zip and replace ".zip" extention by ".apk".
Place this "settings.apk" into "system >> app " folder of Custom Rom and flash this Custom Rom. You will have the ROM NAME changed.
Hurray!!! You have successfully Changed the ROM NAME of Custom Rom for Xperia Devices.
Firstly, this thread has nothing to do with Development so I've moved it to General where it should have been created.
Secondly, you have no permission to attach the file: Advancedapktool.zip
Thirdly, you posted no credits to the original author for this tool.
I've removed the tool and linked to the original authors thread instead.
Sorry for the mistakes, I will take care next time

[Guide] HOW To Port Bootanimtion to Your Suitable Resolution

HI GUYS
Do you used to have a conversation like this one
..A: HEY!!!!!. your phone's bootnimation is very nice, could you send it to me??
..B: Sorry, it's not suitable with your screen reslution.
..A: ohh, Do you know how to change the resolution?.
..B: you can go to xda and ask how
_IF you're looking how to change the bootainmation resolution you're in the right place.
Requirement:
1. Windows 7
2. MIR (multiple image resizer) <from attachment> .
3. Bootanimation factory <from attachment>.
4. the bootanimtion you want to resize (I'm going to work on xperia lollipop bootanimtion.
NOTE: every step has its explaining image in the attachments.
and suggest to download the photos then start because you will need them they will help you alot.
NOW lets get started:
RESIZING THE IMAGES
1. extract the bootanimation to a folder .
2. open the MIR and click on "open a folder of images" then navigate to the 'bootanimation' folder.
3. select 'part0' and the photos in the parrt0 folder will loaded like in the attached photo .
4. now go to the resizing window and set the suitable resolution (in my case will be 480*854).
5. now create another folder and rename it "bootanimation" and create in that folder the same folders in the original bootanimation folder.
6. get back to MIR and to "save option" window and save the resized photo(s) to the folder you have created.
Code:
IF you take the photos that you have resized form 'part0' folder then safe it in part0 folder in the new created folder
part0----------->part0
part1----------->part1
part2----------->part2
etc............
7.now do the same thing with "part1, part2 , part3 ............etc" .
CREATING THE BOOTANIMTION
8. now open the Bootanimation factory and select "create a bootanimtion" and select " folder" .
9. select "chose folder " and chose the new created folder.
10. now go to original bootanimtion folder and to desc.txt .
11. get back to bootanimation factory and select the first line in the top right menu. and click edit.
12. edit the (FBS) to the suitble one in the desc.txt . for example if it was "20" in desc.txt then make "20".
13. now add loops and make them the same values in the desc.txt
14.click "create bootanimation" .
15. CONGRATULATION YOU HAVE YOUR OWN NEW BOOTANIMTION.
HOW TO INSTALL:
1. Push THE BOOTANIMATION.zip to system/media
2. give it rw-w-w
3. Reboot; ENJOY IT!!
..A: So that's it , it's so easy.
..B: yeah, I can now resize every bootanimtion I like.
..n78 shadow: guys please continue your conversation out of this thread.
FAQ
..A:why don't we just change the resolution in desc.txt
..n78 shadow:it won't work you need to change the images size and if you try will have a bootloop
..B:The folders in the original bootanimtion wasn't named "part0" they were named "generic1" .
..n78 shadow:No problem you can rename it in the new created folder "part0" just remember that the phone will play first "part0" folder then "part1" folder .......etc
NOTE:
1. if you have any question post it here.
2. if you feel it complicated or you didn't under stand something tell me
3. if you want to skip all those steps just send the bootanimtion to me here in this thread and I will resize it for you.
:good::goodon't forget to hit thank :good::good:

[Sony Ericsson Arc S][ROM MODIFY] Modify/Edit System.sin and repack Flash file FTF

HI Everyone
As you might have heard that you can't modify Sony Ericsson Arc s Flash file, i.e sin file, as it requires sony's signatures and blah blah...
but wellp it's not true, now you can modify it, i found a solution but it's a messy way to go through but well it works and tested by me. might also work Sony ericsson arc rom as well.
Note: The Yaffey tool is currently only supported on Windows pc. But you can other tools if you afe linux user their are several available
Here's the trick:
/**
# your warranty is now void.
I am not responsible for any damages to your phone or your surroundings.
**/
Tools needed(compulsory):
Flashtools (version 0.9.18.6)
WinRar (Recommended)
Yaffey tool (only Windows version available), or any yaffey editor extractor/repacker on your linux.
Notepad++ (text editor)
Steps:
Extract FTF flash file(your device flashfile).
Copy "sytem.sin" to a temporary working folder.
Open flashtools click "Tools" > "Sin editor" select the "sysytem.sin" file and click "Extract Data" then "system.yaffs2" file will be created in same folder.
(Download Yaffey tool from below)
Open yaffey tool.
Click "Open" and select the "system.yaffs2" file.
Now delete/modify from this tool, when done click "File" > "Save as" enter new name "system-new.yaffs2" and save it.
now you have a new "system-new.yaffs2" file.
Open flashtools goto "Tools" > "Sin editor" select the "system.sin" file again.
now click "Advanced" > "Create sin as" and select the "system-new.yaffs2" file which we created earlier, then click "Open".
wait till it's complete, now that "system-new.yaffs2" file will be converted into "system-new.yaffs2.sin" file, rename it to "system.sin".
Now extract the full Flashfile "*.ftf"(your device fashfile) in a temporary folder with Winrar. Now open the "META-INF/MANIFEST.MF" with any text viewer/editor and note down the "branding" and "version" it will be used while repacking the rom.
and then Don't touch any file just replace the "system.sin" file with the file we create renamed to "system.sin" earlier.
then most of you might know what to do, now we have to repack the flashfile by flashtools so Open Flashtools click "Tools" > "Bundles" > "create" then double click on Device column and select the device name by double clicking it. enter the Branding and version(enter the info we got earlier from "manifest.mf" file) check "No final verification". click "..." on upper right side and select the temporary folder where your full flashfile was extracted and click "ok". then you will find many files in "folder list" column select all files expect "*.ta" files if any. then click "->" button all files will be moved to "Firmware content" column then click "create", now wait till it's completed.
Now the rom is successfully created, You can find the firmware in "Firmwares" folder in flashtools data folder(for windows pc: it wil be in users or programdata folder in ".flashtools/firmwares/ dir").
You can now flash it to your device from flashtools
/**
Extra Info for those who can't flash a flashfile and gets error.
**/
If their's error then we need to change flashfiles cmd25 checksum to false.
then:
open flashfile.ftf with winrar, extract "MANIFEST.MF" file in META-INF folder to a temporary folder, and open it with Notepad++ and change line "cmd25: true" to "cmd25: false" remove the lines "rda: " and "revision:" if exists and save it.
the file should look something like this:
Code:
Manifest-Version: 1.0
device: LT18i
branding: (1254-2184)
Created-By: FlashTool
cmd25: false
version: 4.1.B.0.587
Now open Winrar open META-INF folder, then click "Add" and selct the edited "MANIFEST.MF" file and click "ok" again "Ok" in winrar dailog now the file will be overriden now it's you can flash it.
Enjoy
Really spent few hour to look around the internet but found nothing, i wanted to remove the bloatwares from my Sony Ericcson LT18i.
Get flashtools from GDrive:
Flashtools v0.9.18.6.exe (118mb)

Lava R1s (No camera, No gps) Ressurection Remix RR-N-v5.8.5 (Nougat 7.1.2)

-Bringing to you Ressurection Remix nougat for Lava R1s
-NOTE: This ROM is only build for LAVA R1s, Which is non-camera, non-gps version of Lava R1. It is not meant for Lava R1.
-NOTE: I am not responsible if you phone bricks or your data is lost.
-NOTE: This ROM needs to be flashed using SP Flash tools
-Thanks to all earlier MTK devs who made it easy to compile ROM for Lava R1s.
Download ROM https://github.com/maniacx/Lava-R1s-ROMs/blob/RR-N-v5.8.5-08-Aug-2020/Ressurection_remix.zip
Instructions:
Lets Backup your ROM. It is a bit time consuming but it is worthed.
Overview
Step no 1: Install MTK VCOM drivers
Step no 2: Install SP_FLASH_TOOL 5.19.24
Step no 3: Backup your current ROM. (Long process)
Step no 4: Installation of ROM.
Detail intructions
1. Install MTK VCOM drivers (On you PC/Laptop) if not already installed.
* Download VCOM drivers for Windows 10 for -> https://androidfilehost.com/?fid=962021903579482090
* Extract it to a folder.
* Go to Device Manager.
* Click on the name of your pc/LAPTOP
* Right-click on the name and select "Add Legacy Hardware".
* A new wizard will pop up. Just click on "Next".
* Select "Install the hardware that I manually select from the list (Advance)" and click "Next".
* From the long list in the following screen, just select "Show All Devices" and click "Next".
* Click on "Have Disk" in the following window and select the file "Windows 10 x64 MTK USB Drivers.inf" for 64bit Windows 10
(Note: Most PC are 64bit but if you are using 32bit version, Select "Windows 10 x86 MTK USB Drivers.inf")
* Click "Next"
* If asked for security warning select " Install Anyway"
Alternatively you can watch this Youtube video of how to install MTK VCOM drivers
(You can skip few instruction and start watching from 4:09 till the end)-> https://www.youtube.com/watch?v=T0n9dXZb6xo
2.Install SP_FLASH_TOOL 5.19.24
* Download SPflash tool for windows. https://spflashtool.com/
* Extract the SP_Flash_Tool_v5.1924_Win.zip in a folder.
* Open the file "option.ini" in Notepad. Under [Readback] change the text "ShowByScatter=false" to "ShowByScatter=true" and Save.
3. Backup your current ROM.
* Create a folder to backup ROM. Lets name it "Backup_lava_r1s"
* Download the file "LAVA_R1S_Android_scatter.txt" and copy is in the folder "Backup_lava_r1s"
* Run the SP_FLASH tool from the folder you have extract the files by double clicking "flash_tool.exe"
* You will automaically shown the screen tab for Downloads. For "Scatter-loading File" Choose "LAVA_R1S_Android_scatter.txt" in your backup folder "Backup_lava_r1s".
* Click on "Readback" tab. You will see of table with a list of partitions on the device.
* Double click on "preloader". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "preloader_lava6737m_sp504_int.bin". Then Click "OK".
* Double click on "preloader". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "preloader_lava6737m_sp504_int.bin". Then Click "OK".
* Double click on "pgbt". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "pgbt". Then Click "OK".
* Double click on "procinfo". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "procinfo". Then Click "OK".
* Double click on "nvram". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "nvram". Then Click "OK".
* Double click on "protect1". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "protect1". Then Click "OK".
* Double click on "protect2". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "protect2". Then Click "OK".
* Double click on "lk". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "lk.bin". Then Click "OK".
* Double click on "para". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "para". Then Click "OK".
* Double click on "boot". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "boot.img". Then Click "OK".
* Double click on "recovery". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "recovery.img". Then Click "OK".
* Double click on "logo". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "logo.bin". Then Click "OK".
* Double click on "expdp". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "expdb". Then Click "OK".
* Double click on "seccfg". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "seccfg". Then Click "OK".
* Double click on "oemkeystore". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "oemkeystore". Then Click "OK".
* Double click on "secro". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "secro.bin". Then Click "OK".
* Double click on "keystore". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "keystore". Then Click "OK".
* Double click on "tee1". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "trustzone1.bin". Then Click "OK".
* Double click on "tee2". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "trustzone2.bin". Then Click "OK".
* Double click on "frp". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "frp". Then Click "OK".
* Double click on "nvdata". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "nvdata". Then Click "OK".
* Double click on "metadata". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "metadata". Then Click "OK".
* Double click on "system". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "system.img". Then Click "OK".
* Double click on "cache". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "cache.img". Then Click "OK".
* Double click on "userdata". It will ask you the folder location and file name for the partition to be saved.
Choose folder Backup_lava_r1s and give file name "userdata.img". Then Click "OK".
*Tick all the partitions. preloader,pgbt,procinfo,nvram,protect1,protect2,lk,para,boot,recovery,logo,expdp,seccfg,oemkeystore,secro,keystore,tee1,tee2,frp,nvdata,metadata,system,cache,userdata
* Now Power off your lava R1s. Disconnect Mobile from Laptop/PC if connect using USB.
* Click "Readback" button.
* Connect your lava R1s to you PC using USB. It will start transfering paritions files to the PC in Backup_lava_r1s folder. Wait for transfer to complete.
Thats it. Keep these files safe, so that you will be able to restore original StarOS ROM for Lava R1s.
Alternatively you can watch https://www.youtube.com/watch?v=KRnz4iu85aE
4: Installation of ROM.
* Downloads the ROM file.
* Extract it to a folder "RRemix"
* Run the SP_FLASH tool from the folder you have extract the files by double clicking "flash_tool.exe"
* You will automaically shown the screen tab for Downloads. For "Scatter-loading File" Choose "MT6737M_Android_scatter.txt" in your backup folder "RRemix".
* Make sure the following are ticked for download on the phone boot,recovery,system,cache,userdata.
* Now Power off your lava R1s. Disconnect Mobile from Laptop/PC if connect using USB.
* Click on "Download" button.
* Connect your lava R1s to you PC using USB. It will start transfering paritions files to the phone. Wait for transfer to complete. This will install Ressurection Remix ROM and TWRP recovery.
Now you can start you Lava Phone and enjoy ressurection remix.
Alternatively you can watch this video https://www.youtube.com/watch?v=aht7Ey6WyNg
5. Installing Gapps or Magisk.
* Boot into TWRPrecovery but turning off your phone. Hold "Volume UP" buttton and "Power" Button until the device give an 3 option to choose between Recovery, Fastboot and Normal.
* Use "Volume Up" button arrow to move pointer to "Recovery" and press "Volume down" button to boot into TWRP recovery.
If you want to install Gapps, visit https://opengapps.org/ and select ARM64, 7.1, pico and download and copy to your phone when in recovery using USB cable.
install gapps
If you want to install Magisk, visit magisk site and download "Magisk 20.4" and copy to your phone when in recovery using USB cable.
install magisk
Unfortunately as reported by CarlosSprekeslen , Bluetooth fails. as one file went missing probably during compilation or during zipping the rom.
To fix bluetooth
1. Download the attached zip file "Bluetooth_fix.zip" on you sdcard
2. Reboot to TWRP recovery
3. Install the zip
4. Reboot
How to install TWRP in Lava_R1s no camera?
R1as said:
How to install TWRP in Lava_R1s no camera?
Click to expand...
Click to collapse
To install TWRP only.
Download magisk zip (installer fir recovery) and save in you phone
Follow instructions step 1 to 3 on the first post.
Step 3 is important as it will backup your starOS rom.
And follow modified step 4 below
4: Installation of recovery.
* Downloads the ROM file.
* Extract it to a folder "RRemix"
* Run the SP_FLASH tool from the folder you have extract the files by double clicking "flash_tool.exe"
* You will automaically shown the screen tab for Downloads. For "Scatter-loading File" Choose "MT6737M_Android_scatter.txt" in your backup folder "RRemix".
* Make sure the only recovery is ticked for download on the phone .
* Now Power off your lava R1s. Disconnect Mobile from Laptop/PC if connect using USB.
* Click on "Download" button.
* Connect your lava R1s to you PC using USB. It will start transfering paritions files to the phone. Wait for transfer to complete. This will install TWRP recovery only, without removing Star OS
!!! IMPORTANT Step.!!!
Power off and boot in recovery by holding power button and volume up button.
It will boot into TWRP recovery. Install magisk.zip
!! NOTE !!
After flashing using SP tool in step 4, If you do not boot in recovery the first time, and/or if you do not install magisk, It will make your phone not bootable. And you might have to restore all partition that you backed in step 3 which is very time consuming

Categories

Resources