HardwareHeaven.com

HardwareHeaven.com

Looking for the skin chooser?
 
 
  • Home

  • Hardware reviews

  • Articles

  • News

  • Tools

  • Gaming at HardwareHeaven

  • Forums

 

Go Back   HardwareHeaven.com > Forums > Hardware and Related Topics > kX Project Audio Driver Support Forum > Effects and the DSP


Reply
 
Thread Tools
Old Oct 3, 2008, 02:03 AM   #1
DriverHeaven Newbie
 
Join Date: Jul 2005
Posts: 19
Rep Power: 0
samplehunter is on a distinguished road

Made a simple exciter in dane

So i finally made it to write a rather useful plugin.
It's a kind of Exciter. It adds harmonics to the high frequencies and could make sounds more crisp. You could call it the poor mans crystalizer, as it has only a fixed FIR HP with 4 taps. As I can use only Dane (No C-Skills), I think it's hardly possible to write a steep variable IIR Highpass with a non-cryptic UI.
But this sounds not too un-nice for my oppinion.
Don't know if one can make file uploads here, so I just pasted the Code. You can just copy it to notepad, name it Exciter.da and register it in kxDSP.

Code:
; New microcode
	name "Exciter";
	copyright "Copyright (c) 2008. samplehunter";
	created "09/29/2008";
	engine "kX";
	comment "Simple Aural Exciter";
	guid "b6f810e8-3ce2-474d-94e4-94ba90f91b55";

	;amount: level of distortion(harmonics). ~50-70%
	;wet: Be careful. Should be very small, 0-10% 

input inl, inr
output outl, outr
control amount=0.5
control wet=0.1
control dry=1
temp amt 
temp tl, tr
static sl1, sl2, sl3, sl4
static sr1, sr2, sr3, sr4

; code
macs amt, 0, amount, 0x10

;highpass 4taps
macs sl1,sl2,0,0
macs sl2,sl3,0,0
macs sl3,sl4,0,0
macs sl4,inl,0,0

macs tl,0,sl4,-0.3333
macs tl,tl,sl3,1
macs tl,tl,sl2,-1
macs tl,tl,sl1,0.3333

macs sr1,sr2,0,0
macs sr2,sr3,0,0
macs sr3,sr4,0,0
macs sr4,inr,0,0

macs tr,0,sr4,-0.3333
macs tr,tr,sr3,1
macs tr,tr,sr2,-1
macs tr,tr,sr1,0.3333

log tl,tl,amt,0x0
log tr,tr,amt,0x0

macs tl,0,tl,wet
macs tr,0,tr,wet

macs outl,tl,inl,dry
macs outr,tr,inr,dry

end
samplehunter is offline   Reply With Quote


Old Oct 15, 2008, 07:36 PM   #2
HardwareHeaven Senior Member
 
Join Date: Jan 2004
Location: St. Cloud, MN
Posts: 492
Rep Power: 0
Chester01 is on a distinguished road

Re: Made a simple exciter in dane

hey this works really great! thanks! will help with all those old mp3's that are in poor quality (back when i was young and ignorant... thought 128kbps was good lol
__________________
COMP: Dual Intel PIII 733 Mhz; GeForce 4 Ti 4600; 1.128 Gb RAM; SB0350 (Audigy 2 ZS Platnium)
STEREO(I UPGRADED):Crown Audio K1 and K2 amplifiers (4000 watts at .1% THD ), JL 13w7 Subwoofer (6.5 CF) (2) 18" PR's, Klipsch SB-1's, some cement blocks for speaker stands...
Chester01 is offline   Reply With Quote
Old Oct 16, 2008, 10:51 AM   #3
DriverHeaven Junior Member
 
Join Date: Mar 2008
Posts: 36
Rep Power: 0
babinosman is on a distinguished road
System Specs

Re: Made a simple exciter in dane

TY for your work.all kind of plugins are welcome.
__________________
babinosman is offline   Reply With Quote
Old Oct 21, 2008, 04:56 PM   #4
HardwareHeaven Addict
 
Join Date: Jan 2008
Location: germany, sb0090
Posts: 259
Rep Power: 0
stylus02 will become famous soon enoughstylus02 will become famous soon enough

Re: Made a simple exciter in dane

nice.

stylus
__________________
http://kxm.dyndns.org
stylus02 is offline   Reply With Quote
Old Oct 22, 2008, 07:56 PM   #5
HardwareHeaven Senior Member
 
Join Date: Jul 2004
Posts: 452
Rep Power: 0
JGSF is on a distinguished road

Re: Made a simple exciter in dane

Cool. thanks for the plugin.
JGSF is offline   Reply With Quote
Reply

Thread Tools