Sound Processing Arithmetic on Sound Sound is an array of amplitudes (numbers) –Adding two sounds together –Make a sound louder or softer –Blends of.

Slides:



Advertisements
Similar presentations
Adding sound effects The narration is clear but does not sound as if it is in big hall. To change this, add Reverb to the narrator’s track. Duplicating.
Advertisements

From Sound to Music CSC 161: The Art of Programming Prof. Henry Kautz 11/16/2009.
Effects. Dynamic Range Processors Fixed Time Delay Effects Variable Time Delay Effects Reverberation Effects Time and Pitch Changing Effects Distortion.
The frequency spectrum
Our Love is Loud When we sing, hear our songs – to You, When we dance, feel us move – to You When we laugh, fill our smiles – with You When we lift our.
Our Love Is Loud Words and music by David Crowder When we sing, hear our songs to You When we dance, feel us move to You When we laugh, fill our smiles.
Varied, Vivid Expressive How can you use your voice to engage, express, and create meaning?
IT-101 Section 001 Lecture #8 Introduction to Information Technology.
Image and Sound Editing Raed S. Rasheed Digital Sound Digital sound types – Monophonic sound – Stereophonic sound – Quadraphonic sound – Surround.
 Public speaking is speaking to a group of people in a structured, deliberate manner intended to inform, influence, or entertain the listeners.
