Data Representation Keywords Sound

Slides:



Advertisements
Similar presentations
Multimedia: Digitised Sound Data Section 3. Sound in Multimedia Types: Voice Overs Special Effects Musical Backdrops Sound can make multimedia presentations.
Advertisements

Analog Representations of Sound Magnified phonograph grooves, viewed from above: When viewed from the side, channel 1 goes up and down, and channel 2 goes.
Introduction to Digital Audio
Sound can make multimedia presentations dynamic and interesting.
4.1Different Audio Attributes 4.2Common Audio File Formats 4.3Balancing between File Size and Audio Quality 4.4Making Audio Elements Fit Our Needs.
GCSE Computing#BristolMet Session Objectives#10 MUST define the term sample rate COULD explain how sound can be sampled and stored in digital form SHOULD.
Dale & Lewis Chapter 3 Data Representation Analog and digital information The real world is continuous and finite, data on computers are finite  need.
Chapter 4: Representation of data in computer systems: Sound OCR Computing for GCSE © Hodder Education 2011.
Chapter 4: Representation of data in computer systems
WHAT’S THIS? ….. WHAT CHANGES? Uptown Funk 1 Uptown Funk 2. Uptown Funk 3.
4-Integrating Peripherals in Embedded Systems (cont.)
Comp 1001: IT & Architecture - Joe Carthy 1 Review Floating point numbers are represented in scientific notation In binary: ± m x 2 exp There are different.
Chapter 2 Digital data Ola A. Younis. Elements of digital media Symbols : representation for something else. Example: a group of letters often serve as.
Image and Sound Editing Raed S. Rasheed Digital Sound Digital sound types – Monophonic sound – Stereophonic sound – Quadraphonic sound – Surround.
Image and Sound Editing Raed S. Rasheed Sound What is sound? How is sound recorded? How is sound recorded digitally ? How does audio get digitized.
CMPE 80N - Introduction to Networks and the Internet 1 CMPE 80N Winter 2004 Lecture 4 Introduction to Networks and the Internet.
Chapter 2 : Business Information Business Data Communications, 4e.
Chapter 1: Introduction Business Data Communications, 4e.
Chapter 14 Recording and Editing Sound. Getting Started FAQs: − How does audio capability enhance my PC? − How does your PC record, store, and play digital.
Representing Sound in a computer Analogue  Analogue sound is produced by being picked up by a transducer (microphone) and converted in an electrical current.
Digital Data Patrice Koehl Computer Science UC Davis.
Introduction to Digital Audio
Introduction to Sound Sounds are vibrations that travel though the air or some other medium A sound wave is an audible vibration that travels through.
Representation of Data in Computer Systems
Digital audio. In digital audio, the purpose of binary numbers is to express the values of samples that represent analog sound. (contrasted to MIDI binary.
DTC 354 Digital Storytelling Rebecca Goodrich. Wave made up of changes in air pressure by an object vibrating in a medium—water or air.
COMP Representing Sound in a ComputerSound Course book - pages
Audio. Why Audio Essential tool for – Interface – Narrative – Setting & Mood.
1 4-Integrating Peripherals in Embedded Systems (cont.)
Signal Digitization Analog vs Digital Signals An Analog Signal A Digital Signal What type of signal do we encounter in nature?
CIS-325: Data Communications1 CIS-325 Data Communications Dr. L. G. Williams, Instructor.
Digital Sound Actual representation of sound Stored in form of thousands of individual numbers (called samples) Not device dependent Stored in bits.
More Meaningful Jargon Or, All You Need to Know to Speak Like a Geek Sound.
1 Composite Signals and Fourier Series To approximate a square wave with frequency f and amplitude A, the terms of the series are as follows: Frequencies:
Networking for Home and Small Businesses –.  Explain the binary representation of data.
Sound in Multimedia Psychology of sound what do you use it for? what techniques for its communication exist? Science of sound why does it exist? how it.
Media Types Information Systems can contain the following types of media: Sound, graphics, video & text.
CSCI-100 Introduction to Computing Hardware Part II.
The Digital Revolution Changing information. What is Digital?  Discrete values used for  Input  Processing  Transmission  Storage  Display  Derived.
U73 PMD2: Understand methods and principles of sound design and production Date due: Monday 22/04/13.
DATA REPRESENTATION: SOUNDS GCSE Computing. Learning Objective ■ To understand how sounds are represented in Binary ■ To be able to convert a sound wave.
Data Representation: Sound
Chapter 15 Recording and Editing Sound
3.3 Fundamentals of data representation
Image and Sound Representation
GCSE COMPUTER SCIENCE Topic 3 - Data 3.2 Data Representation.
Image and Sound Representation
Data representation – Sound.
Learning Objectives Be able to explain how sound can be sampled and stored in digital form. Understand how sampling rate affects digital audio quality.
Binary 4 File Sizes.
Multimedia: Digitised Sound Data
Lesson Objectives Explain how sound can be sampled and stored in digital form Explain how sampling intervals and other considerations affect the size of.
Multimedia Systems and Applications
Introduction to Digital Audio
CS 115: Computing for The Socio-Techno Web
Web Design and Development
Introduction to Digital Audio
Introduction to Digital Audio
Introduction to Digital Audio
Digital Music Scott Bennett 1/3/2019.
Chapter 4: Representing sound
Representing Sound 2.6 – Data Representation.
COMS 161 Introduction to Computing
Introduction to Digital Audio
Recap In previous lessons we have looked at how numbers can be stored as binary. We have also seen how images are stored as binary. This lesson we are.
WJEC GCSE Computer Science
Presentation transcript:

Data Representation Keywords Sound Sample Frequency - The number of audio samples captured every second Sample Size / Bit Depth - Number of bits available for each sample Bit Rate -The number of bits used per second of audio Data Representation Sound

Understand how sound can be stored in digital form. Digital Audio Objectives ADVANCED: Understand how sound can be stored in digital form. EXPERT: Understand what factors can affect the size of a sound file and quality of feedback. Sound exists as waves – however as computers only understand binary values this needs to be converted into such. Sounds created on a computer exist as digital information that is encoded as audio files. Digital sound is broken down into thousands of samples per second – each of these samples is then stored as binary data. The quality that the samples are stored with depends on different factors: Sample Frequency Sample Size Bit Depth Bit Rate Starter activity

Understand how sound can be stored in digital form. Sample Size/Bit Depth Objectives ADVANCED: Understand how sound can be stored in digital form. EXPERT: Understand what factors can affect the size of a sound file and quality of feedback. Bit depth is the number of bits available for each sample. The higher the bit depth, the higher the quality of the audio. Bit depth is usually 16 bits on a CD and 24 bits on a DVD. Bit depth of 16 has a resolution of 65,536 possible values. Bit depth of 24 has over 16 million possible values. 16-bit resolution means each sample can be any binary value between 0000 0000 0000 0000 and 1111 1111 1111 1111. 24 bit means the maximum binary number is 1111 1111 1111 1111 1111 1111 which creates 16,777,215 possible values. Starter activity

Understand how sound can be stored in digital form. Sample Rate Objectives ADVANCED: Understand how sound can be stored in digital form. EXPERT: Understand what factors can affect the size of a sound file and quality of feedback. The sample rate is how many samples, or measurements, of the sound are taken each second. The more samples that are taken, the more detail about where the waves the higher the quality of the audio. Also, the shape of the sound wave is captured more accurately. Each sample represents the amplitude of the digital signal at a specific point in time. The amplitude is stored as either an integer or a floating point number and encoded as a binary number. Starter activity

Understand how sound can be stored in digital form. Sample Rate Example Objectives ADVANCED: Understand how sound can be stored in digital form. EXPERT: Understand what factors can affect the size of a sound file and quality of feedback. Common audio sample rate for music is 44,100 samples per second (CDs) – the unit this is measured in is hertz – This is 44,100 hertz or 44.1 kilohertz (kHz). Telephone networks and VOIP services use a sample rate as low as 8 kHz. Starter activity

Understand how sound can be stored in digital form. Sample Rate Objectives ADVANCED: Understand how sound can be stored in digital form. EXPERT: Understand what factors can affect the size of a sound file and quality of feedback. This refers to the amount of samples taken. The higher the sample frequency the more accurate it represents the true sound wave, ALTHOUGH it increases the size of the file. Starter activity Low sample rate. High sample rate.

Understand how sound can be stored in digital form. Bit Rate Objectives ADVANCED: Understand how sound can be stored in digital form. EXPERT: Understand what factors can affect the size of a sound file and quality of feedback. The bit rate of a file tells us how many bits of data are processed every second. Bit rates are usually measured in kilobits per second (kbps). How do you Calculate bit rate? The bit rate is calculated using the formula: Frequency × bit depth × channels = bit rate A typical, uncompressed high-quality audio file has a sample rate of 44,100 samples per second, a bit depth (the number of bits available for each sample) of 16 bits per sample and 2 channels of stereo audio. The bit rate for this file would be: 44,100 samples per second × 16 bits per sample × 2 channels = 1,411,200 bits per second (or 1,411.2 kbps) A four-minute (240 second) song at this bit rate would create a file size of: 14,411,200 × 240 = 338,688,000 bits (or 40.37 megabytes) Starter activity

Understand how sound can be stored in digital form. Audio as Binary Objectives ADVANCED: Understand how sound can be stored in digital form. EXPERT: Understand what factors can affect the size of a sound file and quality of feedback. Audio file is inputted through a microphone and broken down into thousands of samples per second, The more samples recorded per second the higher the quality of the audio file, but the more memory it will consume. Each sound sample is stored as Binary Data. The more bits per sample also increases the higher the quality of the audio, on a CD the bit depth is usually 16 bits The bit rate of a file tells us how many bits of data are processed every second and are usually measured in Kilobytes per second (kbps) Frequency x bit depth x channels = bit rate The more samples recorded per second the higher the quality of the audio file, but the more memory it will consume. Starter activity

Understand how sound can be stored in digital form. Questions Objectives ADVANCED: Understand how sound can be stored in digital form. EXPERT: Understand what factors can affect the size of a sound file and quality of feedback. 1. What are the three factors that affect the size of a sound file? 2. Explain how the three factors affect the size of a sound file and the quality of the playback? Starter activity 3. Explain how file compression could be used so that high quality audio files stay of a high quality?