快速登录:  

Forum: VirtualDJ Skins

话题: Custom equalizer - Page: 1

由于该帖子的部分内容已年深日久,可能包含陈旧过时或描述错误的信息。

Hi there.

I would like to know if its possible to create a custom equalizer with sliders for lets say 1k 2k 4k 8k 16k 63hz 125hz 250 hz like my hi fi has.
 

发表时间 Wed 05 Aug 20 @ 1:44 pm
Hi fi has a 10 band equalizer
 

发表时间 Wed 05 Aug 20 @ 1:45 pm
There's an Equalizer plugin available if you do a search.
 

发表时间 Wed 05 Aug 20 @ 1:47 pm
I want to create my own buit into my skin
 

发表时间 Wed 05 Aug 20 @ 1:52 pm
It can't be done. That's why there's a plugin.
 

发表时间 Wed 05 Aug 20 @ 2:00 pm
Ok then how does the plug in scripts work
 

发表时间 Wed 05 Aug 20 @ 2:10 pm
And can you put a vu meter per eq
 

发表时间 Wed 05 Aug 20 @ 2:10 pm
NicotuxHome userMember since 2014
Ok then how does the plug in scripts work ?
it defines a set of sliders accessible as usual by
effect_slider "effectname or slot" <sliderid> [value]
or
effect_slider_slider "effectname or slot" <sliderid> [value]

i use one in VB_8Decks skin

Put a vu meter per eq In one word NO
analog like vumeters : NO
but you can try to "emulate" a bar one by the use of a led vumeters with transparent leds on top of an "<equalizer type='bars'" in sync
 

发表时间 Wed 05 Aug 20 @ 3:23 pm
Ok so i will use "25k" <1> [25k] on a slider for the 25k eq
Is this correct
 

发表时间 Wed 05 Aug 20 @ 6:19 pm
O and i was hoping to createca spectrum analyzer for the equalizer
 

发表时间 Wed 05 Aug 20 @ 6:21 pm
25k? Are you a bat? :-)
 

发表时间 Wed 05 Aug 20 @ 6:30 pm
NicotuxHome userMember since 2014
i want, 2.5Hz too for my pet elephant :}

No there is no way to select the range or the bandwidth to be display by equalizer
and EQ10 effect have fixed values for both
but you can do things like this which are not so bad
https://imgur.com/a/sQstqnw
 

发表时间 Wed 05 Aug 20 @ 6:48 pm
Grok32Home userMember since 2019
You can build the sliders for the 10 band EQ into your skin and just leave the plug-in out of sight.
 

发表时间 Wed 05 Aug 20 @ 9:10 pm
Ok buut in leave plug in out of site how will i do that
 

发表时间 Thu 06 Aug 20 @ 4:37 am
Learn about skins starting here...

https://www.virtualdj.com/wiki/SkinSDK8.html

Also study existing skins to see how things are written, and try making small modifications. You need to paddle in the shallow end before jumping in at the deep end.
 

发表时间 Thu 06 Aug 20 @ 8:11 am
I build using djdads skin creator
 

发表时间 Thu 06 Aug 20 @ 11:02 am
Grok32Home userMember since 2019
Sorry I don't know how to use skin creator. I just looked at the code of other skins to make my own. It was difficult at first but it gets easier. This is what I have done so far. (Still working on it). Keep in mind I am not a DJ and wanted a skin tailored for home use.

http://larrybrinson.com/vdj/skin.png
 

发表时间 Thu 06 Aug 20 @ 2:47 pm
Cool man

Can i see your script for that eq please
 

发表时间 Thu 06 Aug 20 @ 6:08 pm
Grok32Home userMember since 2019
Hmmm I don't think that is allowed here but it would be rather large. Besides, I am just a beginner at this and my code is not at all consistent with the standards used here. In addition to the code for the sliders you must define the slider class and add graphics to your image. This is the code for one slider. Just duplicate it for the other nine but change the action for the appropriate slider. Of coarse you will also need to set you positions to fit your skin. :

<panel class="volume_skinny_lines" x="+5" y="+7+10+3"/>
<slider action="effect_slider 1 1" rightclick="temporary" orientation="vertical" frommiddle="false">
<pos x="+10" y="+3"/>
<size width="4" height="130-6"/>
<off height="-21" color="#171819" shape="square" border="#f1eff1" border_size="1" radius="3"/>
<on height="-21" color="red" shape="square" border="#f1eff1" border_size="1" radius="3"/>
<mouserect x="-13" y="+0" width="28" height="124"/>
<fader>
<size width="20" height="11"/>
<off x="0" y="5455" />
</fader>
</slider>
</panel>
 

发表时间 Thu 06 Aug 20 @ 8:05 pm
So lets say fir the 36 eq the action will be
<slider action="effect_slider 36 36"

And for the 16k will be
<slider action="effect_slider 16 16"

Is ths correct
 

发表时间 Thu 06 Aug 20 @ 11:14 pm
65%