Go Back   Winamp Forums > Visualizations > AVS

Reply
Thread Tools Search this Thread Display Modes
Old 26th June 2001, 22:40   #1
TeChNiCaLwReCk
Junior Member
 
Join Date: Jun 2001
Location: Vancouver, BC, Canada
Posts: 3
Send a message via ICQ to TeChNiCaLwReCk
I don't know if anyone has noticed, but when you open the pulldown menu in the AVS editor, it produces a weird effect in the AVS. Is there a way I can reproduce this effect?
TeChNiCaLwReCk is offline   Reply With Quote
Old 30th June 2001, 02:55   #2
Scarface2k1
Banned
 
Scarface2k1's Avatar
 
Join Date: Feb 2001
Location: i dont get out much so i dont remember
Posts: 1,032
Send a message via ICQ to Scarface2k1 Send a message via AIM to Scarface2k1 Send a message via Yahoo to Scarface2k1
it would help if you could tell us what effect it is first.
Scarface2k1 is offline   Reply With Quote
Old 30th June 2001, 07:44   #3
TeChNiCaLwReCk
Junior Member
 
Join Date: Jun 2001
Location: Vancouver, BC, Canada
Posts: 3
Send a message via ICQ to TeChNiCaLwReCk
the effect thats produced isn't an effect thats in the list. its just that when you open the pull-down menu, if you look at the avs, something new happens. i want to know if theres a way to get this effect without opening the menu.
TeChNiCaLwReCk is offline   Reply With Quote
Old 30th June 2001, 19:47   #4
Scarface2k1
Banned
 
Scarface2k1's Avatar
 
Join Date: Feb 2001
Location: i dont get out much so i dont remember
Posts: 1,032
Send a message via ICQ to Scarface2k1 Send a message via AIM to Scarface2k1 Send a message via Yahoo to Scarface2k1
you mean when your pull down menu is up, and avs isnt really reacting to the music??
Scarface2k1 is offline   Reply With Quote
Old 1st July 2001, 18:20   #5
Punkers
Junior Member
 
Join Date: Jun 2001
Posts: 9
Send a message via AIM to Punkers Send a message via Yahoo to Punkers
Maybe you could use the custom bmp and bump the skip option all the way up, but the wave detectors would still work. Works just the same as when I use a CD. By the way is there a plug-in or anything that'll make the avs respond to my CD's? or do I have to use the custom bmp all the time.
Punkers is offline   Reply With Quote
Old 2nd July 2001, 02:20   #6
flatmatt
Iron Chef
(Reviewer)
 
flatmatt's Avatar
 
Join Date: Nov 2000
Location: Winamp Island
Posts: 3,036
You mean when the display freezes for a moment? Don't know.

Punkers: try CD Reader, from this site.
flatmatt is offline   Reply With Quote
Old 3rd July 2001, 21:53   #7
TeChNiCaLwReCk
Junior Member
 
Join Date: Jun 2001
Location: Vancouver, BC, Canada
Posts: 3
Send a message via ICQ to TeChNiCaLwReCk
yeah when it kind of freezes and the avs blends really wierd
TeChNiCaLwReCk is offline   Reply With Quote
Old 3rd July 2001, 22:32   #8
flatmatt
Iron Chef
(Reviewer)
 
flatmatt's Avatar
 
Join Date: Nov 2000
Location: Winamp Island
Posts: 3,036
And it stops responding to the music? No, don't know how to do that other than making a preset that doesn't respond to music anyway.
flatmatt is offline   Reply With Quote
Old 4th July 2001, 04:17   #9
Scarface2k1
Banned
 
Scarface2k1's Avatar
 
Join Date: Feb 2001
Location: i dont get out much so i dont remember
Posts: 1,032
Send a message via ICQ to Scarface2k1 Send a message via AIM to Scarface2k1 Send a message via Yahoo to Scarface2k1
Quote:
Originally posted by flatmatt
And it stops responding to the music? No, don't know how to do that other than making a preset that doesn't respond to music anyway.
that would be easy. HAVE NOTHING IN IT!
Scarface2k1 is offline   Reply With Quote
Old 9th July 2001, 00:20   #10
Adasha
Member
 
Join Date: Feb 2001
Location: down the pub
Posts: 98
Punkers: in the input section of preferences, make sure the 'sampling' tick box is ticked under 'cd/linein' plugin. then make sure your soundcard is set to record from the cd-audio source, same as any other vis plugin.
Adasha is offline   Reply With Quote
Old 9th July 2001, 13:00   #11
Scarface2k1
Banned
 
Scarface2k1's Avatar
 
Join Date: Feb 2001
Location: i dont get out much so i dont remember
Posts: 1,032
Send a message via ICQ to Scarface2k1 Send a message via AIM to Scarface2k1 Send a message via Yahoo to Scarface2k1
yeah but what about people who dont need this plugin?
Scarface2k1 is offline   Reply With Quote
Old 16th July 2001, 00:09   #12
geozop
Member
 
Join Date: Jul 2001
Location: Livermore, CA
Posts: 63
Send a message via ICQ to geozop Send a message via AIM to geozop Send a message via Yahoo to geozop
Getting that effect

It seems that when the menu is down, the v variable in the superscope is not updated each frame, but kept at whatever v was on the frame when the menu was pulled down. So attempted a little code (on the superscope) to switch between updating v like normal or keeping v the same:

Init: n=w; t=0
Beat: t=bnot(t)
Per Point:
x=i*2-1;
q=if(t,q,v);
y=q*2;

Every beat t switches between 0 and 1, and the if statement will determine if q is going to be v (normal) or stay the same.
However, on doing this I found that when q is kept the same, it is the same for every point (creating a straight line) rather then when it is v (where v is different for every point).
I suppose there would be a way for a ton of if statements for every i in the per point area (such as:
va=if(equal(i,0.1),v,va);
vb=if(equal(i,0.2),v,vb);
vc=if(equal(i,0.3),v,vc);
... then
q=if(equal(i,0.1),va,q);
q=if(equal(i,0.2),vb,q);
q=if(equal(i,0.3),vc,q);
... etc) but, that would slow down the vis a lot, and be really ugly. Too bad there are not tables (like in C and other codes) to hold variables.
Good luck.
geozop is offline   Reply With Quote
Old 16th July 2001, 01:32   #13
Scarface2k1
Banned
 
Scarface2k1's Avatar
 
Join Date: Feb 2001
Location: i dont get out much so i dont remember
Posts: 1,032
Send a message via ICQ to Scarface2k1 Send a message via AIM to Scarface2k1 Send a message via Yahoo to Scarface2k1
i can understand it, but its not my code so i dont want to try it out
Scarface2k1 is offline   Reply With Quote
Reply
Go Back   Winamp Forums > Visualizations > AVS

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump