0% found this document useful (0 votes)
23 views

Mini Project

Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views

Mini Project

Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

MODERN ACADEMY

FOR ENGINEERING & TECHNOLOGY

Audio Signal Processing

Presented by
Ahmed Helmy Gamaa Ahmed

Section : 5L-T2

Presented to
DR Samir Kamal
MODERN ACADEMY
For Engineering& Technology

Table of Contents

Table of contents..........................................................................................2
Objective.......................................................................................................3
Introduction .................................................................................................3
Methodology.................................................................................................4
Results ...........................................................................................................5
References ....................................................................................................6

2
MODERN ACADEMY
For Engineering& Technology

Objective
The Audio Signal Processing group at IEM is, in particular, concentrating on sound analysis,
sound modeling, and the extraction of musical or speech-relevant features and characteristics.
The topic comprises methods of time-frequency processing, multi-rate processing, and
adaptive filtering.

So in this, we create a simple sound with noise and we filter this noise using a bandpass filter.
This is a subfield of signal processing that is concerned with the electronic manipulation of
audio signals.

Introduction

Audio signal processing is at the heart of recording, enhancing, storing and transmitting
audio content. Audio signal processing is used to convert between analog and digital
formats, to cut or boost selected frequency ranges, to remove unwanted noise, to add
effects and to obtain many other desired results. Today, this process can be done on an
ordinary PC or laptop, as well as specialized recording equipment. Warren Koontz provides
an introduction to this important topic with an emphasis on digital audio signal processing.
Starting with a basic overview of sound and analog audio signals, he proceeds through the
processes of sampling and quantizing to digital audio signals. The book introduces and
develops both time and frequency domain processing of digital audio signals and, in the
later chapters, examines specific applications such as equalizer design, effect generation
and file compression. Introduction to Audio Signal Processing will appeal to undergraduate
engineering and engineering technology students. Using examples and exercises with
MATLAB scripts and functions, including MATLAB streaming audio, students will be able to
process audio in real time on their own PC.

3
MODERN ACADEMY
For Engineering& Technology

Methodology

Signal processing is an engineering field that focuses on the computational methods for
intentionally altering sounds, methods that are used in many musical applications.

How to create it

Using the code audio signal processing

clc;
close all;
clear all;
f=0.8;
n=6;
a=fir1(n,f,'high');
b=fir1(n,f,'low');
[y,fs]=wavread('audio file.wav');
o=filter(a,1,y);
p=filter(b,1,o);
fvtool(k,1);
subplot(2,1,1);
plot(y);
subplot(2,1,2);
plot(p);

Used equipments

1) MATLAB

2) An audio file to test the project on

4
MODERN ACADEMY
For Engineering& Technology

Results

5
MODERN ACADEMY
For Engineering& Technology

References
1- https://www.circuits-diy.com/audio-signal-processing-in-matlab/
2- https://press.rit.edu/9781939125415/introduction-to-audio-signal-processing/

You might also like