[ame="http://www.youtube.com/watch?v=ns1yhoFTqJ0"]It's not the end of my world! Life goes on...[/ame]
Announcement
Collapse
No announcement yet.
May I suggest...
Collapse
X
-
It's 1.3 MB because it is an animated GIF, which has several frames.
I wouldn't normally put such a phatty on the homepage, but considering the extraordinary amount of work Seven put into that project I made a one-time exception.Quakeone.com - Being exactly one-half good and one-half evil has advantages. When a portal opens to the antimatter universe, my opposite is just me with a goatee.
So while you guys all have to fight your anti-matter counterparts, me and my evil twin will be drinking a beer laughing at you guys ...
Comment
-
Originally posted by Q -Mark [0!0]extraterrestrials
since they get 100Gb/second, all at the same time as they download torrent porn, and streaming how to cook flash videos...
edit: i wonder if aliens check out all the "bad salvia trip" videos on U-tube... I DO !!SURGEON GENERAL WARNING:
THE IMITATION OF ANY OR ALL MANEUVERS EXECUTED BY A BB2 H23A1 4WS PRELUDE IS HAZARDOUS TO YOUR CAR'S HEALTH. DRIVING A PRELUDE MAY CAUSE LOSS OF INTEREST IN OTHER CARS, WOMEN AND SPEED LIMITS. OTHER SYMPTOMS INCLUDE SLEEPLESS NIGHTS, COLD SWEATS AND OTHER SYMPTOMS RELATED TO ADDICTION. IF THE SYMPTOMS PERSIST,DRIVE!
sigpic
Comment
-
Originally posted by Q -Mark [0!0]Ya Baker I do agree and understand... but I really think this picture can be 5-10 times smaller there is something wrong with it.
Make the image smaller and more efficient in an image editor while maintaining the animation and I'll use yours in the news item and modify the news item giving you credit.Quakeone.com - Being exactly one-half good and one-half evil has advantages. When a portal opens to the antimatter universe, my opposite is just me with a goatee.
So while you guys all have to fight your anti-matter counterparts, me and my evil twin will be drinking a beer laughing at you guys ...
Comment
-
as for speed i ordered the 15mb/s package from my isp... tho i never actually see that type of speed... the best i usually get is 1.6 1.8 mb/s on downloads...
but when i open the resource monitor on my task manager during streaming a video, i can get in excess of 6mb/s, once i thought i saw 10 for a second there... why cant it just be consistent ? bah !SURGEON GENERAL WARNING:
THE IMITATION OF ANY OR ALL MANEUVERS EXECUTED BY A BB2 H23A1 4WS PRELUDE IS HAZARDOUS TO YOUR CAR'S HEALTH. DRIVING A PRELUDE MAY CAUSE LOSS OF INTEREST IN OTHER CARS, WOMEN AND SPEED LIMITS. OTHER SYMPTOMS INCLUDE SLEEPLESS NIGHTS, COLD SWEATS AND OTHER SYMPTOMS RELATED TO ADDICTION. IF THE SYMPTOMS PERSIST,DRIVE!
sigpic
Comment
-
Originally posted by Q -Mark [0!0]I do agree and understand... but I really think this picture can be 5-10 times smaller there is something wrong with it.
Comment
-
Here ya go. I got it to 637kb with no visual loss. The trick was simple. I used the first frame of the animation as the bottom layer. on the top layer are all the animated frames with everything except the actual animated parts removed. Then I cut out the entire second half of the animation and wrote a small script that basically says "if this is at the end, play it backwards". Voila less than half the size.
Everything you need is here. http://freemarket.net16.net/qomisc/box.html
P.S. If you need me to ever do this again (with another image) just pm me. It took me 2 minutes. Also, if you use it, you dont have to mention me on the front page or whatever it was you said earlier in this thread. This was a no brainer and I'm happy to contribute.
Comment
-
Woops, I just realized the very middle frame (original animation) and the first frame are the same frame, so by deleting the animation layer and just letting the bottom layer show through it took another 40kb off. Now the file is 597 kb. The above link has been updated
as3 code (simple)
package{
import flash.display.MovieClip;
import flash.events.Event;
public class main extends MovieClip {
private var forward:Boolean = true;
public function main() {
addEventListener(Event.ENTER_FRAME,test);
}
private function test(e:Event) {
if (this.currentFrame==1) {
forward=true;
} else if (this.currentFrame==32){
forward=false;
}
if (!forward){
this.gotoAndStop(currentFrame-1);
}else{
this.play();
}
}
}
}
Comment
-
Fok!!Want to get into playing Quake again? Click here for the Multiplayer-Startup kit! laissez bon temps rouler!
Comment
-
And here it is at 112k:
Could probably halve that again using the backwards trick.IT LIVES! http://directq.blogspot.com/
Comment
-
dang that 112 crushed my 597.I don't know how to do image stuff I'm just a flash junkie so...
I gave it my best shot.
@Qmark its 31 images originally. I originally made it 16 and reversed it but then realized 1 and 16 were the same pic so, I used 1 with a belated 2 thru 15 and then 1 shows up again (but was always there) and reverses thru 15 to 1 then starts over. Basically, you arent going to do it in less than 16 pics.
However, I could get it SUPER small if I recoded the animation part with a loop created and code "alphad" vector graphic over just the first image. I bet I could get it to about 40k. However, I'm not wasting my whole night on that LOL.Last edited by MadGypsy; 03-04-2011, 06:07 PM.
Comment
-
one thing i did notice is that MH's animation is "skippy". Watch the bars. Mine is identical to Sevens (and 5+ times larger than MH's), so....
Comment
Comment