|
|||||||
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
|
#1 |
|
Junior Member
Join Date: May 2001
Posts: 11
|
If you've made any cool stuff in the avs, like superscopes, and movements, post the code here, maybe we can start like a code library... When I learn hpe to make my own stuff, I will post...
P.S. Hey, winamp people, Make a section dedicated to the avs codes, like people can send in, and you can have your own, and a how to code section to
|
|
|
|
|
|
#2 |
|
Moderator Alumni
Join Date: Jun 2000
Location: the MANCANNON!
Posts: 22,431
|
I think you now have more threads than post, newbie
|
|
|
|
|
|
#3 |
|
Banned
|
hi Kloque
Well welcome to the WinAmp forums
![]() you can check out my pack on my site at http://www.andysplace.fsnet.co.uk there is a wide selection of packs there so have a look If you are gonna use some of the idea's from other peoples pack then please tell them or mention their names on the avs pack i.e. coments BlueTape2k1 |
|
|
|
|
|
#4 |
|
Banned
Join Date: Oct 2000
Location: England
Posts: 3,397
|
There used to be an avs preset section. I think it went wrong.
Have a look at blue's site for some avs info - http://www.andysplace.fsnet.co.uk/new_page_1.htm You can get my presets there. A bit crappy and simple but they demonstrate some of the movement effects. There is some more stuff in the developer section here - http://www.winamp.com/nsdn/wvs/ I don't use AVS much or make many presets now but more help on the avs commands would be good. Why can't it have it's own forum? NSIS and Milkdrop get one. Or does no one like avs ?EDIT - Oh blue already linked his site. Nevermind
|
|
|
|
|
|
#5 | |
|
Banned
Join Date: Jul 2000
Posts: 11,361
|
Quote:
|
|
|
|
|
|
|
#6 | |
|
Major Dude
|
Quote:
MilkDrop Webpage: http://firehose.net/free/milkdrop MilkDrop Forum: http://forums.winamp.com/forumdisplay.php?forumid=82 ![]() -- Jarsonic [Edited by jarsonic on 05-18-2001 at 12:19 AM] |
|
|
|
|
|
|
#7 |
|
Banned
Join Date: Jul 2000
Posts: 11,361
|
Dang. Quit confusing me.
|
|
|
|
|
|
#8 |
|
Junior Member
Join Date: Sep 2002
Location: Reseda, CA
Posts: 3
|
I just figured out what the dang variables mean (with some help from this forum) so here goes...
This SuperScope is a simple one. Draws a circle of varying diameter, based on the 'V' input variable (music value). Changes the color on beat, as well as doubling the size of the circle on beat. This is the basis for an AVS file I posted called "Gastronomy" that is currently under review and should be available in the Visualizations section of this site. Look for a "Toms AVS II" component. Anyway, here's the code: ----------------------------------- INIT: n=64;rot=0;rad=0; ON BEAT: rad=v*2;cr=rand(100)/100;cg=rand(100)/100;cb=rand(100)/100; PER FRAME: rad=v/1.5;red=cr;green=cg;blue=cb; PER POINT: rot=i*360; x=sin(rot)*rad; y=cos(rot)*rad; SETTINGS: Source data: Waveform Draw as: Lines ----------------------------------- |
|
|
|
|
|
#9 |
|
Major Dude
Join Date: Aug 2002
Location: Gran Da Val Island, Ragol
Posts: 1,020
|
I forgot where I found this movement, or if I made this one. If you recognise this as yours, please say so I can know if I made it or not.
d=.05;x=sin(d) Looks really good, even as simple as it is. |
|
|
|
|
|
#10 |
|
Forum King
|
Favorite SSC: Color-changing forward (orthogonal) projection 4D rotating cube
PHP Code:
PHP Code:
"guilt is the cause of more disauders than history's most obscene marorders" --E. E. Cummings |
|
|
|
|
|
#11 |
|
Senior Member
Join Date: Aug 2002
Location: Narok<Where I live<Valhalla
Posts: 165
|
CHIRST ATERO, U MADE THIS WINDOW WIIIIIIIIIIIIIIIIIIDE
lol ![]() my favorite is a Trans->movement PHP Code:
|
|
|
|
|
|
#12 |
|
Major Dude
|
Favorite SSC :
code: The rest is the 3D SSC code. It's a wee little cube generator which I'm too lazy to optimize =P Not exactly my *favorite*... there's too many for me to choose from =D Of course, I should have a glass-ish framed cube coming somtime later... Of course, I could've posted the Beat Counter, but it's holyf***ing long... Oh, what the heck! code: That was only the 1's section... I believe you change b1 into 1*(10^-n) for bigger place values (N is any number, not the number of points, of course) Fav DM? Sorry, can't decide ![]() EDIT : Tell me if you want me to divide that big code into smaller bits... [soon to leave, sirs] |
|
|
|
|
|
#13 |
|
Forum King
|
Favorite SSC:
This one draws a solid triangle with vertices (ax,ay,az), (bx,by,bz), (cx,cy,cz), with some very basic on beat response: code: And my favorite DM has got to be: code: Because it can be changed into so many different and complex 3d forms, with some simple changes, and because it is so much faster than the usual method of generating a plane. (God damn this window is wide - even at 1280x1024) |
|
|
|
|
|
#14 |
|
Junior Member
Join Date: Sep 2002
Location: Reseda, CA
Posts: 3
|
Here's a neat Dynamic Movement that I used in three of my latest AVS files (still under review for publishing). Relatively simple, but kinda neat. Playing with the values yields some neat differences in effect.
------------------------------------ BEAT: r_mod=(0.5-(rand(100)/100))/10; d_mod=(0.5-(rand(100)/100))/10; PIXEL: r=r-r_mod; d=d+d_mod; |
|
|
|
|
|
#15 |
|
Bin King
Join Date: Mar 2001
Location: Finland
Posts: 2,168
|
Just a note: Damn it's hard to read this thread!
My favorite ssc.. hmm... I love to use circles! You just can do so much things with em! ![]() my basic circle code would be: INIT: pi=acos(-1) ; n=50 ; t=0.25 ON BEAT: t=-t ; xts=t+rand(300)/1000-0.15 ; yts=t+rand(300)/1000-0.15 PER FRAME: xt=xt+xts ; yt=yt+yts ; sz=getosc(0,0,0)*0.2 PER POINT: z=2-sz ; x1=sin(i*pi*2) ; y1=cos(i*pi*2) ; x=x1/z+sin(xt)*0.75 ; y=y1/z+cos(yt)*0.75 And my favorite dm... uhm well i use something like this ALOT: va=va+sin(va2*n+t)*0.1 And here is what they stand for: va=variable like d,r,y or x va2=is a "counter-variable" for the first variable like d for r and x for y (and vice versa) n=times n, depends how many times you want to multiply the va2 value, i usually use over 3 atleast. t=well of course transition Which makes it move. The beat detection you can check from my superscope.That's it. I use this stuff way too much in my opinion... but i always try to use it differently
|
|
|
|
![]() |
|
|||||||
| Thread Tools | Search this Thread |
| Display Modes | |
|
|