Skip to content
Forum Archive

I'm back... and w/out shareware

27 posts

GKZ#

I'm back... and w/out shareware

Hey all.

You might remember me from "The Random Collection" You know... the thing that showed how much a guy can screw up in 24 hours... Anyways... I've found some time to play around with AVS some more and ought to have a re-relase of the old pack with some decent presets in it and NO SHAREWARE garbage in a few more months from now. Just some questions...

1) Is anyone still holding a grudge?

2) Is there an easy way to fill the screen with a solid color or a gradient by using a superscope?

3) Are there any good AVS tutorials out there?

Dr. M
shreyas_potnis#
There's this thread about the AVS primer (newest version) hanging around here, download AVS primer (or from Atero's Sig).
ssc to fill screen:

frame:
cp=0;n=w+h;
pixel:
cp=bnot(cp);
x=i*2-1;
y=if(cp,1,-1);
red=blablalblbalalb;
blue=blablalblbalalb;
green=blablalblbalalb;

code your colour.
Bye.
Deamon#
or:

x=i*2-1;
y=0;

red=blablabla;
green=blablabla;
blue=blablabla;

movement:
y=0;

also code your color here.
Tuggummi#
Or check out the first page of the tips&tricks thread for a few posts about gradients.

Not holding a grudge, just don't charge money from avs.
anubis2003#
A while ago, he was trying to get some $$ from AVS presets. Search for it if you really want to know more.
Rovastar#
Originally posted by Ishan_Rocky
is'nt that mentioned somewhere that you are'nt suppose to earn $$ from AVS?
Is it? Well I didn't know that. Can you verify that?

Personally I do not have a problem with charge although it does not set a good impression on the forums and AVS ethos.
Clinical#
A quick look through the bowels of the site turned up nothing that says you can't make money from your AVS presets... although I'm pretty sure you're not supposed to make money from OTHER people's presets. If it's really an issue that needs solving, someone could e-mail the folks at Nullsoft and ask 'em directly.

Also: is it possible to create a screen-filling color gradient with the Color Map? Or is a SSC the only way to do it?
mikm#
Not with colormap directly. To create more advanced (albiet less dynamic) effects, you can create a black to white gradient then customize it in colormap.
Deamon#
A color map only changes color on the already rendered screen according to color intensity. You therefor have to render a gradient screen (in any way you want), and you can color that with ColorMap.

I agree with Rovastar, I don't think it's wrong to make money out of presets you made by yourself, but it's not quite the avs ethos.
Raz#
They are essentially using nullsofts coding in AVS for their own benefit. I don't agree at all with it.
mikm#
There are probably some legal issues with that- using Winamp to make money. Somewhat like downloading stuff and selling it.
Rovastar#
Using Winamp to make money illegal. I wouldn't have thought so what about all these plugins taht peopel have to buy. What is the difference you need Winamp to run them.

I hope Nullsoft don't start sueing all the VJ-types that use AVS and get paid in clubs, etc.

If it is your own stuff you have written no problem but other peoples stuff. No-no.

I look at it the same as I do my MilKDrop stuff I have the IP rights to my stuff I do with as I please.🙂 LEgally I think Nullsoft will actually strugle (if they ever did follow that path (I doubt it anyway) but the bad PR will be intense) I see it like making a picture in Photoshop.
Tuggummi#
Well as far as i know, the avs "help" screen does say something like "You are free to use it at parties, clubs etc." So i guess Vj:ing is ok, and i also guess that shareware avs isn't illegal either (just a guess). But wheter or not it is illegal/legal, it is still pretty much judged by the community. No one here at the forums is making money out of their beloved hobby so naturally people get upset when someone comes and tries to make a profit out of it.
[Ishan]#
Originally posted by Rovastar
Is it? Well I didn't know that. Can you verify that?

Personally I do not have a problem with charge although it does not set a good impression on the forums and AVS ethos.
That is why.
jheriko#
ssc:

x=0;y=0;
red=,blue=,green=

movement:
d=0;

Clearscreen in one colour.. allows you to clear the screen in a way different to Dynamic Clear Screen APE if you really need to. DCS is pretty useful for this though if you don't want synching or some specific pattern of colors.. and its slightly faster.
shreyas_potnis#
If you really DONT know to code specefic colours, then make a black n white gradient and use DCS APE with some kind of blending, although here's a good color technique:

Beat: hu=rand(628)*.01;

Pixel:
x=i*2-1;
hu=i*2;
red=sin(hu)*.5+.5;
green=sin(hu+2)*.5+.5;
blue=sin(hu+4.2)*.5+.5;

followed by a y=0 movement
Tuggummi#
Shreyas, you seem to be conveniently forgetting some decimals there...

Also don't you think it's better to use pi instead of 2 for that hu=i*2 ?
jheriko#
Re: I'm back... and w/out shareware

Originally posted by GKZ

2) Is there an easy way to fill the screen with a solid color or a gradient by using a superscope?