Hey,
I have looked all over my S3, can anyone tell me where the boot animation us stored?
Sent from my SCH-I535 using Tapatalk 2
BeADroid said:
Hey,
I have looked all over my S3, can anyone tell me where the boot animation us stored?
Sent from my SCH-I535 using Tapatalk 2
Click to expand...
Click to collapse
Root explorer... System.. Media..
Sent from my SCH-I535 using xda premium
Or you can put it in. /data/local and it will over ride what is in here^^^
Sent from my Sammy Galaxy S3 using Tapatalk 2
Thanks guys, but that doesn't work for SG3. I have tried both places. And I can't seem to find where the bootanimation is stored. I know it can be changed, since a lot of devs have added the international boot animation. So any help?
Sent from my SCH-I535 using Tapatalk 2
BeADroid said:
Thanks guys, but that doesn't work for SG3. I have tried both places. And I can't seem to find where the bootanimation is stored. I know it can be changed, since a lot of devs have added the international boot animation. So any help?
Sent from my SCH-I535 using Tapatalk 2
Click to expand...
Click to collapse
Dunno what to tell you, but it is root/system/media. It's the two bootsamsung qmg files. If you rename the extension to .bak like I did you will see you have no boot animations.
Use root explorer and search for boot....zip
Sent from my Galaxy S III using Forum Runner
Thanks, I was looking for the old bootanimation.zip. I found this thread at android police on changing. qmg boot files
http://www.androidpolice.com/2011/0...-waiting-for-your-phone-to-turn-on-suck-less/
Haven't tried it all yet. But way different than my other 7 android devices.
Sent from my SCH-I535 using Tapatalk 2
Karl said:
Use root explorer and search for boot....zip
Sent from my Galaxy S III using Forum Runner
Click to expand...
Click to collapse
There is no bootanimation.zip on the vzw gs3. It is bootsamsung.qmg
The only way, I think, to get a custom animation is to flash it in recovery... or figure out how to convert videos to Samsung's proprietary qmg format.
Boot animation files:
/system/media/bootsamsung.qmg
/system/media/bootsamsungloop.qmg
Boot sound files:
/system/media/audio/ui/PowerOff.ogg
/system/media/audio/ui/PowerOn.ogg
QUESTIONS GO IN Q&A, NOT DEVELOPMENT!!.
Moved
mb27 said:
There is no bootanimation.zip on the vzw gs3. It is bootsamsung.qmg
The only way, I think, to get a custom animation is to flash it in recovery... or figure out how to convert videos to Samsung's proprietary qmg format.
Click to expand...
Click to collapse
thanks for pointing that out
You dont need to flash anything or change the qmg files. Put the bootanimation.zip into system/media then go to system/bin and find two files named samsungani and bootanimation(no extension on these). delete samsungani and rename bootanimation to samsungani. Must warn tho you have to alter the bootanimation.zip you are using. inside your bootanimation.zip will be a file called desc.txt and it will look something like this
720 1280 30
p 1 0 part0
p 0 0 part1
You must change the 0 in the second line to 1 or higher otherwise it will stay on the animation and the phone wont finish booting. it should look like this
720 1280 30
p 1 0 part0
p 1 0 part1
you only have to change that one 0 thats in bold
billard412 said:
You dont need to flash anything or change the qmg files. Put the bootanimation.zip into system/media then go to system/bin and find two files named samsungani and bootanimation(no extension on these). delete samsungani and rename bootanimation to samsungani. Must warn tho you have to alter the bootanimation.zip you are using. inside your bootanimation.zip will be a file called desc.txt and it will look something like this
720 1280 30
p 1 0 part0
p 0 0 part1
You must change the 0 in the second line to 1 or higher otherwise it will stay on the animation and the phone wont finish booting. it should look like this
720 1280 30
p 1 0 part0
p 1 0 part1
you only have to change that one 0 thats in bold
Click to expand...
Click to collapse
Awesome thanks, I'll give it a try today.
Sent from my SCH-I535 using Tapatalk 2
BeADroid said:
Awesome thanks, I'll give it a try today.
Sent from my SCH-I535 using Tapatalk 2
Click to expand...
Click to collapse
Any luck? I think I've read about what billard412 posted in another place but I could have sworn someone followed up saying it didn't work for them. Maybe they did it wrong? I'm not sure, but I really hate the factory boot animation so I'd love to know!
billard412 said:
You dont need to flash anything or change the qmg files. Put the bootanimation.zip into system/media then go to system/bin and find two files named samsungani and bootanimation(no extension on these). delete samsungani and rename bootanimation to samsungani. Must warn tho you have to alter the bootanimation.zip you are using. inside your bootanimation.zip will be a file called desc.txt and it will look something like this
720 1280 30
p 1 0 part0
p 0 0 part1
You must change the 0 in the second line to 1 or higher otherwise it will stay on the animation and the phone wont finish booting. it should look like this
720 1280 30
p 1 0 part0
p 1 0 part1
you only have to change that one 0 thats in bold
Click to expand...
Click to collapse
WorkedForMe.
And thanks for the tip about the final part# not being able to loop infinitely since the phone won't break out of the loop when it's done booting up and you'll be stuck. I just had to test to see if that was the case, and it is, but I made a simple clockworkmod script to delete("/system/bin/samsungani") to fix it for me, which I'm glad worked, since my current clockwordmod version doesn't support either ADB or the external SD. If it didn't work, I would've had to reflash from Odin.
---------- Post added at 01:30 AM ---------- Previous post was at 01:07 AM ----------
I haven't created a boot animation in almost 2 years, but made one tonight just to mess around with the higher resolution, and it turned out alright.
And, IN DETAIL, on a rooted stock Touchwiz ROM, this is how you set it up for custom boot animations. You only have to do following setup once:
Code:
$ [B]adb shell[/B]
[email protected]:/ $ [B]su[/B]
[email protected]:/ # [B]mount -oremount,rw /system[/B]
[email protected]:/ # [B]cd /system/bin[/B]
[email protected]:/system/bin # [B]ll sam* boot*[/B]
-rwxr-xr-x root shell 14572 2012-05-21 13:41 samsungani
-rwxr-xr-x root shell 5540 2012-05-21 13:41 samsungpowersoundplay
-rwxr-xr-x root shell 23236 2012-05-21 13:41 bootanimation
[email protected]:/ # [B]cp -a samsungani samsungani.bak[/B]
[email protected]:/ # [B]cp bootanimation samsungani[/B]
If you want to go back to the old samsung bootanimation, just copy samsungani.bak back over samsungani.
Now all you have to do is put your bootanimation.zip in /data/local and you're done.
Code:
$ adb push ../jb2_720x1280_bootanimation.zip /data/local/bootanimation.zip
9010 KB/s (16290715 bytes in 1.765s)
$ adb reboot
And here's a screenshot of one frame in my lame-ish test bootanimation:
{
"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"
}
Doesn't look as good on the phone, though. There's some bad banding, as if it's converting the 16bit pngs to 8bit.
HTH.
EDIT: uploaded this jellybean bootanimation here. I'll be releasing a much better one (of glowing beans filling a jar) down the road when my phone actually gets JB (either official, or CM10).
zmore said:
WorkedForMe.
And thanks for the tip about the final part# not being able to loop infinitely since the phone won't break out of the loop when it's done booting up and you'll be stuck. I just had to test to see if that was the case, and it is, but I made a simple clockworkmod script to delete("/system/bin/samsungani") to fix it for me, which I'm glad worked, since my current clockwordmod version doesn't support either ADB or the external SD. If it didn't work, I would've had to reflash from Odin.
Click to expand...
Click to collapse
Wish I could understand why it doesn't stop looping without the change. Never had a phone do that.
I just want to get rid of the ATT "rethink possible" portion of the animation. On my old phones it was always two different files, is it the same here or is the Samsung and ATT all one animation?
drock212 said:
I just want to get rid of the ATT "rethink possible" portion of the animation. On my old phones it was always two different files, is it the same here or is the Samsung and ATT all one animation?
Click to expand...
Click to collapse
If I had to guess I'd say one, but I'm on sprint who makes the whole bootanimation a fukn advertisement for their non-existent LTE. So I can't say for sure. I feel u on the "rethink possible" tho wat a dumbass slogan.
billard412 said:
Wish I could understand why it doesn't stop looping without the change. Never had a phone do that.
Click to expand...
Click to collapse
Yeah, haven't run into this before either. Just an annoying Samsung quirk.
FWIW, I uploaded my first jellybean bootanimation here. I'll be releasing a much better one (of glowing beans filling a jar) down the road when my phone actually gets JB (either official, or CM10)
Related
here's one of my earliest retakes of the boot animation
it isn't that good but it's better than stock...
tutorial on how to install and edit is all around xda...
i'll consolidate soon.
please feel free to add your custom boot animations for X10 Mini/Mini Pro
{
"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"
}
added new one w/o the branding so you can add your own...
it loops forever til the lock screen shows...
MY LAST ONE
can't test this anymore cause i've lost my phone...
maybe some of you guys can start making some too...
click image below to download
HOW TO REPLACE your bootanimation.zip with Root Explorer
no need to extract just rename to bootanimation.zip if it has a different name...
move bootanimation.zip to /system/media/
or to /data/local as snusdus pointed out...eats up precious space for your apps tho...
w the following permissions:
INFO on Bootanimation.zip
There is a file called bootanimation.zip stored in /system/media/ in the root file system. This file contains two things:
1) A description file (desc.txt) that outlines how the animation progresses, what images to use, image size etc.
2) Folder(s) that contain the images for the animation.(you can use JPGs as well as PNGs...)
The basic structure of the bootanimation.zip file is as follows:
bootanimation.zip
|-- desc.txt
|-- part0
`-- part1
part0 and part1 are directories that contain a series of images for example, in part 0 there is:
part0
|-- boot_00001.png
|-- boot_00002.png
|-- boot_00003.png
|-- boot_00004.png
|-- boot_00005.png
|-- boot_00006.png
|-- boot_00007.png
|-- boot_00008.png
|-- boot_00009.png
`-- boot_00010.png
And in part 1 there are:
part1
|-- boot_00011.png
|-- boot_00012.png
|-- boot_00013.png
|-- boot_00014.png
|-- boot_00015.png
|-- boot_00016.png
|-- boot_00017.png
|-- boot_00018.png
|-- boot_00019.png
`-- boot_00020.png
These images form the 'part0' and 'part1' animations that are combined as outlined in the 'desc.txt' file to form the overall startup animation. The images are ordered by number and run in sequence.
The 'desc.txt' file outlines how the animation progresses and a sample is as follows:
240 320 30
p 1 0 part0
p 0 0 part1
'240' is the width of the animation
'320' is the height of the animation
'30' is the desired fps of the animation
'p' is a separator, because it actually ignores line feeds and carriage returns.
1st line says: play 1 time -- pause for 0 frames (name of folder)
2nd line says: play infinite number of times -- pause for 0 frames before looping (name of folder)
You can name the folders whatever you want and use as many as you want, and you don't have to loop anything if you don't want to. Note that if your frame rate is "15", then for a 2-second pause you'd use "30". You don't have to use the width and height of the screen as your width and height. You can use smaller dimensions and it will fill the rest of the space with black, or you can use larger dimensions but it will crop to only show the center of the animation.
FOUND MORE INFO FROM THIS GUY elektronikbadger
s defines a sound for a part
sounds will be loaded from /data/local
oggs with loop points will loop automatically
only one sound will play at a time
timing is driven by the part, not the sounds
if you want no sound, declare 'none'
You can edit the desc.txt on any bootanimation to play whatever sound you want,
as long as the sound is called in the desc.txt and is also located in the /system/media/ folder.
haven't been able to make this work though...anyone's free to experiment
*apparently we need a bootanimation executable that supports audio on boot...still looking for
a suitable bootanimation...if anyone can post one from a phone that supports audio on boot...
/system/bin/bootanimation
Make sure to press enter after the last line in your desc.txt file.
Always make sure your ZIP is created in "store" mode, meaning that it has no compression. And make sure you delete any hidden files inside the ZIP, like "Thumbs.db" from Windows or ".AppleDouble" from a Mac.
Maybe wrong thread but anyways
I want to install custom boot animation but it dont works .. I have used some program (dont know what it was called, that worked) but then i put back my original and now i cant change bootanimation manual..
Please help
EDIT:Solved
im having trouble changing the bootanimation manually please tell me how and where exactly i should put the zip file and what is the permission used
hey your boot animation won't work on my Xperia x10 mini pro
i changed to the correct permissions etc... put it in the correct place via root explorer so i extracted the file and had a nosey it's different to other modern 2.1 animations
tekken179 said:
hey your boot animation won't work on my Xperia x10 mini pro
i changed to the correct permissions etc... put it in the correct place via root explorer so i extracted the file and had a nosey it's different to other modern 2.1 animations
Click to expand...
Click to collapse
i think so ..
Not working!
Sent from my U20i
thanks for the responses...
probably ticked the wrong file...
it should work now...
I have this in the file you gave me in the pm ozzy:
240 320 30
p 1 42800 part0
p 0 0 part1
What does that '42800' mean?
still doesnt work tested on 2.1 x10 mini pro, replaced using rootexplorer in
system/media - bootanimation.zip
with rw-r--r--
Manny- said:
I have this in the file you gave me in the pm ozzy:
240 320 30
p 1 42800 part0
p 0 0 part1
What does that '42800' mean?
Click to expand...
Click to collapse
it's a quick fix...
you can edit it to look like this:
Code:
240 320 30
p 1 0 part0
p 0 0 part1
don't forget to put a blank line after the last line...
just press enter after 'part1'
and save as is...
tekken179 said:
still doesnt work tested on 2.1 x10 mini pro, replaced using rootexplorer in
system/media - bootanimation.zip
with rw-r--r--
Click to expand...
Click to collapse
just updated first post w proper permissions...
sorry for not being thorough w the DIY...
i'm still learning myself...
When i put in /system/media/bootanimation.zip it didnt work
Then i test to put in /data/Local/bootanimation.zip and that worked .. so if you having problem test that..
Snusdus said:
When i put in /system/media/bootanimation.zip it didnt work
Then i test to put in /data/Local/bootanimation.zip and that worked .. so if you having problem test that..
Click to expand...
Click to collapse
Snusdus, what phone do you have?
Installed it, looks great
I installed it too (xperia one), pretty awesome, thanks.
Sent from my mind using my neurons' telepathetic waves.
Can you please make som more bootanimations, please! This was awsome.
ozzy1212 said:
Snusdus, what phone do you have?
Click to expand...
Click to collapse
U20i / x10 mini pro ..
i'll be updating soon...
working on a new tutorial and bootscreens...
If anyone can share, feel free to post yours
Worked on my mini..!
Thanks!
I do not understand why you made a new topic but it is nice, that you wrote a little how to, anyways in this thread are some more bootanimations: http://forum.xda-developers.com/showthread.php?t=831374
and I'm using this one right now http://www.youtube.com/watch?v=LjkcYzPnbOI
I spend a whole lazy sunday designing a custom boot animation.
It's supposed to look like that (two parts):
{
"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"
}
[Left: part0 - play once] [Right: part1 - loop]
Device: HTC Legend with CyanogenMod 6.1.0 (Android 2.2.1 Froyo).
I created a file bootanimation.zip (not compressed), following this howto I found on addictivetips.com
My Legend is rooted
I use ROM Manager to reboot into Recovery
I move the files to their destion directories with adb commands.
But when I store it in /data/local or in system/media and reboot my phone, only the first part (part0) is played. Then the animation stops, a black screen is displayed for about ten seconds, then the Enter PIN screen appears. I tried almost everything to make part1 visible:
Deleting and re-installing the animation with different parameters
Changing values in desc.txt (below)
Re-processing the .png files (8bit, 24bit, resizing etc.)
Changing the .png file names
My desc.txt:
320 480 24
p 1 10 part0
p 0 0 part1
Click to expand...
Click to collapse
Can someone tell me what is wrong with the attached bootanimation_NOTWORKING.zip file?
Have had this problem once too with a bootanimation.
Try renaming the map part0 to android and put everything in one line
For you it should be like this:
320 480 24p 1 0 androidp 0 0 part1
Click to expand...
Click to collapse
Tanks matn013, but that's not it. Even if put all frames to one folder, the animation stops playing after frame 12 or 13...
I suppose the issue here might be one of the ff:
Booting time too short (device is fully booted before all frames have played)
Defected .png (animation seems to stop at the same frame)
Memory issues (rendering of animation needs too much memory)
...is there a system log that I can check after the booting process?
EDIT: I found a solution to spot errors and save time when testing. You can use this adb command whilst phone is connected:
adb shell bootanimation
Click to expand...
Click to collapse
The bootanimation will run, and in your terminal you can see some error code. Thanks seb93
Solved!
After comparing mine to the original Cyanogenmod bootanimation, I did some more modifications to the animation:
reduced image sizes to 256x384
named files in consecutive order (even across folders) from fair_00000.png to fair_00026.png without leaving out a single number
named the folders android + part1
Which one did the trick? I don't know, but the attached file actually works.
Thanks for your help.
this is cool,use "Boot Animation Previewer" it works perfect,thanks for the boot
nexus s 4g
matn013 said:
Have had this problem once too with a bootanimation.
Try renaming the map part0 to android and put everything in one line
For you it should be like this:
Click to expand...
Click to collapse
I don't intend to bring a thread back from the dead, though I know that's exactly what I'm doing, but I have a purpose. Presenting a "known" solution.
I did a Google search 'cause I was having this same problem, and this thread got me on track. The portion of this thread got me thinking in the right direction to resolve this problem.
There needs to be a return line following the sequence presented in the quoted text. It is what I believe solved this issue.
Striker65 said:
I don't intend to bring a thread back from the dead, though I know that's exactly what I'm doing, but I have a purpose. Presenting a "known" solution.
I did a Google search 'cause I was having this same problem, and this thread got me on track. The portion of this thread got me thinking in the right direction to resolve this problem.
There needs to be a return line following the sequence presented in the quoted text. It is what I believe solved this issue.
Click to expand...
Click to collapse
I have the same problem as author of this tread. What return line do you mean and in which quoted text? Plz answer. I really want to make my own bootanimation.
AndroidNotMaster said:
I have the same problem as author of this tread. What return line do you mean and in which quoted text? Plz answer. I really want to make my own bootanimation.
Click to expand...
Click to collapse
In the "desc.txt" place all the info in it that's required. In my case it was all one line. If you have multiple lines go to the end of the last line and press "enter".
That's what solved my problem.
If that doesn't happen, it won't boot.
Striker65 said:
In the "desc.txt" place all the info in it that's required. In my case it was all one line. If you have multiple lines go to the end of the last line and press "enter".
That's what solved my problem.
If that doesn't happen, it won't boot.
Click to expand...
Click to collapse
Wow. Magic. One more line and whole bootanimation is working. Thanks.
Striker65 said:
In the "desc.txt" place all the info in it that's required. In my case it was all one line. If you have multiple lines go to the end of the last line and press "enter".
That's what solved my problem.
If that doesn't happen, it won't boot.
Click to expand...
Click to collapse
Thanks, man, just work for me, can't believe it's simple like this!
Striker nailed it! Thanks!
I'd been fighting it for at least a half hour, yet the fix was so simple!
I don't even know how I came across this thread, but if I hadn't, I might have gone insane. I can't believe it was something so stupendously simple.... You are a f***ing lifesaver, broseph.
can't believe it was just that extra line needed!!
Desperatly needed help ... now solved
Hi everyone,
You guys are likly to be my last resort !
I succesfully managed to push my downanimation which works as expected ..
But the bootanimation doesn't
I've tried adding the last line, encoding to ANSI or UTF-8 without BOM (and trying crazy things) but all this was vain
I spent so much time on it, it just drove me crazy and I have now absolutly no idea of what wrong with this
I hope you guys will be able to help :crying:
===
The day after ...
I figured out that when you add or replace files into the archive through windows explorer or 7-zip, the archive do not still uncompressed wich leads android to not be able to open the bootanimation zip file.
To sum this up, make sure you create bootanimation.zip from scratch with no compression and once created do not add or replace files directly inside it.
PS: Thank you for pointing out "adb shell bootanimation" command which saved my time a bit.
Holy cow! A simple carriage return and I was foinf crazy with this XDDDD
plz help me guys
i have copied the bootanimation.zip to the system/media then also its not showing the animation. i have set the resolutions also. i have an tab 2 p3100
Schimmerlos said:
After comparing mine to the original Cyanogenmod bootanimation, I did some more modifications to the animation:
reduced image sizes to 256x384
named files in consecutive order (even across folders) from fair_00000.png to fair_00026.png without leaving out a single number
named the folders android + part1
Which one did the trick? I don't know, but the attached file actually works.
Thanks for your help.
Click to expand...
Click to collapse
Hey, wow this thread is old. Could you fix my bootanimation.zip? It plays just fine but when i put it in /system/media it wont play. I can email you the part0, part1, desc.txt in a non working bootanimation.zip email me if you can help. [email protected]
Bootanimation not displaying
Facing same prob.Put bootanimation.zip in /system/media/ . However the animation doesnt come.Did you find your solution?
DevMyAndroid said:
Hey, wow this thread is old. Could you fix my bootanimation.zip? It plays just fine but when i put it in /system/media it wont play. I can email you the part0, part1, desc.txt in a non working bootanimation.zip email me if you can help. [email protected]
Click to expand...
Click to collapse
Basher51 said:
Facing same prob.Put bootanimation.zip in /system/media/ . However the animation doesnt come.Did you find your solution?
Click to expand...
Click to collapse
Nope. No one will help me. : \
Bootanimation not displaying
Ahh,crap....is it something to do with JB? I am using 4.2.2. Are you pushing using adb?
Also, did you try with the bootanimation apps which claim to change the boot anim.If so,any luck??
DevMyAndroid said:
Nope. No one will help me. : \
Click to expand...
Click to collapse
Ok fellow MoPhos...here's our first Boot Animation & Screen thread.
I'm gonna be whippin some up over the next few days...enjoy!!
Must Be Rooted
There are Two Methods for Doing This
Root Explorer method:
1. Rename your boot animation to bootanimation (if it's not already)
2. Put it on your SD card
3. Open Root Explorer and copy bootanimation.zip to /system/media. This will replace the existing boot animation (might be a good idea to rename stock one to bootanimation.zip.bak...just to have a backup)
4. Set permissions for the new bootanimation.zip (long press the file, choose permissions...then set it to match the backup exactly)
5. Reboot your phone
ADB method:
0. might be a good idea to rename stock one to bootanimation.zip.bak...just to have a backup...see above)
1. Make sure you have downloaded android sdk
2. Put android sdk in C:\
3. Set the directory of command prompt to C:\android-sdk-windows\platform-tools. Click here for a video tutorial.
4. Rename your boot animation to bootanimation and put it in C:\android-sdk-windows\platform-tools
5. Open cmd
6. Type in order:
-adb remount
-adb push bootanimation.zip /system/media/bootanimation.zip
-adb reboot
Boot Animations & Screens
►►Photon Space Warp Animated◄◄ - Credit BandageView attachment 692687
►►Star Trek Photon Screen◄◄ - Credit Bandage / Credit Image newalker91
{
"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"
}
►►Star Trek Photon Animated◄◄ - Credit Bandage / Credit Image newalker91
►►R2-D2 Droid◄◄ - Credit mdneilson
More to Come!!!
Reserved.....
Reserved2....
i keep trying to push the zip to the directory u said but its not working...keeps saying its a read-only file
C:\Root>adb push bootanimation.zip /system/media/bootanimation.zip
failed to copy 'bootanimation.zip' to '/system/media/bootanimation.zip': Read-on
ly file system
how do i get adb to connect
TexasRebel said:
i keep trying to push the zip to the directory u said but its not working...keeps saying its a read-only file
C:\Root>adb push bootanimation.zip /system/media/bootanimation.zip
failed to copy 'bootanimation.zip' to '/system/media/bootanimation.zip': Read-on
ly file system
how do i get adb to connect
Click to expand...
Click to collapse
Need to have your system set to RW (Read - Write). I've found THE easiest way to modify things like this is to grab Root Explorer from the market. Easy as pie this route! Not sure, but ES File Explorer MIGHT allow you to do the same.
Other than that, I have yet to use ADB to mount as RW on this device. Might shoot Yay4juggs or mikeyinid a PM and see what ADB command they are using for that...if they have done so in their exploration.
mount the file system with
Code:
adb shell
su
mount -o rw,remount /dev/block/mmcblk0p12 /system
Bandage said:
Need to have your system set to RW (Read - Write). I've found THE easiest way to modify things like this is to grab Root Explorer from the market. Easy as pie this route! Not sure, but ES File Explorer MIGHT allow you to do the same.
Other than that, I have yet to use ADB to mount as RW on this device. Might shoot Yay4juggs or mikeyinid a PM and see what ADB command they are using for that...if they have done so in their exploration.
Click to expand...
Click to collapse
ES File Exlporer has root access now
Good work... I'm loving the space warp one. It's a little laggy. But its cooler than ****.
Sent from this photon 4 f#@"# G
Any chance of providing a preview of all of the links?
I use Absolute System Root tools to install my boots. Works pretty well. Plus comes with a decent amount of them preinstalled.
Thank you Sir Bandage. If i didn't brake the bank-o-me on the phone I would be happy to buy you a beer right now. But I will as soon.
[email protected] said:
mount the file system with
Code:
adb shell
su
mount -o rw,remount /dev/block/mmcblk0p12 /system
Click to expand...
Click to collapse
Since /system is defined in fstab it isn't necessary to specify the block device... It can be done with:
Code:
mount -o rw,remount /system
Sent from my MB855 using Tapatalk
John Kotches said:
Since /system is defined in fstab it isn't necessary to specify the block device... It can be done with:
Code:
mount -o rw,remount /system
Sent from my MB855 using Tapatalk
Click to expand...
Click to collapse
Code:
[email protected]:~$ adb shell
$ su
# mount -o rw,remount /system
Usage: mount [-r] [-w] [-o options] [-t type] device directory
I have a question. I have a boot animation and I just want to change some of the colors, but when I do and try to reload it It wont show. is there some kind of secret im missing.
I've made themes but never tried to mess with boot animations, any help would be greatly appreciated.
Sent from my Moto Photon using xda premium
boot animation sound
Hi New to the photon 4G and rooting. I already rooted the Photon and want to install a boot animation. I already install the boot animation and it works perfect but I can not get the sound to work with animation. Is the photon capable of playing sound during animation. The animation I install is the one with the Killer-Droid-Destroys-Apple-boot-audio, it has the sound un a zip I have unzip in all the folder locations that I can think of. The only way I got the animation to work was to copy and paste to data\local. I have install the sound on the system\media, system\media\audio, in audio on all sub folders and at data\local folder. One thing I notices is the desc.text file has the following script:
480 800 200
p 1 0 part0
p 0 0 part1
I tried to write one with the following:
480 800 200
p 1 0 part0
s SPC_animation_final.mp3
p 0 0 part1
I got the Idea from another boot sound for the same boot animation, but that one has a script that will not load or play:
It plays on the Touch 4G
540 960 200
p 1 0 part0
s bootfx.mp3
p 0 0 part1
I tried it with the all spacings and no luck, I am hoping that somebody guides me in the right direction, or Am I out of Luck and the Photon will not play boot animation sounds.
Thanks for any help or advice.
Thank you for this! Very cool stuff! Got rid of that nasty Sprint animation Can't wait to see if more come along!
Here is one I built a while back and modded to use on Photon with multiple sounds (was curious if that was possible).
Also, the resolution is a little smaller than our screens since I made it for an older phone and because of that it doesn't fill up the screen on the Photon...maybe I'll redo it someday...
Use usual placement...bootanimation.zip in system/media and the 3 mp3 files in the mp3 files.zip go to system/media/audio/notifications.
Pic is sample of one frame in animation...
hdmunger said:
Here is one I built a while back and modded to use on Photon with multiple sounds (was curious if that was possible).
Also, the resolution is a little smaller than our screens since I made it for an older phone and because of that it doesn't fill up the screen on the Photon...maybe I'll redo it someday...
Use usual placement...bootanimation.zip in system/media and the 3 mp3 files in the mp3 files.zip go to system/media/audio/notifications.
Pic is sample of one frame in animation...
Click to expand...
Click to collapse
Haha, that's awesome. Played the sounds on my computer. While the first sound doesn't go with the LCars interface, the other two are pretty cool.
--EDIT--
Added this boot animation to my phone.
Does anyone know if the Photon Space Warp still exists, link doesn't work.
Sent from my MB855 using xda premium
I second that.
FernBch said:
Does anyone know if the Photon Space Warp still exists, link doesn't work.
Sent from my MB855 using xda premium
Click to expand...
Click to collapse
It seems as if the file hosting site is no long online. Would anyone be able to repost the space warp animation .zip?
It's been a while since I have made one of these - back during the 1st gen MyTouch was hopping.
I made this bootscreen from scratch with the intention of sharing it out with you all and ran into a snag with the animation not appearing. Thanks to a member of our boards, this issue has been worked out and now I can finally toss this out to you all. I added the "(s)" to the title since I hope to throw a few more out there as well. I also have a "MoPho" boot coming soon that I will include in this thread as well.
Special thanks go out to dased14 for his help in getting things resolved.
So here we go....
This should go without saying, but in order to use this:
Download the zip file for the animation you like.
Rename zip file to "bootanimation.zip", if needed
Place zip on phone
Using Root Explorer, Estrongs, etc. Move file to /System/Media/
Reboot and enjoy
** You MUST be rooted **
As with all other contributions. If you like it - Mash the Thanks button.
Boot Particle Animation
{
"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"
}
More Boot Animations
Here is a simple "MOPHO" loop, utilizing the Motorola font and colors. Named mopho_boot.zip
This is an energy wipe, revealing "Powered by Android". Named pba_energy.zip
This is another version of the energy wipe, revealing "MOPHO" >>> "Powered by Android". Named mopho_pba.zip
per request by twospirits
Great job....already posted this in other thread but thought I'd give you props here too.
Sent from my MB855 using xda premium
Thank you. More will come this week, hopefully.
Sent from my MB855 using Tapatalk
Works perfectly, gotta love root explorer
Sent from my MB855 using XDA App
More boot screens added. Njoy!
bootanimation.zip
Hello. Noob question..
When i try to move bootanimation.zip to /System/Media/ using root explorer, i get a the message cant move system file read only. I am rooted, unlocked , using Alien rom. How can i resolve this? Tried searching but cant find anything.
Thank you
Sorry for post, i figured it out.. thx
Great boot animations! Keep 'em coming!
Thanks a ton! These are great.
charlie2900 said:
Hello. Noob question..
When i try to move bootanimation.zip to /System/Media/ using root explorer, i get a the message cant move system file read only. I am rooted, unlocked , using Alien rom. How can i resolve this? Tried searching but cant find anything.
Thank you
Sorry for post, i figured it out.. thx
Click to expand...
Click to collapse
Top right of screen, should read mount r/w. Hit the button and it will say mount r/o..should work then
Sent from my MB855 using xda premium
pIxiLatEd said:
Boot Particle Animation
Click to expand...
Click to collapse
pIxiLatEd said:
Here is a simple "MOPHO" loop, utilizing the Motorola font and colors. Named mopho_boot.zip
This is an energy wipe, revealing "Powered by Android". Named pba_energy.zip
Click to expand...
Click to collapse
Have you had a chance to also add sound to the custom bootanimation? If so, could you post examples of where the sound file (e.g. file name format and file extension type) we would need to put in the /system/media folder or where it needs to be?
I tried to add the letter "s" following each line of code and have a android_audio.mp3 file in the /system/media file but the animation works without sound.
For example, I have something like the following in the desc.txt:
540 960 15
p 1 15 Part0 s
p 1 0 Part1 s
p 1 0 Part2 s
Is this correct?
Thanks,
GP
GPhoenix said:
Have you had a chance to also add sound to the custom bootanimation? If so, could you post examples of where the sound file (e.g. file name format and file extension type) we would need to put in the /system/media folder or where it needs to be?
I tried to add the letter "s" following each line of code and have a android_audio.mp3 file in the /system/media file but the animation works without sound.
For example, I have something like the following in the desc.txt:
540 960 15
p 1 15 Part0 s
p 1 0 Part1 s
p 1 0 Part2 s
Is this correct?
Thanks,
GP
Click to expand...
Click to collapse
You have to have the sound file in the system/media/audio/notifications folder and the desc it should look kinda like this
540 960 20 < example
p 1 0 part0 < example
s nameofsound.mp3 < put this where you want the audio to start <EXAMPLE
p 0 0 part1 <example
dased14 said:
You have to have the sound file in the system/media/audio/notifications folder and the desc it should look kinda like this
540 960 20 < example
p 1 0 part0 < example
s nameofsound.mp3 < put this where you want the audio to start <EXAMPLE
p 0 0 part1 <example
Click to expand...
Click to collapse
Thanks for answering this for me - I have been job hunting/interviewing these past few days so I haven't had a chance to check on this thread.
pIxiLatEd said:
Thanks for answering this for me - I have been job hunting/interviewing these past few days so I haven't had a chance to check on this thread.
Click to expand...
Click to collapse
never a problem to lend a hand, good luck on the job hunting
pIxiLatEd said:
Here is a simple "MOPHO" loop, utilizing the Motorola font and colors. Named mopho_boot.zip
This is an energy wipe, revealing "Powered by Android". Named pba_energy.zip
Click to expand...
Click to collapse
It would be awesome if these two would be combined into one.
I'm also liking the boot particle one too.
Very nice work.
twospirits said:
It would be awesome if these two would be combined into one.
I'm also liking the boot particle one too.
Very nice work.
Click to expand...
Click to collapse
here you go try this
(remove from the named zip and place the bootanimation zip where it goes and rename if need be)
How about I have the same green smoke/wipe reveal "MoPho" then wipe again to reveal the "Powered by Android" bit? Then it will look consistent.
Not sure what this weekend holds for me, but I will make that and have it posted by sometime on Monday.
This past week has had me busy interviewing for work, but I'll have some free time coming soon to make a few more. I'll do the one mentioned above first.
Sent from my MB855 using Tapatalk
dased14 said:
here you go try this
(remove from the named zip and place the bootanimation zip where it goes and rename if need be)
Click to expand...
Click to collapse
thanks
pIxiLatEd said:
How about I have the same green smoke/wipe reveal "MoPho" then wipe again to reveal the "Powered by Android" bit? Then it will look consistent.
Not sure what this weekend holds for me, but I will make that and have it posted by sometime on Monday.
This past week has had me busy interviewing for work, but I'll have some free time coming soon to make a few more. I'll do the one mentioned above first.
Sent from my MB855 using Tapatalk
Click to expand...
Click to collapse
awesome
TS
pIxiLatEd said:
How about I have the same green smoke/wipe reveal "MoPho" then wipe again to reveal the "Powered by Android" bit? Then it will look consistent.
Click to expand...
Click to collapse
twospirits said:
thanks
awesome
Click to expand...
Click to collapse
Your wish is granted. Long live Jambi
Firstly this tutorial is by despotovski01
Introducion
Hi guys!
Today, I'm going to teach you how to make your own boot animations. Please read this thread carefully to the end, in order to succeed in making your boot animation.
Requirements:
-A photo-editing program (GIMP and Photoshop are the best), which can save pictures in .png format
-A text editor (everyone has that)
-An archive-managing program (Power Archiver, WinZip), that is capable of making .zip archives
Tutorial:
1. Create part0 and part1 folders (in this folders, the frames of the boot animation are stored. Usually, there are only 2 parts in a boot animation, but you can add as many as you want. The frames in the part0 folder are usually repeated once, and the frames in part1 folder are usually looped several times, or infinite.)
2. Draw every frame of your boot animation manually (save every frame as you do it. Save the first one as 10001.png, the second one as 10002.png, and so on. Save them in the part0 and part1 folders - the frames in part0 folder will be showed only once, and the frames in part1 folder will be looped. But, you can change that if you want. Changing the looping property will be discussed in the following steps. WARNING: ALWAYS SAVE THE FRAMES IN .PNG OR .JPG FORMAT!)
3. Make a desc.txt file in the directory where the part0 and part1 folders are and edit it as following:
320 480 30
p 1 0 part0
p 0 0 part1
Click to expand...
Click to collapse
(The numbers 320 and 480 is the resolution of your boot animation. Change them as you want. The number 30 means the speed of the animation. Speed set to 30 is good for me. Then, the "p 1 0 part0" property means that the frames in part0 folder will be repeated once - you point that with the first number in the "p 1 0 part0" property, which in this case is 1. The second number is the delay between loops, and it's expressed in milliseconds (1000ms = 1s). I've set it to 0 because I don't want to be any delay between my loops (p 1 0 part0). And last, but not least, you set the folder with the folder name - in this case is part0. Then, you type the property for the part1 folder - that's "p 0 0 part1". The first "0" means that the folder will be looping infinite times, the second "0" means there's no delay between loops, and then we set the folder to part1. Note: if you have more folders, you'll have to write properties for them too! WARNING: DON'T FORGET TO LEAVE AN EMPTY LINE AT THE END OF THE DESC.TXT FILE!)
4. Compress the folders and the desc.txt file in a zip file (WARNING: MAKE SURE YOUR COMPRESSION METHOD IS STORE! OTHERWISE, THE BOOT ANIMATION WON'T WORK!)
5. Open your new boot animation and check the folders, if there are Thumbs.db files. If there are Thumbs.db files in your boot animation, delete them from the archive.
6. Install your boot animation on your device with one of the following methods:
Root Explorer method:
1. Rename your boot animation to bootanimation
2. Put it on your SD card
3. Open Root Explorer and copy bootanimation.zip to /system/media. This will replace the existing boot animation
4. Reboot your phone
ADB method:
1. Make sure you have downloaded android sdk
2. Put android sdk in C:\
3. Set the directory of command prompt to C:\android-sdk-windows\platform-tools. Click here for a video tutorial.
4. Rename your boot animation to bootanimation and put it in C:\android-sdk-windows\platform-tools
5. Open cmd
6. Type in order:
-adb remount
-adb push bootanimation.zip /system/media/bootanimation.zip
-adb reboot
7. Enjoy your new boot animation!
Note: It's far easier to create and install boot animations with my program Boot Animation Factory. Oh, and you can preview them on your computer too!
How to add sound:
Originally Posted by hockeyfamily737
0. It's recommended to do a nandroid backup first!
1. Download the "bootsnd.sh" file and put it on the root of your sd card.
2. Download the "android_audio.mp3" file and using root explorer copy it to /system/media
3. Open Terminal Emulator and type the following commands using the stock keyboard. Press enter after each line:
su
cd /sdcard
sh bootsnd.sh
reboot
4. As the device boots up you will be greeted by the "Dolby THX" test sound heard before movies. You are now free to replace the android_audio.mp3 file in /system/media with any .mp3 file you like as long as you rename it to "android_audio.mp3"
5. DO NOT ATTEMPT TO OUTSMART THESE DIRECTIONS OR YOU WILL BE RESTORING YOUR NANDROID BACKUP!
6. Enjoy
http://dl.dropbox.com/u/30200380/bootsnd.sh
http://dl.dropbox.com/u/30200380/android_audio.mp3
Common mistakes that people make:
-Wrong compression method: you MUST set the compression method to Store!
-Missing empty line at the end of the desc.txt file: an empty line is needed! Otherwise, the boot animation won't work!
-Frames drawn in wrong color mode: you MUST draw your frames in RGB 8bit or RGB 16bit COLOR MODE!
there is a error in this see post#2 for maintain
YOU CAN CLICK THANKS
lemme point out errors here
SGY has a resolution of 240x320 LDPI
so its not 320x480 thats for MDPI/HDPI
p 1 0 part1
p- means string for images
1- means repeat and loop images
0- means dont repeat
30- not nessessarily 30, it is the FPS (Frames-per-second) rate
part[?]- not nessessarily need to be part1 you can also make it "donuts1" just make the folder "donuts1" too, it is where the images are stored
Click to expand...
Click to collapse
reduce all images to 320x240 so that it will work otherwise all you see is a black screen
your method is too complicated,
you can do it via adb,
adb remount
adb push [file location in PC]/bootanimation.zip /system/media
Click to expand...
Click to collapse
set permissions to rw-r-r via root explorer
the file for soundboot is "poweron.ogg"
found in /system/etc
adb remount
adb push [file location in PC]/poweron.ogg /system/etc
Click to expand...
Click to collapse
set permissions to rw-r-r via root explorer
im sorry but i just want to give constructive criticism so you can make this guide better
deathnotice01 said:
lemme point out errors here
SGY has a resolution of 320x240 LDPI
so its not 320x480 thats for MDPI/HDPI
reduce all images to 320x240 so that it will work otherwise all you see is a black screen
your method is too complicated,
you can do it via adb,
set permissions to rw-r-r via root explorer
the file for soundboot is "poweron.ogg"
found in /system/etc
set permissions to rw-r-r via root explorer
im sorry but i just want to give constructive criticism so you can make this guide better
Click to expand...
Click to collapse
i dont mind thanks
explodeaamir said:
i dont mind thanks
Click to expand...
Click to collapse
sorry posted incorrectly,
its actually 240x320
lol
i'll edit my top post
LOL,Double-thread?
EliTSamsunG said:
LOL,Double-thread?
Click to expand...
Click to collapse
yea,
i think the other guide he made was much better with screenshots and the app to make it
deathnotice01 said:
yea,
i think the other guide he made was much better with screenshots and the app to make it
Click to expand...
Click to collapse
i also think so.....
thank you
there is errors in bootsnd.sh
how to fix
ramzidjoudi said:
thank you
there is errors in bootsnd.sh
how to fix
Click to expand...
Click to collapse
sorry i cant help you
please wait.....
i am out of house
Simple way use bootanimation creator search on android software development with thays stuff u can port and make ur bootanimation in free ways
Just singgle one click and u done with ur bootanimation
Sent from my GT-S5360 using xda premium
explodeaamir said:
sorry i cant help you
please wait.....
i am out of house
Click to expand...
Click to collapse
never mind i found another way to change boot sound
thak's
evanlocked said:
Simple way use bootanimation creator search on android software development with thays stuff u can port and make ur bootanimation in free ways
Just singgle one click and u done with ur bootanimation
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
Ya.. why bother so much with codes when couple of button clicks can do the job!!
NeelDroid said:
Ya.. why bother so much with codes when couple of button clicks can do the job!!
Click to expand...
Click to collapse
ya with a couple of button u can done it
but the guide is here to give basic element knowledge to user.....
always automaticity is not enough
....
Hi there. Been trying to get boot sound on my phone for a while now. Keep getting this error:
{
"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"
}
Can anyone help
Sent from my GT-I9100 using xda premium
explodeaamir said:
ya with a couple of button u can done it
but the guide is here to give basic element knowledge to user.....
always automaticity is not enough
....
Click to expand...
Click to collapse
I prefer to learn things and so manual way is the best!
Thanks aamir! :thumbup:
Sent from my MT11i using xda premium
Ghostfreak NB said:
I prefer to learn things and so manual way is the best!
Thanks aamir! :thumbup:
Sent from my MT11i using xda premium
Click to expand...
Click to collapse
THNX BRO
I just successfully created a boot animation from scratch. I used a free video to jpg software to create image files from a video file. I then used Samsung theme designer to create qmg files. I however am still unsure of how to figure the correct duration/fps to get the desire animation play out length I'd like. I have the images resized to 1024*768. Id appreciate any direction to find how to figure setting the proper duration/fps settings