How do they arrange the adds in-between the footy?

From black to white via every colour inbetween, full screen.

  • I want to generate a full-screen traversal of the entirety of RGB colour space. This is to be played back on a Windows computer. The display machine is Windows. It has Firefox, IE, and the Microsoft office suite. It has Quicktime, but not Quicktime Pro. I do not have administrator rights on this machine, but could probably arrange to have free software installed on it. Pay software is out. The tools I have at my disposal are: Linux computers with complete ImageMagick tools, reasonable programming skills, and libraries which can create Quicktime movies. So far I have tried: Generating a series of one pixel bitmap images and converting to gif using convert and then using Firefox to show this gif expanded to fill most of the screen. This is OK but the indexing of the gif means that I run out of colours fairly fast. I have generated a quicktime movie which has the characteristics I want, but Quicktime needs to be upgraded to Pro to allow full screen viewing. Is there some scripting language that I could use within PowerPoint? Some windows tool I don't know about? Or is there a way to do this in JavaScript?

  • Answer:

    "I have generated a quicktime movie which has the characteristics I want, but Quicktime needs to be upgraded to Pro to allow full screen viewing." If your only problem is full-screen viewing, http://www.videolan.org/vlc/ should work nicely. If you don't / can't install it, get the portable, self-contained version from http://portableapps.com/apps/music_video/vlc_portable.

handee at Ask.Metafilter.Com Visit the source

Was this solution helpful to you?

Other answers

The *entirety* of RGB colour space? To what colour depth? Obviously the 8-bit GIF is out; 16-bit? 24-bit? 32-bit? I'm assuming that you want the maximum gradation across all colours? Do you want it to show one colour at a time, or all colours all at once (kind of like the colour-wheel palettes on a paint program)? Should be possible with JS - create a basic page, and then use the script to change the background colour attributes one step at a time... this will give you 00-FF for each of R, G and B - i.e. 24-bit. Not sure how easy it would be to display full-screen either.

Chunder

Photoshop. LAB mode Gradient tool, black to white A channel: draw left-to-right B channel: draw top-to-bottom View all channels Convert to RGB. Save image, copy to this computer.

bonaldi

oh, hold on, I may have misunderstood: do you want the screen to be all one colour, then animate a run through all the spectrum?

bonaldi

All one colour, then animate a run through the spectrum, showing one colour at a time. I thought I could do it in Javascript, with something along the lines offor (i=0;i for (j=0;j for (k=0;k setbackground(i,j,k); pause a bit } }}function setbackground(r,g,b) { colour_string="#"+hex(r)+hex(g)+hex(b); document.bgcolor(colour_string);}2>2>2> where hex is the obvious dec-hex converter, and the nested loops are called from an onLoad event. However, neither browser liked this trick. I got a downloadable background fade program to sort of work (it flicked through about 16 stages of grey), but it was way flickery, and as soon as I bumped up the number of transitions, the browsers stopped playing ball. ("A script on this page is causing mozilla to run slowly", yeah right. IE didn't even do the error message thing).

handee

Damn pre tag handling. That looked fine in the preview pane.

handee

Even at 60fps, you will be displaying for 77 hours to show all of the possible combinations (256^3). May I suggest a http://www.john-cage.halberstadt.de/new/index.php?l=e?

Diddly

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.