Boot Screen - Hero CDMA Themes and Apps

I am attempting to build an Ubuntu like boot screen for my phone with the default Ubuntu logon sound.
However in my failed attempts to do this, I have ruined/misplaced my original Sprint.Gif and boot.mp3.
Could one of you please email me a copy of your Sprint.gif and Boot.mp3. You can adb shell in to /system/media/bootscreen and cp them to you sd card.
You can email them to me kcarpenter five two eight AT gmail.com
Thanks a million in advance!

You could also grab the boot screens from the fresh pre kitchen. he has 5 other s screen as well as the original Sprint in there

I am on a linux machine right now, wouldn't run.

Kcarpenter said:
I am on a linux machine right now, wouldn't run.
Click to expand...
Click to collapse
Does not need to, the files are all in folders, the proggie is just a simple .exe to access them. Just unzip and you will have all you need.

Doesnt have to, the files are included. Just get them from the folder.

Kcarpenter said:
I am attempting to build an Ubuntu like boot screen for my phone with the default Ubuntu logon sound.
However in my failed attempts to do this, I have ruined/misplaced my original Sprint.Gif and boot.mp3.
Could one of you please email me a copy of your Sprint.gif and Boot.mp3. You can adb shell in to /system/media/bootscreen and cp them to you sd card.
You can email them to me kcarpenter five two eight AT gmail.com
Thanks a million in advance!
Click to expand...
Click to collapse
Email Sent.

Ahhhhh, thank you gents for the enlightenment. On with my screw ups. Any of you know if these gifs have certain requirements? Like can only have x ammount of colors? When I put my GIFs in, its like a broken video card - all staicy and pixelated can't even tell what the image is.

There may be code that specifies the height and width..
Did you match your size with the file you replaced?

N0J said:
There may be code that specifies the height and width..
Did you match your size with the file you replaced?
Click to expand...
Click to collapse
Yes sir, 320 x 480 on the sprint logo. The XML file has some numbers but I have no clue what they are refering to.
ScreenX = 100
ScreenY = 130
Noj you seem to be the art guy, any ideas?

Kcarpenter said:
Yes sir, 320 x 480 on the sprint logo. The XML file has some numbers but I have no clue what they are refering to.
ScreenX = 100
ScreenY = 130
Noj you seem to be the art guy, any ideas?
Click to expand...
Click to collapse
I may be incorrect about this but if you compare those numbers to actual screen size that seems very close to the size of the animation.

@ WTPhoto, the HTC and HERO images are 300 x 120 the Sprint image is 320 x 480 - I replaced the Sprint.gif with this one.
If someone has any clue what I am doing wrong here let me know.
I have another thread going about that specific problem in the Apps/Themes sub forum.
I am making a new boot screen for my self that mimics an Ubuntu one. Problem I have, is durring the animation, as far as I can tell frame 2...crap hits the fan. The image distorts in a funny pixelated way. Not sure how to describe it other than an explosion of random colored pixels. Well not so random colored, they are the colors that are in the image.
So I guess my question is, are there certain ways the GIF needs to be formated? Color restrictions? Frame restriction? In all the image is 32 kb so its not huge. I have it formated is a Animated Gif WebSnap 128 - There is no transparency.
Click to expand...
Click to collapse
EDIT:
Ok so uploading the image to the thread didn't keep the animation - promise its not just a black picture lol

Kcarpenter said:
@ WTPhoto, the HTC and HERO images are 300 x 120 the Sprint image is 320 x 480 - I replaced the Sprint.gif with this one.
If someone has any clue what I am doing wrong here let me know.
I have another thread going about that specific problem in the Apps/Themes sub forum.
EDIT:
Ok so uploading the image to the thread didn't keep the animation - promise its not just a black picture lol
Click to expand...
Click to collapse
lol like I said I I could be wrong. I dont know ANYTHING about GIF's never had any desire to mess with them until now. I am however pretty happy with the horizontal nexus one bootscreen just added the "fresh" sound to it.
be intresting to see if you can get this going.

This is what the boot actually looks like...screen-o-garbage
Just another thing that stops me from putting my ROM out there, I don't want to have to fix this crap lol.

