Announcement

Collapse
No announcement yet.

May I suggest...

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • May I suggest...

    [ame="http://www.youtube.com/watch?v=ns1yhoFTqJ0"]It's not the end of my world! Life goes on...[/ame]
    Last edited by Q -Mark [0!0]; 05-18-2011, 06:32 AM.

  • #2
    It sounds abit like "your car is not good because i can't really drive it while eating a pizza and washing my feet".
    The today's standard should be 1.5mb/s.

    Modding like it's 1999! HELL YEAH!
    Operating Engine: Engoo
    QuakeC Compiler: vqcc.exe

    Comment


    • #3
      Page loads instantly for me.
      For it being 1.3mb - it's a multi-frame animation - many of the others are simply 2 frames (lights on, lights off). This one really shows animation

      Comment


      • #4
        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


        • #5
          Originally posted by Q -Mark [0!0]
          Anyway I'm a very positive/optimistic person... I guess I just had to put my "grain de sel" * by now
          Modding like it's 1999! HELL YEAH!
          Operating Engine: Engoo
          QuakeC Compiler: vqcc.exe

          Comment


          • #6
            Originally posted by Q -Mark [0!0]
            extraterrestrials
            i wouldnt be too worried about them
            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


            • #7
              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.
              I accept your offer.

              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


              • #8
                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


                • #9
                  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.
                  Not without dropping the resolution and color depth. I myself tried to drop it and it's just simply a few kb's - nothing worthwhile. Dropping the color depth to 64 colors was a good decrease - BUT obviously a HUGE quality drop.

                  Comment


                  • #10
                    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.
                    http://www.nextgenquake.com

                    Comment


                    • #11
                      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();
                      }
                      }
                      }
                      }
                      http://www.nextgenquake.com

                      Comment


                      • #12
                        Fok!!
                        Want to get into playing Quake again? Click here for the Multiplayer-Startup kit! laissez bon temps rouler!

                        Comment


                        • #13
                          And here it is at 112k:



                          Could probably halve that again using the backwards trick.
                          IT LIVES! http://directq.blogspot.com/

                          Comment


                          • #14
                            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, 05:07 PM.
                            http://www.nextgenquake.com

                            Comment


                            • #15
                              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....
                              http://www.nextgenquake.com

                              Comment

                              Working...
                              X