Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

create panning effect its very very urgent plzz help out

Status
Not open for further replies.

f2003588

Junior Member level 3
Joined
Feb 24, 2007
Messages
26
Helped
1
Reputation
2
Reaction score
0
Trophy points
1,281
Location
INDIA
Activity points
1,466
A Stereo signal system creates an impression such that the listner imagines the source to be moving from left to right.This effect is called Panning .Write a program to take a mono audio input and create the Panning Effect



cud any one help in some C code for the above mentiooned prob

or any kind of c code related to the above prob

any kind of related is helpful
 

please use two channel for same data so you can make it in stereo mode.

then use one function who continuously change its weight in complementry order according to moving speed i.e.

x = original signal
x1 =x;
x2 =x;
g = gain factor;
g1 = g/2;
g2 = g/2;
for i =1:1:100
j = 100-i
y1 = g1*y1/i;
y2 = g2*y2/j;
end

then merge this two signal by interleaving them or play it in stereao mode.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top