It is currently April 27th, 2024, 3:17 am

AudioLevel

Share and get help with Plugins and Addons
User avatar
killall-q
Posts: 305
Joined: August 14th, 2009, 8:04 am

Re: New Plugin: AudioLevel

Post by killall-q »

Dank420, please replace SpectrumFFT.lua with this. I wasn't able to see the error in my algorithm until it was blown up and matched to FFT bars. You'll find that this one transitions more smoothly and 0 will produce magenta, not black.

Code: Select all

function Initialize()
   mFFT, var = {L={},R={}}, {'ColorL','ColorR'}
   for i = 0, 23 do
      mFFT.L[i], mFFT.R[i] = SKIN:GetMeasure('mFFTL'..i), SKIN:GetMeasure('mFFTR'..i)
   end
end

function Update()
   for i = 0, 23 do
      local FFT = {mFFT.L[i]:GetValue(), mFFT.R[i]:GetValue()}
      for j = 1, 2 do
         if FFT[j] < 0.2 then
            SKIN:Bang('!SetVariable '..var[j]..i..' '..((FFT[j] - 0.2) * -1275)..',0,255')
         elseif FFT[j] < 0.4 then
            SKIN:Bang('!SetVariable '..var[j]..i..' 0,'..((FFT[j] - 0.2) * 1275)..',255')
         elseif FFT[j] < 0.6 then
            SKIN:Bang('!SetVariable '..var[j]..i..' 0,255,'..((FFT[j] - 0.6) * -1275))
         elseif FFT[j] < 0.8 then
            SKIN:Bang('!SetVariable '..var[j]..i..' '..((FFT[j] - 0.6) * 1275)..',255,0')
         else
            SKIN:Bang('!SetVariable '..var[j]..i..' 255,'..((FFT[j] - 1) * -1275)..',0')
         end
      end
   end
end
User avatar
Dank420
Posts: 145
Joined: April 3rd, 2013, 1:04 am
Location: O-High-O

Re: New Plugin: AudioLevel

Post by Dank420 »

Thanks , have done!

could it be set for start/stop range?
so say bars green thru blue and decays yellow thru red?
User avatar
killall-q
Posts: 305
Joined: August 14th, 2009, 8:04 am

Re: New Plugin: AudioLevel

Post by killall-q »

Sure, it's easy to tweak the algorithm. Go to colorpicker.com, put the picker in the top right corner, and play with the right slider to see how RGB changes as you move along the spectrum.

So, say if you want a transition from yellow to red, start at 255,255,0 and scale green inversely with FFT.

For blue to green, start at 0,0,255 and scale green up, then blue down, like so:

Code: Select all

         if FFT[j] < 0.5 then
            SKIN:Bang('!SetVariable '..var[j]..i..' 0,'..(FFT[j] * 510)..',255')
         else
            SKIN:Bang('!SetVariable '..var[j]..i..' 0,255,'..((FFT[j] - 1) * -510))
         end
255 / 0.5 = 510
j.daddy
Posts: 14
Joined: July 28th, 2014, 5:11 am

Re: New Plugin: AudioLevel

Post by j.daddy »

@Dank420 AWESOME skin bro. what can i edit to hide the peaks when no sound is playing??
User avatar
Dank420
Posts: 145
Joined: April 3rd, 2013, 1:04 am
Location: O-High-O

Re: New Plugin: AudioLevel

Post by Dank420 »

actually working on that...
makes it hard to place as moving when sound on and gone when quite (think i figured a way out)
but add:

[measurehide]
measure=calc
formula=[measureAudioDelayRaw_Out]
ifbelowvalue=0.01
ifbelowaction=[!Hidemetergroup decays][!redraw]
ifabovevalue=0.01
ifaboveaction=[!Showmetergroup decays][!redraw]
dynamicvariables=1
disabled=0

and put meters in:

Group=decays

and poof they gone......
ive added/adding this and size changeing ill package up again when done with that.
managed to break spectrum trying a few things so ill get back to that little later...

edit : im not used to praise so it passed right over me there, Thank you BTW:)
j.daddy
Posts: 14
Joined: July 28th, 2014, 5:11 am

Re: New Plugin: AudioLevel

Post by j.daddy »

Dank420 wrote:actually working on that...
makes it hard to place as moving when sound on and gone when quite (think i figured a way out)
but add:

[measurehide]
measure=calc
formula=[measureAudioDelayRaw_Out]
ifbelowvalue=0.01
ifbelowaction=[!Hidemetergroup decays][!redraw]
ifabovevalue=0.01
ifaboveaction=[!Showmetergroup decays][!redraw]
dynamicvariables=1
disabled=0