Kcarpenter said:
Yes sir, 320 x 480 on the sprint logo. The XML file has some numbers but I have no clue what they are refering to.
ScreenX = 100
ScreenY = 130
Noj you seem to be the art guy, any ideas?
Click to expand...
Click to collapse
Kcarpenter said:
This is what the boot actually looks like...screen-o-garbage
Just another thing that stops me from putting my ROM out there, I don't want to have to fix this crap lol.
Click to expand...
Click to collapse
hmmm, I needed to look into bootscreens anyway, lol
got a request for one
1st guess is the x and y are either screen position coordinates or a timer for each image.
Can you setup a dl for your file, pm it to me?
I can make a animated gif from scratch if I need to

N0J said:
hmmm, I needed to look into bootscreens anyway, lol
got a request for one
1st guess is the x and y are either screen position coordinates or a timer for each image.
Can you setup a dl for your file, pm it to me?
I can make a animated gif from scratch if I need to
Click to expand...
Click to collapse
Yeah, Ill PM . Right now we are snowed in at my In-laws house, it will be a day or two before we dig out.

Here is the gif if you want to take a look at it. I had to zip it, if you upload a gif the site turns it to a jpeg.

Forgot to post the zip.

Related

[PROJECT] REAL animated Bootanimations in AOSP

