sound effects our project background & techniques applications methodology results ...

23

Upload: marion-miller

Post on 17-Jan-2016

216 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion
Page 2: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion
Page 3: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

Sound effects Our project Background & techniques Applications Methodology Results Conclusion

Page 4: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

artificially created or enhanced sounds› Delay › Multiple Echo › All pass Reverberation › A Natural Sounding Reverberation › Flanging › Equalizer

Page 5: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

plays audio after the delay time from several milliseconds to several

seconds Analog delay Digital delay is used by electric guitarists

Page 6: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

Reflection of sound infinite number of echoes in music may produce unpleasant

effect

Page 7: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

result of the many reflections of a sound

sound source stops but the reflections continue

number of systems developed to simulate reverberation

simple DSPs use multiple feedback delay circuits

Page 8: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

Impulse response of a room

Page 9: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

"whooshing" sound created by mixing a signal with a

slightly delayed copy of itself considered a particular type of phasing

effect

Page 10: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

allows the user to magnify or dampen any frequencies

Many equalizers change up to 20 different frequency bands

Page 11: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

various effects on pre-recorded sound› Delay › Multiple Echo › All pass Reverberation › A Natural Sounding Reverberation

audio file manipulated in visual dsp++

Output produced on sound card

Page 12: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

musicians have been using different techniques

Some of these were found by accident effects have not changed much in the

past few years from analog signal processing towards

digital signal processing very precise and easily reproduced

effects

Page 13: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

In movies and theaters To make voice listened better in

different environments in a recording studio gives you greater choice of sounds better control over different devices

used For improving the quality of music

Page 14: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

Delay:

Page 15: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

Open a file in read mode… int R=5000; for(i=0;i<R;i++)

y[i] = x[i];

for(j=R;j<xlen;j++) y[j]= x[j]+x[j-R];

Page 16: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

Multiple Echo:

H(Z) =  Z-R / (1 - alpha * ( Z-R))

Page 17: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

int R=5000; int aa =0.5; for(i=0;i<R;i++) y[i] = x[i];

for(j=R;j<xlen;j++)

y[j]= x[j]+(aa*x[j-R]);

Page 18: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

All pass Reverberation:

Page 19: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

A Natural Sounding Reverberation: Schroeder's Reverberator

Page 20: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

input

Page 21: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

output

Page 22: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion

Different sort of effects and filtering techniques

Sound effects are done digitally allowing for a wider variety of manipulation

By the application of DSP, sound quality can be improved

Page 23: Sound effects  Our project  Background & techniques  Applications  Methodology  Results  Conclusion