and put meters in:

Group=decays

and poof they gone......
ive added/adding this and size changeing ill package up again when done with that.
managed to break spectrum trying a few things so ill get back to that little later...

edit : im not used to praise so it passed right over me there, Thank you BTW:)
some more praise coming your way cuz that works perfectly !!!
User avatar
Dank420
Posts: 145
Joined: April 3rd, 2013, 1:04 am
Location: O-High-O

Re: New Plugin: AudioLevel

Post by Dank420 »

thanks again :D
i changed package on previous post
also if set calc at 0.001 get more of the spectrum fade out
drakulaboy
Posts: 165
Joined: June 29th, 2014, 8:35 pm

Re: New Plugin: AudioLevel

Post by drakulaboy »

it would be awesome to try to do something like this circles with equlizers

[youtube]hHxxJrtDnsI[/youtube]
User avatar
Dank420
Posts: 145
Joined: April 3rd, 2013, 1:04 am
Location: O-High-O

Re: New Plugin: AudioLevel

Post by Dank420 »

i Figure some one working that. ( i sux@ arcs/circles) still poking at options thou

i call this Barcode, No Pun intended!

Code: Select all

[Rainmeter]
Author=dgrace,Dank420
Update=40

[Metadata]
Description=Displays current level of the audio output.
License=Creative Commons BY-NC-SA 3.0
Version=1.0.0

[Variables]
barwidth=32
Barheight=250
Seperation=8
Barcolor=17,17,38

;================================
[measureAudioRaw_Out]
; This measure returns the level of the main audio output.
Measure=Plugin
Plugin=AudioLevel
Port=Output
RMSAttack=100
RMSDecay=300
RMSGain=2.0
PeakAttack=15
PeakDecay=2700
PeakGain=1.0
FFTSize=1024
;FFTOverlap=768
;FFTSize=256
FFTOverlap=768
FFTGain=0.0
FFTAttack=15
FFTDecay=250
Bands=24
BandGain=.50
;Id={0.0.0.00000000}.{f74349d0-9741-4987-a9bd-40178fa9ad06}

[measureAudioDelayRaw_Out]
; This measure returns the level of the main audio output higher delay.
Measure=Plugin
Plugin=AudioLevel
Port=Output
RMSAttack=100
RMSDecay=300
RMSGain=2.0
PeakAttack=15
PeakDecay=2700
PeakGain=1.0
FFTSize=1024
;FFTOverlap=768
;FFTSize=256
FFTOverlap=768
FFTGain=0.2
FFTAttack=20
FFTDecay=650
Bands=24
BandGain=.50
;Id={0.0.0.00000000}.{f74349d0-9741-4987-a9bd-40178fa9ad06}

;=================================
[measureAudioOut_FFT_00]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=0

[measureAudioOut_FFT_01]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=1

[measureAudioOut_FFT_02]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=2

[measureAudioOut_FFT_03]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=3

[measureAudioOut_FFT_04]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=4

[measureAudioOut_FFT_05]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=5

[measureAudioOut_FFT_06]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=6

[measureAudioOut_FFT_07]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=7

[measureAudioOut_FFT_08]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=8

[measureAudioOut_FFT_09]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=9

[measureAudioOut_FFT_10]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=10

[measureAudioOut_FFT_11]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=11

[measureAudioOut_FFT_12]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=12

[measureAudioOut_FFT_13]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=13

[measureAudioOut_FFT_14]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=14

[measureAudioOut_FFT_15]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=15

[measureAudioOut_FFT_16]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=16

[measureAudioOut_FFT_17]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=17

[measureAudioOut_FFT_18]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=18

[measureAudioOut_FFT_19]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=19

[measureAudioOut_FFT_20]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=20

[measureAudioOut_FFT_21]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=21

[measureAudioOut_FFT_22]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=22

[measureAudioOut_FFT_23]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioRaw_Out
Channel=Sum
Type=Band
BandIdx=23



[measureAudioDelayOut_FFT_00]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=0

[measureAudioDelayOut_FFT_01]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=1

[measureAudioDelayOut_FFT_02]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=2

[measureAudioDelayOut_FFT_03]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=3

[measureAudioDelayOut_FFT_04]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=4

[measureAudioDelayOut_FFT_05]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=5

[measureAudioDelayOut_FFT_06]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=6

[measureAudioDelayOut_FFT_07]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=7

[measureAudioDelayOut_FFT_08]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=8

[measureAudioDelayOut_FFT_09]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=9

