
- 330 pages
- English
- ePUB (mobile friendly)
- Available on iOS & Android
Audio and Speech Processing with MATLAB
About this book
Speech and audio processing has undergone a revolution in preceding decades that has accelerated in the last few years generating game-changing technologies such as truly successful speech recognition systems; a goal that had remained out of reach until very recently. This book gives the reader a comprehensive overview of such contemporary speech and audio processing techniques with an emphasis on practical implementations and illustrations using MATLAB code. Core concepts are firstly covered giving an introduction to the physics of audio and vibration together with their representations using complex numbers, Z transforms and frequency analysis transforms such as the FFT.
Later chapters give a description of the human auditory system and the fundamentals of psychoacoustics. Insights, results, and analyses given in these chapters are subsequently used as the basis of understanding of the middle section of the book covering: wideband audio compression (MP3 audio etc.), speech recognition and speech coding.
The final chapter covers musical synthesis and applications describing methods such as (and giving MATLAB examples of) AM, FM and ring modulation techniques. This chapter gives a final example of the use of time-frequency modification to implement a so-called phase vocoder for time stretching (in MATLAB).
Features
-
- A comprehensive overview of contemporary speech and audio processing techniques from perceptual and physical acoustic models to a thorough background in relevant digital signal processing techniques together with an exploration of speech and audio applications.
-
- A carefully paced progression of complexity of the described methods; building, in many cases, from first principles.
-
- Speech and wideband audio coding together with a description of associated standardised codecs (e.g. MP3, AAC and GSM).
-
- Speech recognition: Feature extraction (e.g. MFCC features), Hidden Markov Models (HMMs) and deep learning techniques such as Long Short-Time Memory (LSTM) methods.
-
- Book and computer-based problems at the end of each chapter.
-
- Contains numerous real-world examples backed up by many MATLAB functions and code.
Frequently asked questions
- Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
- Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Information
www.mathworks.com and within the innumerable help files, demos and manuals packaged with MATLAB.Audio File Format | Description | File extension |
WAVE | Raw audio | .wav |
OGG | OGG vorbis | .ogg |
FLAC | Lossless audio compression | .flac |
AU | Raw audio | .au |
AIFF | Raw audio | .aiff,.aif |
AIFC | Raw audio | .aifc |
MP3 | MPEG1 Layer 3, lossy compressed audio | .mp3 |
MPEG4 AAC | MPEG4, lossy compressed audio | .m4a, .mp4 |
audioread whose basic functionality is as follows.1
filename in this case is a MATLAB variable containing a string (array of chars) defining the entire name of the audio file to be read including any file extension (e.g., mp3, wav, etc.). A typical example of a call to audioread would be
y is the array or matrix of sampled audio data and Fs is the sampling frequency of the input audio. audioread is able to read the formats shown in Table 1.1. In this example, filename is ‘exampleAudio.wav’, the file to be read in (filename is required to be of a MATLAB string type and is therefore delimited by single quotes ’). filename can be a MATLAB string that can also include a path (defined in the format of your operating system) to any location on your hard drive. For example, filename could be ‘c:\mydirectory\mysubdirectory\exampleAudio.wav’ (on windows) or ‘~/mydirectory/mysubdirectory/exampleAudio.wav’ (on OSX/Unix/Linux). A statement in MATLAB will automatically display its results. It is therefore common to want to suppress this output and this is achieved by using the semicolon at the end of each line where no output is required.Table of contents
- Cover
- Half Title
- Title Page
- Copyright Page
- Dedication
- Table of Contents
- Preface
- List of Acroynms
- Introduction
- 1 MATLAB® and Audio
- 2 Core Concepts
- 3 Frequency Analysis for Audio
- 4 Acoustics
- 5 The Auditory System
- 6 Fundamentals of Psychoacoustics
- 7 Audio Compression
- 8 Automatic Speech Recognition: ASR
- 9 Audio Features for Automatic Speech Recognition and Audio Analysis
- 10 HMMs, GMMs and Deep Neural Networks for ASR
- 11 Speech Coding
- 12 Musical Applications
- A The Initial History of Complex Numbers
- B MATLAB Fundamentals (Applicable to Audio Processing)
- Index