MULTI LINGUAL ISSUES IN SPEECH SYNTHESIS AND RECOGNITION IN INDIAN LANGUAGES NIXON PATEL Bhrigus Inc Multilingual & International Speech.
Chapter 13 Sounds and signals basics of computer sound perception and generation of sound synthesizing complex sounds sampling sound signals simple example.
Presenting Your Message. Introduction and Overview  Practicing your speech  Guidelines for delivery Visual aspect Auditory aspects  Constructive Criticism.
03/04/2005ENEE408G Spring 2005 Multimedia Signal Processing 1 ENEE408G: Capstone Design Project: Multimedia Signal Processing Design Project 3: Digital.
1 Manipulating Digital Audio. 2 Digital Manipulation  Extremely powerful manipulation techniques  Cut and paste  Filtering  Frequency domain manipulation.
09/09/2005ENEE408G Fall 2005 Multimedia Signal Processing 1 ENEE408G: Capstone Design Project: Multimedia Signal Processing Design Project 1: Digital Speech.
The Cocktail Party Effect Presented by Group 8 廖朝弘 梅衍儂 張雅婷 陳瑋鈴 張筠淇 郭裕芯 組長:劉芳潔 翁怡欣
Joshua “Rock Star” Jenkins Jeff “Tremolo” Smith Jairo “the boss” Rojas
Text-To-Speech System for Marathi Miss. Deepa V. Kadam Indian Institute of Technology, Bombay.
AUDACITY a tool in vocal and pronunciation training by Assoc. Prof. Ainol Haryati Ibrahim
Digital Sound and Video Chapter 10, Exploring the Digital Domain.
Sound Vocabulary Terms Objective (2.1):Describe the factors that affect the pitch and loudness of sound produced by vibrating objects. (November 16, 2011.
Interview Guidelines: Speaking Component. How to Look  Show up in your Sunday Best!  Women : conservative business or church attire. Do not wear heals.
Choosing to Use Inflection With Poetry
UNIT 4: SENSATION & PERCEPTION Module 12. Sensation & Perception Sensation: the process by which you detect physical energy from your environment and.
15.1 Properties of Sound  If you could see atoms, the difference between high and low pressure is not as great.  The image below is exaggerated to show.
Free, Open Source Audio Editing & Recording Software Training Session Bradley Knight, Digital Media, I.C.S.
Alice Workshop Working with Sound. Sound Working with sound is appealing to students Demo: Penguin Sound.
MULTIMEDIA INPUT / OUTPUT TECHNOLOGIES INTRODUCTION 6/1/ A.Aruna, Assistant Professor, Faculty of Information Technology.
The Behavior of Waves
 to make the low, continuous sound of a flying insect (such as a bee)  to be filled with activity, excitement, etc.  to send for or signal (someone)
Carl Jones Candidate number: 1085 Center number:
ACOUSTICAL EFFECTS Electronic Music I Is your name and today’s date on your worksheet? Goal for today- To familiarize you with the properties of a number.
Unit This is what the midi track is sounding like before being edited. This is what it now sounds like. I have used track echo when editing.
Combining Sound Waves EQ: What happens when two or more sound waves interact?
Chapter 21 - The Nature of Sound. Sound is produced by ________________ which are the complete _____________________ motion of an object Sound travels.
MUSIC ELEMENTS.
Art collage! Cut & paste & draw. Variety & interest.
Digital Audio II. Volume Scaling The volume of a digitized audio source may be increased or decreased by multiplying each sample value by an appropriate.
Sound Amy Ard Hammond Eastside Upper Unit Two Sound Anything that can be heard. Anything that can be heard. Sound is created by vibrations. Sound is.
ACOUSTICAL EFFECTS Electronic Music I Is your name and today’s date on your worksheet? Goal for today- To familiarize you with the properties of a number.
List 5 things that other people do that have a positive influence on your self esteem. List 5 things that other people do that have a negative effect.
 According to most studies, people's number one fear is public speaking. Number two is death. Death is number two. Does that sound right? This means.
Chapter 1. SIGNAL PROCESSING:  Signal processing is concerned with the efficient and accurate extraction of information in a signal process.  Signal.
How to Create a PowerPoint…. Number 1 Question: Has the audience come away from this with information that was in-line with the original point of the.
Sounds in Jython 16 bit samples : -32,768 and 32,767 Sound object holds all samples file = pickAFile() sound = makeSound( file ) SoundSample objects store.
Sound Vocabulary Terms Objective (2.1):Describe the factors that affect the pitch and loudness of sound produced by vibrating objects.
SOUND. The speed of sound depends on the medium it travels through. – Warmer medium  faster speed – Cooler medium  slower speed Particles in cool materials.
Speech Recognition Created By : Kanjariya Hardik G.
Wave Interactions Chapter 15.3 Notes. Section Overview Reflection occurs when a wave meets a surface or boundary and bounces back Diffraction occurs when.
English Corner – Session 4 The Macao New Chinese Youth Association.
Lecture # 23 Sound Synthesis & Sound Arithmetic A “ sound font ” dog Jane knows Fred Ralph the loves Jane lovesFred.
Come Means to go from somewhere else to the place you are now.
When we sing hear our songs to You When we dance feel us move to You
Brought to you by Mike and Mike Inc.
SOUND Science.
C-15 Sound Physics 1.
SOUND Energy.
Multimodal Caricatural Mirror
Processing Sound Ranges part 2
Image and Sound Editing
Voice Process English 10.
Things you need to know…and will be graded on.
SOUND Energy.
Bell Work: Sound Vocabulary
Processing.
When we sing, hear our songs to You When we dance, feel us move to You
Auditory Morphing Weyni Clacken
Presentation transcript:

Sound Processing

Arithmetic on Sound Sound is an array of amplitudes (numbers) –Adding two sounds together –Make a sound louder or softer –Blends of two sounds –Echos

Adding two sounds Laser Guns Distress + = New Sound

Adding Sounds Demo Cool Edit –Edit -> Mix Paste

Adding two sounds Laser = laser gun sound; Warn = warning message; NewSnd = new array(Laser.length); for (each index i in NewSnd) {NewSnd[i]=Laser[i]+Warn[i]; }

Making a sound louder

Amplify Sound Demo Cool Edit –Transform -> Amplitude -> Amplify

Making a sound louder for (each index i in oldSound) {newSound[i]=oldSound[i]* 3 ; }

General Amplify algorithm amp = 3.0; three times as loud for (each index i in oldSound) {newSound[i]=oldSound[i]* amp ; }

General Amplify algorithm amp = 0.5; half as loud for (each index i in oldSound) {newSound[i]=oldSound[i]* amp ; }

Blending two sounds Whistle Words 90% whistle 10% words 50% whistle 50% words 10% whistle 90% words

Blending Sounds Demo Cool Edit –Transform -> Amplitude -> Amplify –Edit -> Mix Paste

Blending two sounds B = blend value between 0.0 and 1.0 for (each index i in Snd1) {newSnd[i]=(1.0-B)*Snd1[i]+ B*Snd2[i]; }

Singing a Round by yourself Row Row Row your boat

Singing a Round by yourself Row Row Row your boat Sing in a round

Singing a round by yourself Time delay + =

Singing a round by yourself Demo Cool Edit –Edit -> Mix Paste

Singing a round by yourself song = the original song; delay = how many samples to delay; newSng = new array(song.length+delay); for (each index i in song) {newSng[i] = song[i]; } for (each index i in song) {newSng[i+delay] = newSng[i+delay]+song[i]; }

Echoes An echo occurs because sound returns delayed and softer after bouncing off of something Original Canyon Echo (large delay) Room Reverb (small delay)

Echoes Demo Cool Edit –Transform -> Delay Effects -> Echo

Echoes sound = the original sound; delay = how many samples to delay; softness = 0.1; newSound = new array(sound.length+delay); for (each index i in sound) {newSound[i] = sound[i]; } for (each index i in sound) {newSound[i+delay] = newSound[i+delay] + sound[i]*softness; }

Speech Recognition Converting an audio signal into text Problems –There is no way to write this sentence in english to two too

Speech Recognition - problems Diversity of speech –I want a cookie Confused recognition –I want to fly –Eye want to cry

Speech Recognition - success Small number of words –about 1000 Clear differences among words Train recognizer to person’s voice

Speech synthesis Converting text into sound Concatenation of sound –Words go together funny Prosody, the inflection that you speak with –Variation changes meaning That is yours