Is it possible? How hard would it be to do?
should be pretty simple
I just made one, but for some reason I do not see it when my TF boots, once I figure it out, I'll put it up here for you.
ikirt said:
I just made one, but for some reason I do not see it when my TF boots, once I figure it out, I'll put it up here for you.
Click to expand...
Click to collapse
Where r u putting it on ur tf?
droidkevlar said:
Where r u putting it on ur tf?
Click to expand...
Click to collapse
Yes, I'm trying to load it on my TF, when I reboot the screen just goes black
he's asking where you're putting it on your transformer...
as in /data/local or system/media
it matters on our devices i think.
also, how did you take the video and make it into images. I found out how to do it, but i end up with 900 JPEGs and I need .pngs ...
wrichards2009 said:
he's asking where you're putting it on your transformer...
as in /data/local or system/media
it matters on our devices i think.
also, how did you take the video and make it into images. I found out how to do it, but i end up with 900 JPEGs and I need .pngs ...
Click to expand...
Click to collapse
I put it in the /data/local folder.
I used mplayer to convert an avi into jpg.
mplayer file.avi -vo jpeg
or
mplayer file.avi -vo png
I have followed a butt load of tuts and I'm still getting a black screen on boot. :S
I just converted all images to png and I get the same results.
wrichards2009 said:
he's asking where you're putting it on your transformer...
as in /data/local or system/media
it matters on our devices i think.
also, how did you take the video and make it into images. I found out how to do it, but i end up with 900 JPEGs and I need .pngs ...
Click to expand...
Click to collapse
Doesn't matter, either location will work for the TF.
ikirt said:
I put it in the /data/local folder.
I used mplayer to convert an avi into jpg.
mplayer file.avi -vo jpeg
I have followed a butt load of tuts and I'm still getting a black screen on boot. :S
I just converted all images to png and I get the same results.
Click to expand...
Click to collapse
i would double check the desc.txt file.
can you go ahead and post what you have, maybe someone can take a look at it.
This is what is in my desc.txt:
1280 800 30
p 1 0 part0
Like to know how this is coming this is something I am interested in.
Hopefully i will have this figured out soon
Sent from my Transformer TF101 using xda premium
ikirt said:
I put it in the /data/local folder.
I used mplayer to convert an avi into jpg.
mplayer file.avi -vo jpeg
or
mplayer file.avi -vo png
I have followed a butt load of tuts and I'm still getting a black screen on boot. :S
I just converted all images to png and I get the same results.
Click to expand...
Click to collapse
Make sure that when you create the .zip you use no compression.
Sent from my ADR6400L using Tapatalk
Thanks, that just might be the problem.
update: Thanks hawkxcore that did it. For others, in linux this is how I did it:
zip -0 bootanimation.zip part0/* desc.txt
* The -0 stores the files without compression.
Sent from my Transformer TF101 using xda premium
Ok got some progress. Got the animation to load, but I need to shrink the images a bit, currently the zip file is 98M. So let me play with this tonight and I'll get it ready to post here tomorrow
Here's what I got so far, got it down to 13MB: http://mir.cr/TUZXFHB1
although i cant root my transformer i do know a way to make bootanims from videos.
use after effects and it can do the png thing also you can make custom 3d looking anims in there. if you dont have it use a free trial or some of those torrents things. not suggedting anything and not condoning illegal stuff its your choice.
your transformer doesn't need to be rooted to install boot animations. I installed it on hers and her's isn't even rooted to this day.
You push it with adb - "adb push bootanimation.zip /data/local
I'll upload some boot animations soon, I've become quite good at making them over the past couple days.
Anybody that is having trouble with their boot animation.. don't be stupid like me. I was taking the bootanimation folder that I was making them in and I compressed that folder. And I kept compressing that instead of just the contents (desc.txt and folder1), stupid mistake, but an easy one to make.
Has anyone tried this bootanimation ?
I'm trying to figure out how to add audio to the animation, but it looks like it requires a ROM tweek. If anyone has any information on this, it would be greatly appreciated.
CM6 and CM7 boot sound
This is for CM6 and CM7 ROMS... Not my work... just passing it on...
CM6 and CM7 boot sound
I take no credit for this, original posted by
NUNsLAUGHTER92
[FONT="]Well the first place I posted this was deleted (original CM6 thread by Isaac) so I've decided to post it again in a new thread because some people want to know how to do it.[/FONT]
[FONT="]- Where the files are/go[/FONT]
[FONT="]build.prop - /system[/FONT]
[FONT="]init.local.rc - /system/etc[/FONT]
[FONT="]bootsound - /system/bin[/FONT]
[FONT="]android_audio.mp3 - /data/local[/FONT]
[FONT="]So you need to do four things to make this work...[/FONT]
[FONT="]1: Add these lines to your build.prop file -[/FONT]
[FONT="]### Safe to Delete: Start ###[/FONT]
[FONT="]ro.config.play.bootsound=1[/FONT]
[FONT="]### Safe to Delete: End ###[/FONT]
[FONT="]2: Add more lines in init.local.rc -[/FONT]
[FONT="]###Bootsound - Safe to Delete: Start ###[/FONT]
[FONT="]service bootsound /system/bin/bootsound[/FONT]
[FONT="]user media[/FONT]
[FONT="]group audio[/FONT]
[FONT="]disabled[/FONT]
[FONT="]oneshot[/FONT]
[FONT="]on property:init.svc.bootanim=running # to correct timing[/FONT]
[FONT="]start bootsound[/FONT]
[FONT="]on property:dev.bootcomplete=1[/FONT]
[FONT="]stop bootsound[/FONT]
[FONT="]### Bootsound - Safe to Delete: End ###[/FONT]
[FONT="]3: Add the file 'bootsound' from below to /system/bin[/FONT]
[FONT="]4: Add any .mp3 named "android_audio.mp3" to /data/local [/FONT]
[FONT="](I'll attach one to let you see how it works, it's the droid sound that I used before.)[/FONT]
[FONT="]Note 1: rename bootsound.txt to just bootsound, you don't want an extension. It won't let me upload the file without doing that.[/FONT]
[FONT="]Note 2: Add all of those lines to the bottom of the files. I guess you might not have to, but why not do what we know works.[/FONT]
[FONT="]Note 3: Make sure that every line of code that doesn't start with the "Safe to Delete" thing is all the way to the right because if not it won't work.[/FONT]
[FONT="]Or if you want to go the easy route here is one that's put together already for CM7. DO NOT use this with CM6 because of build.prop differences, there might also be other things that are different. There will be one made for CM6 soon.[/FONT]
[FONT="]Also, not flash-able either just move the files to the appropriate places. - CM7 bootsound[/FONT]
[FONT="]Here are the files for CM6, again, not flash-able just move to the correct place - CM6 bootsound [/FONT]
[FONT="]Attached File(s)[/FONT]
[FONT="]bootsound.txt[/FONT]
[FONT="]android_audio.mp3[/FONT]
These are the files for cm6: http://www.mediafire.com/?dr770262n42pehv
Related
can anybody port the stock sprint evo bootscreen for our hero's? i know it's pretty basic but i like the look of it.
Possibly
I have been customizing the stock bootscreen for the Hero. If you have the Evo files or a .gif animation I can give it a try.
wikedbubble said:
I have been customizing the stock bootscreen for the Hero. If you have the Evo files or a .gif animation I can give it a try.
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=697527
Above has the boot screen link to download the file. I would be intrested in the boot screen as well, if you can do it.
????
Hey sorry for the delay, I have been out of town for a few weeks. The link here doesn't seem to have the stock EVO files. Only links for customized animations.
wikedbubble said:
Hey sorry for the delay, I have been out of town for a few weeks. The link here doesn't seem to have the stock EVO files. Only links for customized animations.
Click to expand...
Click to collapse
You are right, sorry. I thought the first zip file was the stock one. Oops, I will post a question on the Evo board to request the stock boot screen animation since I do not see one anywhere on the internet.
Sounds good, I also have had a lot of trouble finding it.
wikedbubble said:
Sounds good, I also have had a lot of trouble finding it.
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=731593
Post #5
Someone was able to get both files. Hope your able to do the port.
perfect
This is exactly what I was looking for. I should make some progress within the hour.
Tibedabeeto said:
http://forum.xda-developers.com/showthread.php?t=731593
Post #5
Someone was able to get both files. Hope your able to do the port.
Click to expand...
Click to collapse
Good new and bad news.
It turns out that the bootanimation.zip, in the link provided works fine on the OEM release w/ROOT and the latest [ROM] Cyanogenmod 6.0.0 Test 4 For Hero CDMA.
I am still a "Junior Member" so I cannot post links or files.
Anyway.... since these 2 releases use the bootanimation.zip for the animation, any sequence of .PNG files with the proper desc.txt file will work in .ZIP format. Even if the resolution is incorrect.
Audio has been my problem at this point. For the life of me I can't figure out how the EVO will play audio and the HEROc will not even using the bootanimation.zip config instead of the other ROM's using a .GIF file and .XML files.
Tibedabeeto & markus_del_marko
Please PM me for more detailed info so we don't tie up the threads.
wikedbubble said:
Good new and bad news.
It turns out that the bootanimation.zip, in the link provided works fine on the OEM release w/ROOT and the latest [ROM] Cyanogenmod 6.0.0 Test 4 For Hero CDMA.
I am still a "Junior Member" so I cannot post links or files.
Anyway.... since these 2 releases use the bootanimation.zip for the animation, any sequence of .PNG files with the proper desc.txt file will work in .ZIP format. Even if the resolution is incorrect.
Audio has been my problem at this point. For the life of me I can't figure out how the EVO will play audio and the HEROc will not even using the bootanimation.zip config instead of the other ROM's using a .GIF file and .XML files.
Tibedabeeto & markus_del_marko
Please PM me for more detailed info so we don't tie up the threads.
Click to expand...
Click to collapse
In Nfinitex45's rom there is a zip file containing the same layout you discussed. I took all 35 png files out of the sprint folder which is the animation that it plays in the boot screen. What I did is created a animated gif with all those file in gimp. Then took Fresh's rom 2.0d. And extracted the bootscreen folder. I took that xml file with some of those animated gif files along with the one i created from all the png files and created a bootscreen with animation and sound. I did this to test out if it would work and it seemed to work, after removing the .zip file in system/media. And placing the bootscreen folder in system/media. The only thing I see that we will need to do for this animation is change the size of the pics to the hero's resolution, besides that do the same procedure and it should work. (i think)
I have noticed with some rom's people use the .gif .xml combo. I will try doing what you said and we'll see what happens.
Also does Fresh's rom 2.0d play audio on boot, i am curious if there is a line in the .xml file that calls to a specific .mp3 file?
wikedbubble said:
I have noticed with some rom's people use the .gif .xml combo. I will try doing what you said and we'll see what happens.
Also does Fresh's rom 2.0d play audio on boot, i am curious if there is a line in the .xml file that calls to a specific .mp3 file?
Click to expand...
Click to collapse
Yes it has a line for the audio that plays mp3's.
Yup..
It all depends on the ROM. Some use a .zip file with a series of .png images and a properly formatted .desc file.
Other Rom's use an .xml file with a .gif animation and .mp3 file for audio on boot.
seems like roms built for sprint using android 1.5 or 1.6 used .xml config, newer 2.1+ roms are using the .zip .png combo??????
I really don't see a pattern.
Long story short the files provided can be used for ROM's that use the xml config because it supports audio on boot.
That's all I got..
wikedbubble said:
It all depends on the ROM. Some use a .zip file with a series of .png images and a properly formatted .desc file.
Other Rom's use an .xml file with a .gif animation and .mp3 file for audio on boot.
seems like roms built for sprint using android 1.5 or 1.6 used .xml config, newer 2.1+ roms are using the .zip .png combo??????
I really don't see a pattern.
Long story short the files provided can be used for ROM's that use the xml config because it supports audio on boot.
That's all I got..
Click to expand...
Click to collapse
Yeah I tried to create the boot animation as well, but the images got all discolored when creating a gif. I tried several times only to fail, so I gave up. What's weird is I did the same thing for the files contained in Nfinitex45's rom and it worked fine. IDK?!?
Tibedabeeto said:
Yeah I tried to create the boot animation as well, but the images got all discolored when creating a gif. I tried several times only to fail, so I gave up. What's weird is I did the same thing for the files contained in Nfinitex45's rom and it worked fine. IDK?!?
Click to expand...
Click to collapse
I'll get it done today.
Here is flashable zip with the Evo Bootscreen:Evo Bootscreen
Or download from the attachment below
There is no sound right now. I need to figure out exactly why I can't get sound even while using the xml layout.
If you want to push it to your phone unzip and navigate to system/media and push bootanimation.zip to /system/media via adb
unCoRrUpTeD said:
Here is flashable zip with the Evo Bootscreen:Evo Bootscreen
Or download from the attachment below
There is no sound right now. I need to figure out exactly why I can't get sound even while using the xml layout.
If you want to push it to your phone unzip and navigate to system/media and push bootanimation.zip to /system/media via adb
Click to expand...
Click to collapse
Thanks for creating it.
UPDATE:
First I want to thank every one, I also want to give a shout out to
Mrdaviso for making the sound possible on cm7, please give him thanks for his thread on this. I've been waiting to have sound for the animation for sooo long and now it finally works and thanks to him.
I stripped all the text out of the animation except for the android logo and the preview below is exactly what it is, he screams and then stares at you and blinks until your phone boots.
The scream I choose is one I thought was appropriate... the original Godzilla roar! But if you really want, and I honestly would love to see more sound files made, please offer others. You can use mine as a template for syncing with the animation. I love to see others post sounds for this!
Heres the d/l link hope you guys like this.This zip file contains the bootanimation.zip, android_audio.mp3 (godzilla) and the bootsnd.sh (to setup sound playing on phone bootup)
Installation of the new un-branded versions with sound!!! PLEASE READ CAREFULLY:
First how to setup boot animation sound on cm (link to the op):
To install boot animation:
1. just unzip the screaming_android_with_sound.zip file on the root of your sdcard
2. copy the bootanimation.zip file to the system/media folder replacing the old one or renaming the old one and copying this one over if your just testing.
3. Android wins again!
Changing the ResolutionThe resolution for the animation is 480X800 if you'd like a different size:
1. copy the bootanimation.zip file to your computer.
2. open the zip and edit the desc.txt 's second line (480 800 not the 25 read below) to match your phones resolution.
3. save the file and close the zip program
4. you shouldn't need to unzip the bootanimation.zip file to do the above
5. if you do need/want to unzip it when rezipping make sure the compression level your zipping it on is "store" or it won't work.
Sound doesnt seem to match up?... change to animation speed in the desc.txt file:
1. copy the bootanimation.zip file to your computer.
2. open the zip and edit the desc.txt 's second line (only the 25 not the first 2 numbers) to speed it up or slow it down.
3. save the file and close the zip program
4. you shouldn't need to unzip the bootanimation.zip file to do the above
5. if you do need/want to unzip it when rezipping make sure the compression level your zipping it on is "store" or it won't work.
NOTES:
want a different sound on the animation... the sound file has to be called android_audio.mp3 for it to play, this file will play for any new bootanimation you install unless you remove the android_audio.mp3 file and it has to be an mp3.
Programs to help... if you don't have root explorer get "Super Manager" from the market it does r/w and root privileged file exploring (and more) just like root explorer and its free.
I'm only giving this out in zip file format, I'm not doing a flashable as its to hard to keep up with all the different roms and resolutions. I provide instruction on how to change the resolution of the animation to fit your phone.
------------------------------------------------------------
Preview:
Click for full size
------------------------------------------------------------
Installation of the old branded versions: just flash the the zip file below.
Screaming Droid Boot Animation Flashable Download 320 x 480 flashable to system/media
Screaming Droid Boot Animation 480 x 800 This is just the boot animation, rename and install where needed.
Screaming Droid Boot Animation Flashable 480 x 800 This flashable installs to the data/local folder if this isn't where you need it use the above bootanimation.zip and place it where its needed.
Screaming Droid Boot Animation Flashable 240 x 320 This installs to the system/media folder if this wont work for you i'll post the bootnaimation.zip and you can push it or you can pull it out of the flashable and push it.
Push Instructions:
use adb and push the bootanimation.zip (which must be in the tools folder which is inside your android-sdk folder) to /system/customize/resource, /data/local, /system/media, i think you only need to push it to the first one, but try all 3 just in case
adb push bootanimation.zip /system/media or /data/local or system/resource/customize
or with term app
first copy bootanimation.zip on your SDCard
run terminal
and write
#su
#mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
(now you can write to /system)
("browse" to location, where you have copied bootanimation.zip, if it is in root of your card)
#cd /sdcard
(you can check if it is there)
#ls
(now just copy it)
#cp bootanimation.zip /system/media
(you can exit, and reboot, new animation should work, enjoy)
Click to expand...
Click to collapse
I like this boot animation you did a great job thanks
Sent from my HERO200 using XDA App
raymond4 said:
I like this boot animation you did a great job thanks
Sent from my HERO200 using XDA App
Click to expand...
Click to collapse
Thank you. It took a while I had several version I didnt like and I finally settle on this one.
Looks good man ... Great job on it. Do u plan on making a dark version?
Really does everything have to be black around here. Lol what do you mean by dark? Maybe if I get enough requests.
I did have a good idea for a dark boot animation... one that would be easier to make dark. The way this was ripped doesn't lend well to dark colors.
Fun stuff as always XD
Awesome job buddy
ASimmons said:
Really does everything have to be black around here. Lol what do you mean by dark? Maybe if I get enough requests.
I did have a good idea for a dark boot animation... one that would be easier to make dark. The way this was ripped doesn't lend well to dark colors.
Click to expand...
Click to collapse
Black background ....
Very cool, thanks!
Your welcome. Thought it be more popular....
Sent from my HERO200 using XDA App
great job, something new.
Absolutely cool as hell!!! Thank you for this. One Suggestion. Do you think you could make the android scream more than once before the phone boots up?
aerajan said:
Absolutely cool as hell!!! Thank you for this. One Suggestion. Do you think you could make the android scream more than once before the phone boots up?
Click to expand...
Click to collapse
Thanks, I'll check through my iteration and see I think I had one that did that. I pretty much done with this one, I spent to much time on it so I'm moving on to something else.
ASimmons said:
Thanks, I'll check through my iteration and see I think I had one that did that. I pretty much done with this one, I spent to much time on it so I'm moving on to something else.
Click to expand...
Click to collapse
Cool. Thanks! Def enjoying it either way.
I love it! If I could add anything at all it would be sound. I think a good Jurassic Park roar would sound friggin awesome when the droid screams. I have no idea how to do that though, lol
Thanks... Well I could add a sound but it would only work for sense based rom. How I wish there was sound.
If people want a sense version I will male one with sound.
Sent from my HERO200 using XDA App
sweet, worked like a charm
CrapExplosion said:
sweet, worked like a charm
Click to expand...
Click to collapse
Good to here.
I would love one with sound for my sense Rom
Sent from my HERO200 using XDA App
skndeep102 said:
I would love one with sound for my sense Rom
Sent from my HERO200 using XDA App
Click to expand...
Click to collapse
Ok I can do this but I wont be for a couple of days since I'll need to put it together, Just look for an update in the next couple of days.
ASimmons said:
Ok I can do this but I wont be for a couple of days since I'll need to put it together, Just look for an update in the next couple of days.
Click to expand...
Click to collapse
Cool I appreciate it
Sent from my HERO200 using XDA App
This is the Droid dance boot animation that I customized a little to work good with my evo. I made it have twice as many frames and run twice as fast. It looks great and has no lag. Just rename it to bootanimation.zip and use Root Explorer to replace your original in /system/customize/resource and it should run when u reboot. If you want a sound clip to go with it use ringdroid app to make a 20 second .mp3 clip for the Droid to dance to and rename it to SPC_animation_final.mp3 and put it in the same folder. Good luck and enjoy.http://db.tt/tdsEB50
I take no credit for this other than moving some .jpgs around and renaming them and redoing the folder setup to make it work correctly. I plan to refine this alittle more and remove the black bars. Also if anyone would like to help me make a flashable zip out of this PM me and I would really appreciate it. I will upload this to mediafire when I get home from work because dropbox limits downloads. Thanks and please don't think I am trying to rip off anyone's work. It just didn't work for me off the bat so I refined it and figured I would share.
EDIT: I have a redone it to a fullscreen version and it looks much better and still runs just as good. Here is the link...bootanimation.zip
EDIT 2# I have also added 2 flashable zips for the boot animation:
1. Flashable zip for Roms that have the bootanimation.zip in \system\customize\resource (such as Baked Snack, Stock) use RingDroid.apk to cut a 20sec music clip and rename it SPC_animation_final.mp3 and put in the same folder. Here is the link.
2. Flashable zip for Roms that have the bootanimation.zip in \system\media (such as Caulklin's EVio 2) use RingDroid.apk to cut a 20sec music clip and rename it to android_audio.mp3 and put it in the same folder. Here is the link.
These 2 .ZIPS are identical other than where they place the boot animation because some roms put them in different folders. I have not tested the .ZIP for the customize folder yet because I am currently running Caulklin's amazing EVio 2 1.5 rom. Please post your results with these files and also I would appreciate it if you would rate the quality. Thanks and Good luck!
Fullscreen version now in OP.
Thanks, Ill try this out later. For Cyanogen users, the .zip also must be placed in /system/media in case anyone is wondering.
Does the audio clip have to be 20 seconds for it to work?
any chance of making it with the background being black?
sometimes it seems like it speeds through the animation.. usually it stops on him facing away (he doesn't dance until the phone has booted).. any thoughts?
fmedina2 said:
Thanks, Ill try this out later. For Cyanogen users, the .zip also must be placed in /system/media in case anyone is wondering.
Does the audio clip have to be 20 seconds for it to work?
Click to expand...
Click to collapse
if you are asking if the animation will work if the audio is not 20 seconds exactly, then yes.. mine works without audio
Where does ringdroid send the file once I save it? Cant find it anywhere.
Flashed the .zip for media on Cyanogen. Didnt work.
fmedina2 said:
Flashed the .zip for media on Cyanogen. Didnt work.
Click to expand...
Click to collapse
fmedina2 said:
Thanks, Ill try this out later. For Cyanogen users, the .zip also must be placed in /system/media in case anyone is wondering.
Does the audio clip have to be 20 seconds for it to work?
Click to expand...
Click to collapse
seems like Cyanogen needs to flash the other file to get the bootainimation.zip in the /system/media folder
Igzekyativ said:
seems like Cyanogen needs to flash the other file to get the bootainimation.zip in the /system/media folder
Click to expand...
Click to collapse
Tried both. Didn't work.
flashable zip 1 works on myns warm rls3. thank you
Going back to previous version with black bars. This version is too short and stops about 10-15 seconds before my phone boots up.
Ian B
Could you make it run about 10 seconds longer? Love the fullscreen otherwise.
Sorry for the problems guys, I don't use Cyanogen so I'm not sure what the problem is I would be very thankful if someone with some knowledge on making flashable zips could edit this to work on CM, I would definitely add it to the OP.
Also, I guess our phones run alittle different because the speed and timing for the bootanimation is perfect on my phone with every rom I have put it on. I will work on these as soon as I get a weekend (could possibly be after thanksgiving, sorry have been really busy at work lately). I will try slowing it down just alittle and also add some more frames and try to figure out how to make it loop correctly so it won't just freeze until the phone boots.
Sorry again for the problems, this is my first bootanimation so I'm still learning. I actually just wanted to get this working on my phone and decided to share it. I will update the OP as soon as I have the time to refine this further.
ty
thanks man!
now trying to think of a song!
o yes! thanks man!
Used the zip file and added a song.. imma add it to my post. i will give you credit!
Great Job, will try this.....
Neat!
Works great on Myn's 2.2. I picked "I Don't Feel Like Dancing" from Scissor Sisters for the boot audio. Pretty funny. I have attached the edited version I am using. It might run a little long for some (about 35 seconds) but you can use Ringdroid to edit it.
This is not a flashable zip. Just extract/unzip the .mp3 and move it to the /system/customize/resource folder. If you want to save the original boot audio file be sure to rename it before moving or copying this one.
I am trying to make a custom boot w/sound but last time I tried getting sound to work I bricked my phone. Any help would be appreciated. I also am considering trying to figure out how to do a SOA theme for SCOM.
BTW somebody created the same boot animation on another phone but with no sound. So I have that already.
Maybe this will help you or atleast point you in the right direction.
http://forum.xda-developers.com/showthread.php?p=14136008
Sent from my Maybach s 4g
JonnyStreetz said:
Maybe this will help you or atleast point you in the right direction.
http://forum.xda-developers.com/showthread.php?p=14136008
Sent from my Maybach s 4g
Click to expand...
Click to collapse
I found somebody who created the same animation that I wanted to do so I have reposted the bootanimation.zip and have converted the theme to wav format (don't know if I needed to do that or not) and replaced the PowerOn.wav from the ect folder. The rom I am using already had boot sound. So I was able to just replace the files. What I want to know is the bootsnd.sh file listed in the tutorial the same file needed for our phone? Also it listed a different directory for pushing the sound file. Is this something that is different per phone or ROM or just a preference?
ShadyAce80 said:
I found somebody who created the same animation that I wanted to do so I have reposted the bootanimation.zip and have converted the theme to wav format (don't know if I needed to do that or not) and replaced the PowerOn.wav from the ect folder. The rom I am using already had boot sound. So I was able to just replace the files. What I want to know is the bootsnd.sh file listed in the tutorial the same file needed for our phone? Also it listed a different directory for pushing the sound file. Is this something that is different per phone or ROM or just a preference?
Click to expand...
Click to collapse
I have a feeling I know what bootsnd.sh file your talking about. No you dont need that for the current roms for the phone. That script is for phones running roms like CM7 that dont have bootsound turned on.
Put the poweron.wav in the same directory as the factory one is now. In converting the file to wav did you just rename it or actually convert it using a program on your pc? Just renaming it will not always work.
eollie said:
I have a feeling I know what bootsnd.sh file your talking about. No you dont need that for the current roms for the phone. That script is for phones running roms like CM7 that dont have bootsound turned on.
Put the poweron.wav in the same directory as the factory one is now. In converting the file to wav did you just rename it or actually convert it using a program on your pc? Just renaming it will not always work.
Click to expand...
Click to collapse
I have a conversion program on my system. I have the animation and the audio file posted in themes right now. Planning on tweaking it a bit and making it my own creation once I have more of an idea of where I want to take it. And will be attempting to make it flashable in a week or two I hope.
Here is the boot animation and also the theme to the show.
Push the bootanimation.zip to system/media. Rename the existing file to bootanimation.zipold.
If you want the sound push the wav file to ect and rename existing file to PowerOn.wavold. I have only tried replacing existing files not sure if will work if you have no boot sound.
*DISCLAIMER* I am no way responsible for what you do to your device
Thanks to TXLunchbox for the bootanimation
http://dl.dropbox.com/u/64304416/bootanimation.zip
http://dl.dropbox.com/u/64304416/PowerOn.wav
Sorry for the delay on the links. Can't get the files loaded as attachments but the dropbox links are up and working!
Again use at your own risk and so far have only tested on ROM that had existing startup sound.
Glad to see you got it up nd running
Sent from my Maybach s 4g
ShadyAce80 said:
Here is the boot animation and also the theme to the show.
Push the bootanimation.zip to system/media. Rename the existing file to bootanimation.zipold.
If you want the sound push the wav file to ect and rename existing file to PowerOn.wavold. I have only tried replacing existing files not sure if will work if you have no boot sound.
*DISCLAIMER* I am no way responsible for what you do to your device
Thanks to TXLunchbox for the bootanimation
http://dl.dropbox.com/u/64304416/bootanimation.zip
http://dl.dropbox.com/u/64304416/PowerOn.wav
Click to expand...
Click to collapse
Good work man!
Tip: renaming the files to bootanimation.zipold should be bootanimation.zip.old, same with the poweron.wav file. Or you could rename it to .bak, that is how some of the various apps do it so the filesystem thinks it is a backup file. I think sdmaid will remove .old files when using it that is why I suggest using the .bak extension.
eollie said:
Good work man!
Tip: renaming the files to bootanimation.zipold should be bootanimation.zip.old, same with the poweron.wav file. Or you could rename it to .bak, that is how some of the various apps do it so the filesystem thinks it is a backup file. I think sdmaid will remove .old files when using it that is why I suggest using the .bak extension.
Click to expand...
Click to collapse
Thanks for the tip. Now to just learn how to create a complete theme that can be flashed.
ShadyAce80 said:
Thanks for the tip. Now to just learn how to create a complete theme that can be flashed.
Click to expand...
Click to collapse
Ill help you what are u stuck on
Sent From a Galaxy S with 4G
DnickDominic said:
Ill help you what are u stuck on
Sent From a Galaxy S with 4G
Click to expand...
Click to collapse
thanks. Right now I'm starting out at android.com figuring out the emulator and what not. Also looking for threads to show me how to take the boot animation and package it up for flash.
ShadyAce80 said:
thanks. Right now I'm starting out at android.com figuring out the emulator and what not. Also looking for threads to show me how to take the boot animation and package it up for flash.
Click to expand...
Click to collapse
Couple of things...
First, while I do appreciate the thanks, I was under the assumption you were going to add this to a full ROM you were working on and not just post it in another forum. If that was the case you could have just linked to my post that I did for this. The reason I never posted it in any other phone forums is that the resolution is set specifically for the Galaxy S Vibrant, therefore may have not looked as good on other devices.
Second, for the sound to work, it all depends on your kernel. I never did one for mine cause the majority of people that use the device I designed the bootanimation.zip for had VooDoo kernels and those do not support boot sound.
Third, if you're wanting to make it flashable you're going to have to learn the code for the recovery system you are using for the phone. I used to have a flashable version of mine, but when codes changed for CWM Recovery, I just figured it was easier to tell people where to push the file to.
Again, I do appreciate the thanks, but next time be a little clearer on what you're doing with someone else's work before posting it as your own.
Thank you
TXLunchbox said:
Couple of things...
First, while I do appreciate the thanks, I was under the assumption you were going to add this to a full ROM you were working on and not just post it in another forum.
Click to expand...
Click to collapse
If you goto android.com its the home page to andorid....
http://www.android.com/
Boot animtion unsuccessful.
ShadyAce80 said:
Here is the boot animation and also the theme to the show.
Push the bootanimation.zip to system/media. Rename the existing file to bootanimation.zipold.
If you want the sound push the wav file to ect and rename existing file to PowerOn.wavold. I have only tried replacing existing files not sure if will work if you have no boot sound.
*DISCLAIMER* I am no way responsible for what you do to your device
Thanks to TXLunchbox for the bootanimation
http://dl.dropbox.com/u/64304416/bootanimation.zip
http://dl.dropbox.com/u/64304416/PowerOn.wav
Click to expand...
Click to collapse
I tried to push both files like you described even renaming to bootanimation.zip.old. rebooted but no animation. Im on valhalla black final + black booster.