I want to start a project for a REAL animated bootscreen, maybe as GIF or multiple JPGs..
From what I know, the bootanimation is triggered by the surfaceflinger, and it calls the bootanimation binary.
The source is here:
http://android.git.kernel.org/?p=pl...9269bc9fa9452ad32d733830713565e157cc;hb=donut
Lets mod it
In the Droid dump the start animation is a serie ofpng files maybe we can use the same things for the desktop ?
Quick Question: Does htc include some special files that allows android to support GIF's ?
imfloflo said:
In the Droid dump the start animation is a serie ofpng files maybe we can use the same things for the desktop ?
Click to expand...
Click to collapse
Incompatible, throws out errors, idk why.
Daneshm90 said:
Quick Question: Does htc include some special files that allows android to support GIF's ?
Click to expand...
Click to collapse
Didn't see any.. but running the bootaniamtion bin does show the AOSP animation.
K i dont have a build environment setup so im just gonna suggest
What happens if u replace
Code:
initTexture(&mAndroid[0], mAssets, "images/android-logo-mask.png");
with
Code:
initTexture(&mAndroid[0], mAssets, "images/boot.gif");
???
djengizz mentioned to me, he saw in the source that the system makes calls to android-logo-mask.png maybe we should change that .png to .gif
Daneshm90 said:
K i dont have a build environment setup so im just gonna suggest
What happens if u replace
Code:
initTexture(&mAndroid[0], mAssets, "images/android-logo-mask.png");
with
Code:
initTexture(&mAndroid[0], mAssets, "images/boot.gif");
???
Click to expand...
Click to collapse
man u beat me 2 it
Maybe it's possible to create an array of images for the foreground (android-logo-mask0.png --> android-logo-maskxxx.png) and iterate over them in the do - while loop that shifts the background image.
Yes, great idea, maybe a very wide,wide image of pngs? Not sure if it will work though..
Any dev out there with java knowledge?
Sorry to say that but it isn't Java...
C++... I'm cloning the git-repro and then look it's so easy to just change the name to .gif...
I don't think it's enough, because the png and gif-format are both different and png is ONE frame, a gif has many frames!
born2die said:
Sorry to say that but it isn't Java...
C++... I'm cloning the git-repro and then look it's so easy to just change the name to .gif...
I don't think it's enough, because the png and gif-format are both different and png is ONE frame, a gif has many frames!
Click to expand...
Click to collapse
Ah it never is as easy as it seems, but doesnt hurt to give it a shot
Yea loading multiple png's would definitely be a good alternative, just add some delay between them.
maxisma said:
Yes, great idea, maybe a very wide,wide image of pngs? Not sure if it will work though..
Any dev out there with java knowledge?
Click to expand...
Click to collapse
Judging from the source the background shift happens at 12 fps and it renders a texture from the png image (so i don't think an animated gif would work).
That means that something like the Droid animations would at least last around 4 seconds (i thought there's about 50 images in it) although you could speed up / slow down things of course.
we gotta figure out the way that droid calls the bootanimation.zip in /media. they're clearly not even using /assets because the android-mask.png is all still in there.
djengizz said:
That means that something like the Droid animations would at least last around 4 seconds (i thought there's about 50 images in it)
Click to expand...
Click to collapse
there's more like 100
jroid said:
we gotta figure out the way that droid calls the bootanimation.zip in /media. they're clearly not even using /assets because the android-mask.png is all still in there.
Click to expand...
Click to collapse
Same with Htc. They even have their assets folder n stuff, but never use it. If we cud figure out either htc or droid's calling methods, we're set
Which bootanimation.zip are you talking about?
it looks like the source is written to recognize png's. a simple change to .gif wouldn't work unless we were to re-write the source to recognize .gif.. so then our focus should be to get an animation using png's. hence, what Motorola did w/ droid
jroid said:
we gotta figure out the way that droid calls the bootanimation.zip in /media. they're clearly not even using /assets because the android-mask.png is all still in there.
Click to expand...
Click to collapse
It doesn't really matter, we could move them to framework-res/assets for the AOSP builds.
born2die said:
Which bootanimation.zip are you talking about?
Click to expand...
Click to collapse
in droid's dump, the /system/media/ has bootanimation.zip in there which contains the droid boot png's
At the moment i'm a bit confused, so wich bootanimation are you really talking about?
EDIT: Thx, don't know so much about DROID...

Boot animation woes

My evo hates any boot animations that I make, i've attached a boot animation that has absolutely NO reason to fail, yet I get a black screen. All I did was recolor the images, no other changes. If I put a custom image in a boot animation that works, my evo skips right over the image that I put in. Completely custom animation, black screen. Is the attached animation screwed somehow?
mrono said:
My evo hates any boot animations that I make, i've attached a boot animation that has absolutely NO reason to fail, yet I get a black screen. All I did was recolor the images, no other changes. If I put a custom image in a boot animation that works, my evo skips right over the image that I put in. Completely custom animation, black screen. Is the attached animation screwed somehow?
Click to expand...
Click to collapse
First off, do something more creative than just turning a previous animation gold. Next leave the frame rate at 24 fps. Next, when you zip the file make sure it is zipped as a store... not compressed. Leave the txt file alone. try not to mess with it at all. it has to be a unix file, thats why you need to leave it alone if at all possable.
SamJamz said:
First off, do something more creative than just turning a previous animation gold. Next leave the frame rate at 24 fps. Next, when you zip the file make sure it is zipped as a store... not compressed. Leave the txt file alone. try not to mess with it at all. it has to be a unix file, thats why you need to leave it alone if at all possable.
Click to expand...
Click to collapse
I didn't touch the txt, zipped as store, and i turned it orange because it's for an orange base CM6 theme. It still doesn't work, here's the zip that I tried.
mrono said:
I didn't touch the txt, zipped as store, and i turned it orange because it's for an orange base CM6 theme. It still doesn't work, here's the zip that I tried.
Click to expand...
Click to collapse
Don't worry about someone trying to tell you what to do as a boot animation. He's just being a troll.
As for your animation, the reason it's ****ing up is BECAUSE you didn't edit the desc.txt properly. That animation has two parts, and the desc. txt calls for both.
Just get an animation with a single part to it, and toss your images in the android dolder, that way you won't have to worry about ****ing up the desc. txt again.
TJDuckett said:
Don't worry about someone trying to tell you what to do as a boot animation. He's just being a troll.
As for your animation, the reason it's ****ing up is BECAUSE you didn't edit the desc.txt properly. That animation has two parts, and the desc. txt calls for both.
Just get an animation with a single part to it, and toss your images in the android dolder, that way you won't have to worry about ****ing up the desc. txt again.
Click to expand...
Click to collapse
Why does that animation work before i pulled the images out, modded them, then put them back in and not after? All the images are there in the same folders, names, everything.
mrono said:
Why does that animation work before i pulled the images out, modded them, then put them back in and not after? All the images are there in the same folders, names, everything.
Click to expand...
Click to collapse
Bc you lied and said you didn't mess with the desc.txt, but you not only did, but screwed it up.
TJDuckett said:
Bc you lied and said you didn't mess with the desc.txt, but you not only did, but screwed it up.
Click to expand...
Click to collapse
swear to god I didn't touch it, that's the exact same one that is in the CM6 zip. How is it screwed up and how should it be written?
I dunno. They're different. Look at them yourself.
Anyways, I'm out - Just do what I said in the above post to fix it.
nope, just side/side them, same file. Anyone with a better reason on why the zip I posted doesn't work instead of "because it doesn't"?
Desc txt from original-
480 480 24
p 1 10 android
p 1 0 part0
p 0 0 part1
Desc. from your edit:
480 480 30
p 1 1 android
p 0 0 loading
... how the **** are those the same?
TJDuckett said:
Desc txt from original-
480 480 24
p 1 10 android
p 1 0 part0
p 0 0 part1
Desc. from your edit:
480 480 30
p 1 1 android
p 0 0 loading
... how the **** are those the same?
Click to expand...
Click to collapse
Your still looking at the one that I posted first, I posted another on 1-2 posts later and have been refering to the newer one, figured that was obvious.
mrono said:
Your still looking at the one that I posted first, I posted another on 1-2 posts later and have been refering to the newer one, figured that was obvious.
Click to expand...
Click to collapse
It wasn't.
Alanmw86 said:
It wasn't.
Click to expand...
Click to collapse
great response, i assumed wrong, now can we get back to trying to figure out why the boot animation doesn't work
mrono said:
great response, i assumed wrong, now can we get back to trying to figure out why the boot animation doesn't work
Click to expand...
Click to collapse
Honestly no. You posted the original and the one you edited. The text from both were obviously different, thus me saying that you changed it. After you said you didn't, and I showed you the blatant difference in the two files, you responded with soemthing about me "looking at the wrong one"... you posted BOTH for comparison, and that's what I did... compared them.
As for the fix, it's a simple fix. The real problem here, is that people here, including myself, don't really like to help assholes.
Anyways, you and that pompous **** have fun.

New DROID X mixed boot animation, with sound.

Made a mixture of a few boot animations for my DROID X.
Rotten Apple
Stock DROID boot
NeXus Holiday Red
Then added (and mixed horribly) a sound I made from Apple startup, then some stock DROID auido files.
Sorry if its rotated, I forgot about that when I filmed it, but that actual phone and file are in portrait mode. Also, sorry about the "fisheye". My camera is a compact hand held with a 10x zoom. That close, and the lens warped the image a bit.
http://www.youtube.com/watch?v=mJ5DqbbZ2QY
oldschool71 said:
I have been able to get bootanimations to play on my droid x with sound. I took the following steps to enable this. I used root explorer to move the files.
1. Download the attached file. This file is one that I removed from a R2D2 D2.
2. Unzip the file and save the file to your sdcard. The file is labeled bootanimation.
3. Use root explorer and go to the folder /system/bin.
4. In that folder locate the file named bootanimation and save it as bootanimation2
5. move the file that you just renamed to your sdcard
6. move the new file that you downloaded and placed on your sdcard to the folder /system/bin
7. simple as that.
You will need to make sure that what ever audio file that is assigned to your bootanimation is saved in the folder /system/media
Have to give squidlymandingo a thanks for supplying the files from the R2D2 D2. Thanks
Click to expand...
Click to collapse
That is how you apply sound. the .zip is located at
http://www.droidforums.net/forum/droid-hacks/85339-adding-boot-sound-x.html
I have already edited the desc.txt to play one sound at the beginning of the animation. you can use what ever file you want, but it has to be named android.mp3
The sound file needs to be place in the /system/media/ folder, along with the boot animation.
EDIT:: http://www.megaupload.com/?d=AY9FDTRL Link for the zip with bootanimation, sound file, and the /system/bin/ file.
Looks great. Where can we download it from?
I want this too. Looks great.
Sent from my DROIDX using Tapatalk
Anybody want to host the files? Im not sure of a good free site to do it at.
Also, PM with emails and ill send out the animation.
Let me know if u want sound too, as that requires a few extra steps which i will post later/
megaupload.com is a good site to use and its free.
Added link to first post
Very nice mix. Only downside is that I'm gonna be booting my Dx a lot at the bar with my iPhone hobbled friends now
Any one get it to play sound from the start? Tried changing out that bootanimation file in /system/bin/ no luck. Plus the last image from the animation never went away. just showed the image, then i did the slide to unlock and it went to my homescreen.
bad4u6669 said:
Any one get it to play sound from the start? Tried changing out that bootanimation file in /system/bin/ no luck. Plus the last image from the animation never went away. just showed the image, then i did the slide to unlock and it went to my homescreen.
Click to expand...
Click to collapse
Define "from beginning".
My phone has the bong right when the apple appears.. maybe a quarter second delay.
and ive never heard nor seen the last image staying until you unlock.
ok sound plays and animation fixed. I turned your files into an update.zip.
Left in my transformers sound. But its cut off when it starts playing the second set of file.
any work around for this? Do I have to break the audio into 2 seperate files and tell the second one to play once the second animation starts?
Also, what are the restrictions on the files, for instance, i tried to change the hue on another bootani so the colors were closer to the theme i was on. But after changing the hue the animation wont play. Ideas?
bad4u6669 said:
ok sound plays and animation fixed. I turned your files into an update.zip.
Left in my transformers sound. But its cut off when it starts playing the second set of file.
any work around for this? Do I have to break the audio into 2 seperate files and tell the second one to play once the second animation starts?
Also, what are the restrictions on the files, for instance, i tried to change the hue on another bootani so the colors were closer to the theme i was on. But after changing the hue the animation wont play. Ideas?
Click to expand...
Click to collapse
IM new to all this, so i will give you what i know
The breaking up the sound. I am not sure, but you can try it. In the desc.txt you will notice there is a
480 480 13
(stuff)
s android.mp3
(stuff)
***Just add a s (name of file).mp3 here. I am not sure, but i think it may loop with the animation.
for changing the hue, what do you have right now? Whats in the bootaniamtion file. Also, remember when you zip the file it needs to be in store compression, or no compression.
bad4u6669 said:
ok sound plays and animation fixed. I turned your files into an update.zip.
Left in my transformers sound. But its cut off when it starts playing the second set of file.
any work around for this? Do I have to break the audio into 2 seperate files and tell the second one to play once the second animation starts?
Also, what are the restrictions on the files, for instance, i tried to change the hue on another bootani so the colors were closer to the theme i was on. But after changing the hue the animation wont play. Ideas?
Click to expand...
Click to collapse
Also, could you tell me how to make an update.zip.. Just something simple as a boot animation change like the one you made.
Casen said:
Also, could you tell me how to make an update.zip.. Just something simple as a boot animation change like the one you made.
Click to expand...
Click to collapse
I wonder if its the compression messing it up. DO you know why it has to have no compression?
Pm me your email. I will send you and update.zip with all your stuff. Use 7zip or what ever to browse the file structure, its super easy to figure out.
do you know what those lines in the desc.txt mean?
bad4u6669 said:
I wonder if its the compression messing it up. DO you know why it has to have no compression?
Pm me your email. I will send you and update.zip with all your stuff. Use 7zip or what ever to browse the file structure, its super easy to figure out.
do you know what those lines in the desc.txt mean?
Click to expand...
Click to collapse
PM sent, and i dont know why it has to have no compression, but i do know (from trial and error)that if there is compression, you will get a black screen until its time to unlock your phone.
UPDATE: I am currently looking into taking Movie, or music video clips, and turning them into bootanimations. Im not taking requests, as i am very busy with the move, but I will tell you if this is feasible, and if its easily done i will post up what and how to do it
so what does the "13" indicate on the first line? Im guessing the 480 480 is the HxW of the image.
the other animation im messing with, i can now zip it (without compression) and it works, but once i add the "s android.mp3" it wont show the animation.
in this one it is "480 480 10"
bad4u6669 said:
so what does the "13" indicate on the first line? Im guessing the 480 480 is the HxW of the image.
the other animation im messing with, i can now zip it (without compression) and it works, but once i add the "s android.mp3" it wont show the animation.
in this one it is "480 480 10"
Click to expand...
Click to collapse
The "10" is FPS
bad4u6669 said:
so what does the "13" indicate on the first line? Im guessing the 480 480 is the HxW of the image.
the other animation im messing with, i can now zip it (without compression) and it works, but once i add the "s android.mp3" it wont show the animation.
in this one it is "480 480 10"
Click to expand...
Click to collapse
also post your desc text.
the "s android.mp3" should be underneath the first p0 line
Casen said:
also post your desc text.
the "s android.mp3" should be underneath the first p0 line
Click to expand...
Click to collapse
thats where its at.
480 480 10
p 1 0 part0
s android.mp3
p 0 0 part1
bad4u6669 said:
thats where its at.
480 480 10
p 1 0 part0
s android.mp3
p 0 0 part1
Click to expand...
Click to collapse
are you putting any space or anything in there? (inbetween the lines)?

[BOOT ANIMATION] finished my boot animation but cant get it to work

i made a boot animation to match the liberty rom. it is the raising of the flag on mnt serabachi on iwo jima. i made the folder structure and the appropriate desc.txt but it wont play on my dx. Can anyone help me get this to work?
sound DO NOT WORK on liberty Rom (dont ask me why cuz i really dont know), i was checking you animation and i recommend to use at least minimum 480x320 image size and max 480x854 , as you may know you can set the animation size on the desc.txt so no need to go high and then going down on the desc.txt , that way you'll have a not heavy and lighter zip file at the end cuz 29MB for a bootanimation is kinda big using only 220 frames.....
P.S. that's one of the reason i use .jpg format instead of .png
thank you for the reply. is there any way to batch resize the pictures? i really dont want to do 220 pics individually. I CAN however, batch rename the pictures to the .jpg extension. I will do that and research how to batch resize.
mattmartin77 said:
thank you for the reply. is there any way to batch resize the pictures? i really dont want to do 220 pics individually. I CAN however, batch rename the pictures to the .jpg extension. I will do that and research how to batch resize.
Click to expand...
Click to collapse
mmm not really the programs i use just do batch rename and format change but not resize :-( ...... i have never have the need on doing it cuz use a program to create my clips and safe those clips with the right size and then create the jpg's out of it
well i found that both gimp and photoshop can batch resize easily so i am going to try that
mattmartin77 said:
well i found that both gimp and photoshop can batch resize easily so i am going to try that
Click to expand...
Click to collapse
mmmm interesting i didnt know gimp does it LoL...thats good to know... thanks for sharing info
draken78 said:
mmmm interesting i didnt know gimp does it LoL...thats good to know... thanks for sharing info
Click to expand...
Click to collapse
well you need a plugin, but its free and so far working great! not only is it resizing all my images, but it is also changing em to .jpg at the same time.
i just finished resizing, im going to try it now.
ok i tested the boot animation again with the resized pictures in a jpg format. the size is now 480x360 because i kept the original ratio, and i made the desc.txt 480x360 at 15fps. i converted everything to .jpg and i removed the audio. i used the liberty toolbox to flash it then i confirmed it was in the right spot using root explorer. i rebooted and all that appeared was a blank screen... any suggestions?
i really would like an answer, bump
Make sure when putting all the files/images/desc file into the zip you set the compression method to STORE and not NORMAL. When my bootanims were just a black screen this is what fixed it.
Explodee said:
Make sure when putting all the files/images/desc file into the zip you set the compression method to STORE and not NORMAL. When my bootanims were just a black screen this is what fixed it.
Click to expand...
Click to collapse
thank you for your help, but how to I change my compression method?
mattmartin77 said:
thank you for your help, but how to I change my compression method?
Click to expand...
Click to collapse
if you are using WINRAR do the follow :
1- select the folders and file to compress
2- right click on you mouse/touch pad (in case you are using a laptop like me LoL)
3- select " add to archive"
4- there you can change you compression method from normal to store
5- add a name to the file and select ZIP
6- click OK
7- you're done.
if you are using 7zip is pretty much the same steps from winrar...
hope that helps
thank you so much it works now! im going to put a few finishing touches on it and post it up!
mattmartin77 said:
thank you so much it works now! im going to put a few finishing touches on it and post it up!
Click to expand...
Click to collapse
Super ..... hope to see your animation soon
a few things for future reference though,
1. what is a good gif creator? i have tried at least 10 websites and at least 6 programs and none do what i want efficiently. i want to open all 220 frames at once and make an animation rather than opening each individually like i had to.
2. what is a good video to jpg creator? i had to go frame by frame and take snapshots for my entire animation last time and i took like 2 hours:/
mattmartin77 said:
a few things for future reference though,
1. what is a good gif creator? i have tried at least 10 websites and at least 6 programs and none do what i want efficiently. i want to open all 220 frames at once and make an animation rather than opening each individually like i had to.
2. what is a good video to jpg creator? i had to go frame by frame and take snapshots for my entire animation last time and i took like 2 hours:/
Click to expand...
Click to collapse
1 - Animated GIF Producer and Ulead GIF Animator so far are the best out there
2 - Video to JPG converter is my favorite and the best for bootanimations.
thank you, thread can be closed.

[Request][Bootanimation] Have images, can someone make a working animation zip please

I found a nice animated gif on reddit that I thought would make a cool fullscreen boot animation for the N5.
So, I contacted the guy who made the gif, and asked him to make some 1920 resolution individual frames for it.
Today I got a reply from him with an album of all the individual frames re-rendered in high 1920 resolution.
Here it is: http://imgur.com/gallery/ALyzv
can someone please take these frames (there is also a gif on the front of the album for reference of what it looks like animated), crop them if needed, and make them into a nice smooth boot animation zip please?
I know how to copy it in and do the permissions manually, I just need the zip file with the right frame timing etc
The guy responsible for the frames/render asked me to link his tumblr as credit: http://admiralpotato.tumblr.com/
Thanks XDA
Try this one first, if it doesn't work, give this one a shot. the first one I set the FPS to 0 in hopes that it would just run through it smoothly. The second, the FPS is set to 30.
BrianAllred said:
Try this one first, if it doesn't work, give this one a shot. the first one I set the FPS to 0 in hopes that it would just run through it smoothly. The second, the FPS is set to 30.
Click to expand...
Click to collapse
Thanks, that's a great start, however the framerate really isn't working properly.
The first ~5? seconds of the boot it will stutter along at, I dunno, 2-3 FPS, after that it becomes smooth as it's supposed to be. Same case with both files.
More specifically: the first time it plays through the files (24 frames) it goes really slowly, as though it's loading each one one by one very unsmoothly. After that the animation is smooth. Any way to fix this?
DryEagle said:
Thanks, that's a great start, however the framerate really isn't working properly.
The first ~5? seconds of the boot it will stutter along at, I dunno, 2-3 FPS, after that it becomes smooth as it's supposed to be. Same case with both files.
More specifically: the first time it plays through the files (24 frames) it goes really slowly, as though it's loading each one one by one very unsmoothly. After that the animation is smooth. Any way to fix this?
Click to expand...
Click to collapse
It might be because of the high file size of each frame. Let me see if I can do anything about that.
Since the images really take up all 1080x1920 pixels, it's hard to get the file size down. This is pretty much the best I could get.
BrianAllred said:
It might be because of the high file size of each frame. Let me see if I can do anything about that.
Since the images really take up all 1080x1920 pixels, it's hard to get the file size down. This is pretty much the best I could get.
Click to expand...
Click to collapse
I brought the animation size down to ~3.3MB and there still seems to be a rough beginning, but I think the animation looks great regardless. Get it here: http://forum.xda-developers.com/showthread.php?p=49106124
overhauling said:
I brought the animation size down to ~3.3MB and there still seems to be a rough beginning, but I think the animation looks great regardless. Get it here: http://forum.xda-developers.com/showthread.php?p=49106124
Click to expand...
Click to collapse
that's great, almost perfect, except the aspect ratio is all squished and wierd on yours. can you use the image frames from the first reply in this thread so it's not squidged? thanks, this is gonna be a real nice boot anim i think
DryEagle said:
that's great, almost perfect, except the aspect ratio is all squished and wierd on yours. can you use the image frames from the first reply in this thread so it's not squidged? thanks, this is gonna be a real nice boot anim i think
Click to expand...
Click to collapse
I already made an animation that's scaled properly, I'm not home right now and it's in my laptop so I'll post it later on today. I didn't use the images in the first animation, instead I cropped the images in half and used the left side of the image. It still looks great.
overhauling said:
I already made an animation that's scaled properly, I'm not home right now and it's in my laptop so I'll post it later on today. I didn't use the images in the first animation, instead I cropped the images in half and used the left side of the image. It still looks great.
Click to expand...
Click to collapse
whenever you're ready then
DryEagle said:
whenever you're ready then
Click to expand...
Click to collapse
Try the attached one, it's even smaller.
overhauling said:
Try the attached one, it's even smaller.
Click to expand...
Click to collapse
great job, the filesize is very impress, but... seems there was a problem when you were doing batch crop on the images, because they're all completely off-centre... getting so close to perfect, i know you can do it!
DryEagle said:
I found a nice animated gif on reddit that I thought would make a cool fullscreen boot animation for the N5.
So, I contacted the guy who made the gif, and asked him to make some 1920 resolution individual frames for it.
Today I got a reply from him with an album of all the individual frames re-rendered in high 1920 resolution.
Here it is: http://imgur.com/gallery/ALyzv
can someone please take these frames (there is also a gif on the front of the album for reference of what it looks like animated), crop them if needed, and make them into a nice smooth boot animation zip please?
I know how to copy it in and do the permissions manually, I just need the zip file with the right frame timing etc
The guy responsible for the frames/render asked me to link his tumblr as credit: http://admiralpotato.tumblr.com/
Thanks XDA
Click to expand...
Click to collapse
http://forum.xda-developers.com/showpost.php?p=53563814&postcount=1
See if that works.

Categories

Resources