[measureAudioDelayOut_FFT_10]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=10

[measureAudioDelayOut_FFT_11]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=11

[measureAudioDelayOut_FFT_12]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=12

[measureAudioDelayOut_FFT_13]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=13

[measureAudioDelayOut_FFT_14]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=14

[measureAudioDelayOut_FFT_15]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=15

[measureAudioDelayOut_FFT_16]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=16

[measureAudioDelayOut_FFT_17]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=17

[measureAudioDelayOut_FFT_18]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=18

[measureAudioDelayOut_FFT_19]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=19

[measureAudioDelayOut_FFT_20]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=20

[measureAudioDelayOut_FFT_21]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=21

[measureAudioDelayOut_FFT_22]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=22

[measureAudioDelayOut_FFT_23]
Measure=Plugin
Plugin=AudioLevel
Parent=measureAudioDelayRaw_Out
Channel=Sum
Type=Band
BandIdx=23

;========================
; METERS 
; ========================

[meterOutFFT_00]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_00
barcolor=#Barcolor#
X=10
Y=0
W=([measureAudioDelayOut_FFT_00])*(#Barwidth#)
H=#BarHeight#
;[meterdelayOutFFT_00:y]
;#BarHeight#
dynamicvariables=1

[meterOutFFT_00b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_00
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_00])*(#Barwidth#))
H=#BarHeight#
;[meterdelayOutFFT_00:y]
;#BarHeight#
dynamicvariables=1

[meterOutFFT_01]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_01
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_01])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_01b]
Meter=BAR
Orientation=horizontal
MeasureName=measureAudioOut_FFT_01
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_01])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_02]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_02
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_02])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_02b]
Meter=BAR

Orientation=horizontal
MeasureName=measureAudioOut_FFT_02
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_02])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_03]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_03
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_03])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_03b]
Meter=BAR
Orientation=horizontal
MeasureName=measureAudioOut_FFT_03
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_03])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_04]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_04
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_04])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_04b]
Meter=BAR
Orientation=horizontal
MeasureName=measureAudioOut_FFT_04
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_04])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_05]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_05
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_05])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_05b]
Meter=BAR
Orientation=horizontal
MeasureName=measureAudioOut_FFT_05
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_05])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_06]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_06
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_06])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_06b]
Meter=BAR
Orientation=horizontal
MeasureName=measureAudioOut_FFT_06
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_06])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_07]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_07
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_07])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_07b]
Meter=BAR
Orientation=horizontal
MeasureName=measureAudioOut_FFT_07
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_07])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_08]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_08
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_08])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_08b]
Meter=BAR
Orientation=horizontal
MeasureName=measureAudioOut_FFT_08
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_08])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_09]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_09
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_09])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_09b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_09
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_09])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_10]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_10
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_10])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_10b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_10
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_10])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_11]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_11
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_11])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_11b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_11
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_11])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_12]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_12
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_12])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_12b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_12
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_12])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_13]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_13
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_13])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_13b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_13
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_13])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_14]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_14
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_14])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_14b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_14
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_14])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_15]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_15
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_15])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_15b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_15
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_15])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_16]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_16
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_16])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_16b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_16
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_16])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_17]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_17
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_17])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_17b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_17
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_17])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_18]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_18
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_18])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_18b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_18
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_18])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_19]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_19
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_19])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_19b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_19
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_19])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_20]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_20
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_20])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_20b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_20
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_20])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_21]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_21
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_21])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_21b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_21
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_21])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1
[meterOutFFT_22]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_22
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_22])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_22b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_22
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_22])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_23]
Meter=BAR
Orientation=Vertical
MeasureName=measureAudioOut_FFT_23
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=([measureAudioDelayOut_FFT_23])*(#Barwidth#)
H=#BarHeight#
dynamicvariables=1

[meterOutFFT_23b]
Meter=BAR
;BarOrientation=HORIZONTAL
Orientation=horizontal
;Vertical
MeasureName=measureAudioOut_FFT_23
barcolor=#Barcolor#
X=#seperation#R
Y=0r
W=((#Barwidth#)-([measureAudioDelayOut_FFT_23])*(#Barwidth#))
H=#BarHeight#
dynamicvariables=1
all there just paste to ini
still needs a little work
You do not have the required permissions to view the files attached to this post.
supernemo
Posts: 6
Joined: July 21st, 2014, 12:52 pm

Re: New Plugin: AudioLevel

Post by supernemo »

Dank420
What I have a problem? The others work fine.
http://imageban.ru/show/2014/08/02/310fa3e2460a50238d89c7e6c97ec053/png