Elementary Computing CSC 100. M. Cheng, Computer Science

Size: px
Start display at page:

Download "Elementary Computing CSC 100. M. Cheng, Computer Science"

Transcription

1 Elementary Computing CSC 100 1

2 Graphics & Media Scalable Outline & Bit- mapped Fonts Binary Number Representation & Text Pixels, Colors and Resolution Sound & Digital Audio Film & Digital Video Data Compression Vector Graphics 2

3 Outcomes Today s applications are graphics and media rich. Computer fonts give texts their visual appeal. Computer media includes audio, image and video data. Fundamentally, all data are represented in binary. Data compression reduces the storage requirement of all computer media. 3

4 Study Guide What are bit- mapped and outline fonts? What is Postscript? What are the common media formats? How are binary numbers represented? What is ASCII & UTF- 8? What are the storage sizes? What is a pixel? What is color- depth? 4

5 Study Guide How is color represented in a color image? What is resolution of an image or a display? What is pixel density? How audio (or sound) is encoded in digital? How video is encoded in digital? What is lossless or lossy data compression? What is vector graphics? 5

6 Computer Fonts 6

7 Bit- mapped vs Outline Fonts Graphical User Interface (GUI) requires different fonts (or typefaces) to create stylistic text (e.g., Times- Roman, Helvetica, Courier). Early fonts are all fix- sized bit- maps; they are not easily scalable. Outline fonts are scalable; they are display resolution independent. 7

8 Bit- mapped Fonts 8

9 Early Macintosh Bit- mapped Fonts 9

10 GUI of Apple Macintosh 10

11 Outline Fonts 11

12 Which is Outline Font? 12

13 Postscript & Bitmap Fonts 13

14 Adobe invented Postscript, a technology used by laser printers and GUI for printing or displaying outline fonts. 14

15 Thanks to scalable outline fonts, texts on our displays and printers are looking much better. 15

16 Google Webfonts 16

17 Fonts & Media Formats Fonts are a technology for text representation. Computer media also include audio, image and video data. WAV, MP3 and AAC are audio formats; GIF, PNG and JPEG are image formats; WMV, MP4 and AVCHD are video formats. 17

18 Binary Numbers & Storage 18

19 Binary Number Representation Inside a computer, all data are represented in binary, including numbers. A binary digit (or a bit) consists of two values: 0 and 1. Any number can be represented in binary. Here is how! 19

20 Counting in Binary (6 bits)

21

22

23

24

25

26

27

28

29 What is 9? 0 0 1??? 29

30 What is 12? 0 0 1??? 30

31 How about 15? 0 0 1??? 31

32 Binary Numbers from 0 to

33 Property of a Byte A byte consists of 8 binary digits, or 8 bits. With a byte, we can represent 2 8 = 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 = 256 numbers. With 2 bytes (16 bits), we can represent 256 x 256 = 65,536 numbers; with 4 bytes (32 bits), 65,536 x 65,536 = 4,294,967,296 numbers. 33

34 Storage Sizes 1KB (Kilo- Byte) = 1,024 Bytes (Note: Kb means Kilo- bits.) 1MB (Mega- Byte) = 1,024 x 1KB 1GB (Giga- Byte) = 1,024 x 1MB 1TB (Tera- Byte) = 1,024 x 1GB 34

35 Storage Examples 650 to 700 MB 5 to 10 GB 4 to 64 GB 25 to 50 GB 35

36 What is plain text? 36

37 The character set used by our computers are also encoded in binary. 37

38 ASCII (American Standard Code for Information Interchange) uses 7- bits to encode all standard keyboard characters. 38

39 39

40 UTF- 8 (also known as Unicode) is an extension of ASCII using multi- bytes to encode all international character sets, including ASCII, Chinese, etc. 40

41 Plain text means the character encoding is either ASCII or UTF

42 HTML files are all plain text files using UTF- 8 encoding. 42

43 A plain text file cannot specify font family, size, or bold etc. 43

44 Pixels, Colors & Resolution 44

45 Pixel & Color- Depth A pixel is a picture element. It is the smallest unit of information about a picture. An image/display consists of a fixed number of pixels. The number of bits- per- pixel (bpp) is called color- depth. 45

46 A Pixel in an Image A pixel 46

47 Color- Depth of Grayscale 4- bpp 8- bpp 1- bpp 2 Levels 16 Levels 256 Levels 47

48 Grayscale & Black/White 4- bpp 1- bpp 48

49 Color- depth (bits- per- pixel) affects the overall texture/details of an image. 49

50 An 8- bpp Grayscale Image 50

51 Primary Colors WHITE 51

52 24- bpp RGB Colors Each color takes 8- bpp. 52

53 A 24- bpp Color Image 53

54 Changes in Color- Depth 24- bpp 8- bpp 4- bpp 54

55 Hexadecimal Representation A B C D E F Note: Each hexadecimal digit represents 4 bits in binary. 55

56 HTML Color Codes #0A1CF3 means 0A for Red, 1C for Green, F3 for Blue, or the HTML color: 56

57 Pixel in a Color Display One pixel 57

58 Pixel in a TV & Monitor One pixel One pixel 58

59 Resolution The resolution of an image / display is the total number of pixels represented. Typically, it is horizontal (width) x vertical (height) number of pixels. For example, 1024 x 768 = 786,432; 3000 x 2000 = 6M; 4000 x 3000 = 12M. 59

60 A Full HD TV Resolution 60

61 A Ultra HD (4K) TV Resolution 61

62 Digital Images & Color Displays Today, a digital camera can capture an image of 16M (4000x4000) pixels of 24- bpp RGB (16M) colors. A high- definition TV can support 2M (1920x1080) pixels of 10- bpp (thousands) RGB colors. An imac 27 display supports 3.7M (2560x1440) pixels of millions of colors. 62

63 How Big is an Image? For 4M pixels (2000 x 2000), the size of a 24bpp color image is: 2000 x 2000 x 24 bpp = 96M bits, or 96M bit 8 = 12 MB For 4M pixels, the size of a 8bpp grayscale image is: 2000 x 2000 x 8bpp = 32M bits, or 4MB 63

64 Pixel Density Why text on your TV looks much worst than on your computer display, even though they have same resolution 1920 x 1080? Your TV may be 50 across diagonally. But, your display is only 15. Pixel density (pixel- per- inch or ppi) defines the physical size of each pixel. A TV has 100 ppi; but a display has 200 ppi; an iphone 5 has 326 ppi. 64

65 Ppi Illustration 65

66 Low vs High Pixel Density M. Cheng, Computer Science 66

67 The higher the ppi of a display, the sharper the image/text. 67

68 Meta- data in Images Meta- data inside an image file is the data about the image itself. Typically, it includes the size, colors, bit- depth, type of camera, camera setting, and most importantly geo- tagging (based on GPS). When an image is posted on the Internet, its meta- data may be included as well! 68

69 69

70 Remove the GPS geo- tagging information before you publish an image to a public website! 70

71 Sound & Digital Audio 71

72 Music & Digital Audio We hear sound as a result of a continuous change of air pressure in our ear drum. (Amplitude) The larger the change in air pressure, the louder the sound. (Frequency) The faster the change in air pressure, the higher pitch the sound. 72

73 Sound & Air Pressure Amplitude Frequency (cycles per second) 73

74 Amplitude & Pitch (Frequency) 74

75 Sampling Each dot (or sample) is represented by a binary number. 75

76 Digital Audio Samples 76

77 A/D versus D/A Conversion Computer Digital Audio A/D (Analog to Digital) D/A (Digital to Analog) 77

78 Audacity Demo 78

79 Digital Audio The amplitude of each sample is encoded as a binary number. Each sample typically is encoded as a 8- bit, 16- bit, or 24- bit number. The rate of sampling (samples per second, Hz) typically uses 44,100 Hz, 48,000 Hz, 96,000 Hz, etc. 79

80 Compact Disc (CD) It was invented by Sony and Philips in the 70s. It uses a polycarbonate disc (12 cm diameter) to store approximately 70 minutes of digital audio for 2 (left and right) channels. It uses 44,100 Hz sampling rate with 16- bit per sample. 80

81 How Big is a CD? A CD stores approximately 70 minutes of 2 channels, 16- bit, 44,100 Hz digital audio. The size per second is 2 x 16 x 44,100 bits = 1,411,200 bits = 176,400 bytes. For 70 minutes, we need 70 x 60 x 176,400 bytes = 740,880,000 bytes = MB. 81

82 Film & Digital Video 82

83 Motion Pictures 83

84 Film & Frame Rate It is a series of still images, called frames. By capturing and playing images at a fixed number of frames per second, we have a motion picture. Our eyes cannot perceive changes faster than 24 times a second. Typically films are recorded at least 24 frames per second. 84

85 Digital Video A digital video is the digital equivalent of film. A video is a series of color images of some fixed resolution (e.g., 640 x 480 at 16 bpp, 1920 x 1080 at 24 bpp). The frame rate varies from 24 to 30 frames/sec for high quality video, or 10 to 15 frames/sec for streaming video. 85

86 Digital Video Editing 86

87 How Big is a Digital Video? For a 720 x 480 at 16 bpp color video recorded at 30 frames/sec, its size per sec is: 30 x 16 bits x 720 x 480 = MB For 10 minutes, its size is: 10 x 60 x 117,964,800 bits = GB For 2 hours, its size increases to GB! 87

88 Data Compression 88

89 What is Data Compression? It is a technology to squeeze data to take up less space. There are broadly two ways: (1) lossless preserve all data integrity; (2) lossy keep as much details as possible. It depends on the nature of our data. We may choose (1) or (2). 89

90 Lossless Data Compression For some data, we don t want to lose even one bit of information. A common format for lossless data compression is ZIP, supported by Windows and OS X by default. Apple Lossless is a lossless compressed audio format; PNG and TIFF are a lossless compressed image format. 90

91 Lossy Data Compression For media data, such as music, images, videos, we can afford to lose some details as long as we still can listen/watch them. Common lossy compression formats include: (1) audio : MP3, OGG, AAC, M4A; (2) image : JPEG; (3) video : MPEG1, MPEG2, MPEG4, MP4, AVCHD. 91

92 Compression Ratio Using lossless compression, we can reduce data size by 50%. Using lossy compression, we can reduce the data size by up to 90%, e.g., 100 GB of 2 hours of a DVD movie can be compressed down to 10GB or less. 92

93 Examples itunes can import music from a CD (original WAV) into either (lossy) MP3 or AAC. A digital camera can store your pictures in either RAW (lossless) or JPEG (lossy) formats. A commercial DVD uses MPEG2; a Bluray disc uses MPEG4 or AVCHD (known as H.264). 93

94 Common Image Formats BMP : uncompressed GIF, PNG, RAW : lossless compressed JPEG : lossy compressed 94

95 Common Audio Formats WAV, AIFF : uncompressed Apple Lossless, FLAC: lossless compressed MP3, AAC, M4A, WMA : lossy compressed 95

96 Common Video Formats There is no common uncompressed video standard for consumers. Motion JPEG (MJPEG) : lossless compressed MPEG1, MPEG2, MPEG4, FLV, QuickTime, WMV, AVCHD: lossy compressed 96

97 Vector Graphics 97

98 Bitmap & Vector Graphics We have bitmapped (fixed size) fonts and outline (scalable) fonts. Computer images can also be fixed- size bitmaps or scalable vectors. MacPaint is a bitmap painting program; while MacDraw is a vector graphic design program. 98

99 MacPaint MacDraw 99

100 Human Body Parts 100

101 Protein 101

102 Car 102

103 Map 103

104 Properties of Vector Graphics A vector graphic model is scalable, thus zoomable. Today, many computer models are using 3D vector graphics. Hence, you can rotate the model and view from different angles. They are synthesized by the computer internally, not pictures of the real world. 104

105 Train Wire Frame Demo 105

106 3D Medical Animation Demo 106

107 Human Head Modelling 107

108 3D City Model in Google Earth 108

109 The End. 109

Standard File Formats

Standard File Formats Standard File Formats Introduction:... 2 Text: TXT and RTF... 4 Grapics: BMP, GIF, JPG and PNG... 5 Audio: WAV and MP3... 8 Video: AVI and MPG... 11 Page 1 Introduction You can store many different types

More information

Example 1: Denary = 1. Answer: Binary = (1 * 1) = 1. Example 2: Denary = 3. Answer: Binary = (1 * 1) + (2 * 1) = 3

Example 1: Denary = 1. Answer: Binary = (1 * 1) = 1. Example 2: Denary = 3. Answer: Binary = (1 * 1) + (2 * 1) = 3 1.1.1 Binary systems In mathematics and digital electronics, a binary number is a number expressed in the binary numeral system, or base-2 numeral system, which represents numeric values using two different

More information

Data Representation. Data is more than just numbers! Representations of Text ASCII. Interpreting bits to give them meaning.

Data Representation. Data is more than just numbers! Representations of Text ASCII. Interpreting bits to give them meaning. Data Representation Interpreting bits to give them meaning Part 2: Media Text, Web Pages,, /Music, Video Notes for CSC 100 - The Beauty and Joy of Computing The University of North Carolina at Greensboro

More information

3.01C Multimedia Elements and Guidelines Explore multimedia systems, elements and presentations.

3.01C Multimedia Elements and Guidelines Explore multimedia systems, elements and presentations. 3.01C Multimedia Elements and Guidelines 3.01 Explore multimedia systems, elements and presentations. Multimedia Fair Use Guidelines Guidelines for using copyrighted multimedia elements include: Text Motion

More information

Lecture 19 Media Formats

Lecture 19 Media Formats Revision IMS2603 Information Management in Organisations Lecture 19 Media Formats Last week s lectures looked at MARC as a specific instance of complex metadata representation and at Content Management

More information

MEDIA RELATED FILE TYPES

MEDIA RELATED FILE TYPES MEDIA RELATED FILE TYPES Data Everything on your computer is a form of data or information and is ultimately reduced to a binary language of ones and zeros. If all data stayed as ones and zeros the information

More information

Introduction to Computer Science (I1100) Data Storage

Introduction to Computer Science (I1100) Data Storage Data Storage 145 Data types Data comes in different forms Data Numbers Text Audio Images Video 146 Data inside the computer All data types are transformed into a uniform representation when they are stored

More information

UNDERSTANDING MUSIC & VIDEO FORMATS

UNDERSTANDING MUSIC & VIDEO FORMATS ComputerFixed.co.uk Page: 1 Email: info@computerfixed.co.uk UNDERSTANDING MUSIC & VIDEO FORMATS Are you confused with all the different music and video formats available? Do you know the difference between

More information

Computing in the Modern World

Computing in the Modern World Computing in the Modern World BCS-CMW-7: Data Representation Wayne Summers Marion County October 25, 2011 There are 10 kinds of people in the world: those who understand binary and those who don t. Pre-exercises

More information

Chapter 1. Data Storage Pearson Addison-Wesley. All rights reserved

Chapter 1. Data Storage Pearson Addison-Wesley. All rights reserved Chapter 1 Data Storage 2007 Pearson Addison-Wesley. All rights reserved Chapter 1: Data Storage 1.1 Bits and Their Storage 1.2 Main Memory 1.3 Mass Storage 1.4 Representing Information as Bit Patterns

More information

Data Representation. Reminders. Sound What is sound? Interpreting bits to give them meaning. Part 4: Media - Sound, Video, Compression

Data Representation. Reminders. Sound What is sound? Interpreting bits to give them meaning. Part 4: Media - Sound, Video, Compression Data Representation Interpreting bits to give them meaning Part 4: Media -, Video, Compression Notes for CSC 100 - The Beauty and Joy of Computing The University of North Carolina at Greensboro Reminders

More information

Digital Audio Basics

Digital Audio Basics CSC 170 Introduction to Computers and Their Applications Lecture #2 Digital Audio Basics Digital Audio Basics Digital audio is music, speech, and other sounds represented in binary format for use in digital

More information

Data Representation From 0s and 1s to images CPSC 101

Data Representation From 0s and 1s to images CPSC 101 Data Representation From 0s and 1s to images CPSC 101 Learning Goals After the Data Representation: Images unit, you will be able to: Recognize and translate between binary and decimal numbers Define bit,

More information

Unicode. Standard Alphanumeric Formats. Unicode Version 2.1 BCD ASCII EBCDIC

Unicode. Standard Alphanumeric Formats. Unicode Version 2.1 BCD ASCII EBCDIC Standard Alphanumeric Formats Unicode BCD ASCII EBCDIC Unicode Next slides 16-bit standard Developed by a consortia Intended to supercede older 7- and 8-bit codes Unicode Version 2.1 1998 Improves on version

More information

Data Storage. Slides derived from those available on the web site of the book: Computer Science: An Overview, 11 th Edition, by J.

Data Storage. Slides derived from those available on the web site of the book: Computer Science: An Overview, 11 th Edition, by J. Data Storage Slides derived from those available on the web site of the book: Computer Science: An Overview, 11 th Edition, by J. Glenn Brookshear Copyright 2012 Pearson Education, Inc. Data Storage Bits

More information

计算原理导论. Introduction to Computing Principles 智能与计算学部刘志磊

计算原理导论. Introduction to Computing Principles 智能与计算学部刘志磊 计算原理导论 Introduction to Computing Principles 天津大学 智能与计算学部刘志磊 Analog The world is basically analog What does that mean? "Signal" is a varying wave over time e.g. sound as a running example here How Does

More information

CHAPTER 2 - DIGITAL DATA REPRESENTATION AND NUMBERING SYSTEMS

CHAPTER 2 - DIGITAL DATA REPRESENTATION AND NUMBERING SYSTEMS CHAPTER 2 - DIGITAL DATA REPRESENTATION AND NUMBERING SYSTEMS INTRODUCTION Digital computers use sequences of binary digits (bits) to represent numbers, letters, special symbols, music, pictures, and videos.

More information

Final Study Guide Arts & Communications

Final Study Guide Arts & Communications Final Study Guide Arts & Communications Programs Used in Multimedia Developing a multimedia production requires an array of software to create, edit, and combine text, sounds, and images. Elements of Multimedia

More information

Multimedia Technology

Multimedia Technology Multimedia Application An (usually) interactive piece of software which communicates to the user using several media e.g Text, graphics (illustrations, photos), audio (music, sounds), animation and video.

More information

AET 1380 Digital Audio Formats

AET 1380 Digital Audio Formats AET 1380 Digital Audio Formats Consumer Digital Audio Formats CDs --44.1 khz, 16 bit Television 48 khz, 16bit DVD 96 khz, 24bit How many more measurements does a DVD take? Bit Rate? Sample rate? Is it

More information

Digitization of Multimedia Elements

Digitization of Multimedia Elements MULTI-MEDIA PRODUCTION Basic Multimedia Elements i. Text ii. Graphics iii. Sound iv. Video v. Animations Digitization of Multimedia Elements Analogue and digital signals Analogue signal: a continuous signal

More information

Fundamental of Digital Media Design. Introduction to Audio

Fundamental of Digital Media Design. Introduction to Audio Fundamental of Digital Media Design Introduction to Audio by Noraniza Samat Faculty of Computer Systems & Software Engineering noraniza@ump.edu.my OER Fundamental of Digital Media Design by Noraniza Samat

More information

MULTIMEDIA AND CODING

MULTIMEDIA AND CODING 07 MULTIMEDIA AND CODING WHAT MEDIA TYPES WE KNOW? TEXTS IMAGES SOUNDS MUSIC VIDEO INTERACTIVE CONTENT Games Virtual reality EXAMPLES OF MULTIMEDIA MOVIE audio + video COMPUTER GAME audio + video + interactive

More information

CSC 170 Introduction to Computers and Their Applications. Lecture #1 Digital Basics. Data Representation

CSC 170 Introduction to Computers and Their Applications. Lecture #1 Digital Basics. Data Representation CSC 170 Introduction to Computers and Their Applications Lecture #1 Digital Basics Data Representation Data refers to the symbols that represent people, events, things, and ideas. Data can be a name, a

More information

Compression; Error detection & correction

Compression; Error detection & correction Compression; Error detection & correction compression: squeeze out redundancy to use less memory or use less network bandwidth encode the same information in fewer bits some bits carry no information some

More information

Digital Media. Daniel Fuller ITEC 2110

Digital Media. Daniel Fuller ITEC 2110 Digital Media Daniel Fuller ITEC 2110 Daily Question: Which statement is True? 5 + 5 = 10 1 + 1 = 10 F + 1 = 10 Email answer to DFullerDailyQuestion@gmail.com Subject Line: ITEC2110-26 First, some mac

More information

Multimedia on the Web

Multimedia on the Web Multimedia on the Web Graphics in web pages Downloading software & media Digital photography JPEG & GIF Streaming media Macromedia Flash Graphics in web pages Graphics are very popular in web pages Graphics

More information

Compression; Error detection & correction

Compression; Error detection & correction Compression; Error detection & correction compression: squeeze out redundancy to use less memory or use less network bandwidth encode the same information in fewer bits some bits carry no information some

More information

Professor Laurence S. Dooley. School of Computing and Communications Milton Keynes, UK

Professor Laurence S. Dooley. School of Computing and Communications Milton Keynes, UK Professor Laurence S. Dooley School of Computing and Communications Milton Keynes, UK How many bits required? 2.4Mbytes 84Kbytes 9.8Kbytes 50Kbytes Data Information Data and information are NOT the same!

More information

M4-R4: INTRODUCTION TO MULTIMEDIA (JAN 2019) DURATION: 03 Hrs

M4-R4: INTRODUCTION TO MULTIMEDIA (JAN 2019) DURATION: 03 Hrs M4-R4: INTRODUCTION TO MULTIMEDIA (JAN 2019) Max Marks: 100 DURATION: 03 Hrs M1-R4-01-19 1.3 Which of the following tag pair is used to list the text? (a) and (b) and (c)

More information

General Computing Concepts. Coding and Representation. General Computing Concepts. Computing Concepts: Review

General Computing Concepts. Coding and Representation. General Computing Concepts. Computing Concepts: Review Computing Concepts: Review Coding and Representation Computers represent all information in terms of numbers ASCII code: Decimal number 65 represents A RGB: (255,0,0) represents the intense red Computers

More information

Bits and Bit Patterns

Bits and Bit Patterns Bits and Bit Patterns Bit: Binary Digit (0 or 1) Bit Patterns are used to represent information. Numbers Text characters Images Sound And others 0-1 Boolean Operations Boolean Operation: An operation that

More information

Advanced High Graphics

Advanced High Graphics VISUAL MEDIA FILE TYPES JPG/JPEG: (Joint photographic expert group) The JPEG is one of the most common raster file formats. It s a format often used by digital cameras as it was designed primarily for

More information

Different File Types and their Use

Different File Types and their Use Different File Types and their Use.DOC (Microsoft Word Document) Text Files A DOC file is a Word processing document created by Microsoft Word, a word processor included with all versions of Microsoft

More information

Multimedia applications

Multimedia applications applications László Kálmán 1 Csaba Oravecz 1 Péter Szigetvári 2 1 Research Institute for Linguistics Hungarian Academy of Sciences 2 Department of English Linguistics Eötvös Loránd University Lecture 9.

More information

What is multimedia? Multimedia. Continuous media. Most common media types. Continuous media processing. Interactivity. What is multimedia?

What is multimedia? Multimedia. Continuous media. Most common media types. Continuous media processing. Interactivity. What is multimedia? Multimedia What is multimedia? Media types +Text + Graphics + Audio +Image +Video Interchange formats What is multimedia? Multimedia = many media User interaction = interactivity Script = time 1 2 Most

More information

Prentice Hall. Learning Microsoft PowerPoint , (Weixel et al.) Arkansas Multimedia Applications I - Curriculum Content Frameworks

Prentice Hall. Learning Microsoft PowerPoint , (Weixel et al.) Arkansas Multimedia Applications I - Curriculum Content Frameworks Prentice Hall Learning Microsoft PowerPoint 2007 2008, (Weixel et al.) C O R R E L A T E D T O Arkansas Multimedia s I - Curriculum Content Frameworks Arkansas Multimedia s I - Curriculum Content Frameworks

More information

Lecture #3: Digital Music and Sound

Lecture #3: Digital Music and Sound Lecture #3: Digital Music and Sound CS106E Spring 2018, Young In this lecture we take a look at how computers represent music and sound. One very important concept we ll come across when studying digital

More information

HTML5: MULTIMEDIA. Multimedia. Multimedia Formats. Common Video Formats

HTML5: MULTIMEDIA. Multimedia. Multimedia Formats. Common Video Formats LEC. 5 College of Information Technology / Department of Information Networks.... Web Page Design/ Second Class / Second Semester HTML5: MULTIMEDIA Multimedia Multimedia comes in many different formats.

More information

Multimedia. What is multimedia? Media types. Interchange formats. + Text +Graphics +Audio +Image +Video. Petri Vuorimaa 1

Multimedia. What is multimedia? Media types. Interchange formats. + Text +Graphics +Audio +Image +Video. Petri Vuorimaa 1 Multimedia What is multimedia? Media types + Text +Graphics +Audio +Image +Video Interchange formats Petri Vuorimaa 1 What is multimedia? Multimedia = many media User interaction = interactivity Script

More information

Frequently Asked Questions about Text and Graphics

Frequently Asked Questions about Text and Graphics 1 Frequently Asked Questions about Text and Graphics 1. What is a font? A font is a set of printable or displayable text characters that are in a specific style and size. The type design for a set of fonts

More information

Binary representation and data

Binary representation and data Binary representation and data Loriano Storchi loriano@storchi.org http:://www.storchi.org/ Binary representation of numbers In a positional numbering system given the base this directly defines the number

More information

Objectives. Connecting with Computer Science 2

Objectives. Connecting with Computer Science 2 Objectives Learn why numbering systems are important to understand Refresh your knowledge of powers of numbers Learn how numbering systems are used to count Understand the significance of positional value

More information

Unit 2 Digital Information. Chapter 1 Study Guide

Unit 2 Digital Information. Chapter 1 Study Guide Unit 2 Digital Information Chapter 1 Study Guide 2.5 Wrap Up Other file formats Other file formats you may have encountered or heard of include:.doc,.docx,.pdf,.mp4,.mov The file extension you often see

More information

DigiPoints Volume 1. Student Workbook. Module 8 Digital Compression

DigiPoints Volume 1. Student Workbook. Module 8 Digital Compression Digital Compression Page 8.1 DigiPoints Volume 1 Module 8 Digital Compression Summary This module describes the techniques by which digital signals are compressed in order to make it possible to carry

More information

Your very own movie studio. menu bar

Your very own movie studio. menu bar Movie Maker This presentation will get you started with using Windows Movie Maker - Your very own movie studio. It provides step by step instructions for adding photos, videos, audio files etc. Quickly

More information

Data Representation and Networking

Data Representation and Networking Data Representation and Networking Instructor: Dmitri A. Gusev Spring 2007 CSC 120.02: Introduction to Computer Science Lecture 3, January 30, 2007 Data Representation Topics Covered in Lecture 2 (recap+)

More information

9/8/2016. Characteristics of multimedia Various media types

9/8/2016. Characteristics of multimedia Various media types Chapter 1 Introduction to Multimedia Networking CLO1: Define fundamentals of multimedia networking Upon completion of this chapter students should be able to define: 1- Multimedia 2- Multimedia types and

More information

Data Representation. Reminders. Data is more than just numbers! Interpreting bits to give them meaning. Part 3: Media - Text and Pictures

Data Representation. Reminders. Data is more than just numbers! Interpreting bits to give them meaning. Part 3: Media - Text and Pictures Data Representation Interpreting bits to give them meaning Part 3: Media - Text and Notes for CSC 100 - The Beauty and Joy of Computing The University of North Carolina at Greensboro Reminders Blown to

More information

Digital Media. Lecture 2: SemesterOverview. Georgia Gwinnett College School of Science and Technology Dr. Mark Iken

Digital Media. Lecture 2: SemesterOverview. Georgia Gwinnett College School of Science and Technology Dr. Mark Iken Digital Media Lecture 2: SemesterOverview Georgia Gwinnett College School of Science and Technology Dr. Mark Iken Refer to Supplemental text: Counting like an alien Networking issues Sound and Sampling

More information

Revision Guide. Creative Imedia R081

Revision Guide. Creative Imedia R081 Revision Guide Creative Imedia R081 Creative R081 revision Guide Overview of the unit You must be able to describe the process of creating pre-production documents and the role they play in the development

More information

Lesson 5: Multimedia on the Web

Lesson 5: Multimedia on the Web Lesson 5: Multimedia on the Web Lesson 5 Objectives Define objects and their relationships to multimedia Explain the fundamentals of C, C++, Java, JavaScript, JScript, C#, ActiveX and VBScript Discuss

More information

GCSE Computing. Revision Pack TWO. Data Representation Questions. Name: /113. Attempt One % Attempt Two % Attempt Three %

GCSE Computing. Revision Pack TWO. Data Representation Questions. Name: /113. Attempt One % Attempt Two % Attempt Three % GCSE Computing Revision Pack TWO Data Representation Questions Name: /113 Attempt One % Attempt Two % Attempt Three % Areas of Strength Areas for Development 1. Explain how ASCII is used to represent text

More information

2nd Paragraph should make a point (could be an advantage or disadvantage) and explain the point fully giving an example where necessary.

2nd Paragraph should make a point (could be an advantage or disadvantage) and explain the point fully giving an example where necessary. STUDENT TEACHER WORKING AT GRADE TERM TARGET CLASS YEAR TARGET The long answer questions in this booklet are designed to stretch and challenge you. It is important that you understand how they should be

More information

Elementary Computing CSC M. Cheng, Computer Science 1

Elementary Computing CSC M. Cheng, Computer Science 1 Elementary Computing CSC 100 2014-07-14 M. Cheng, Computer Science 1 File & Operating Systems Every computer has an Operating System (OS). An OS is a piece of software that manages the resources on every

More information

1.6 Graphics Packages

1.6 Graphics Packages 1.6 Graphics Packages Graphics Graphics refers to any computer device or program that makes a computer capable of displaying and manipulating pictures. The term also refers to the images themselves. A

More information

Skill Area 214: Use a Multimedia Software. Software Application (SWA)

Skill Area 214: Use a Multimedia Software. Software Application (SWA) Skill Area 214: Use a Multimedia Application (SWA) Skill Area 214: Use a Multimedia 214.4 Produce Audio Files What is digital audio? Audio is another meaning for sound. Digital audio refers to a digital

More information

My Media Hub Quick Start Guide for Windows or Mac

My Media Hub Quick Start Guide for Windows or Mac My Media Hub Quick Start Guide for Windows or Mac What s inside Welcome to your My Media Hub Getting Started 4 Sharing media over a home network 5 Set up Windows Media Player 7 Set up a Twonky Media Server

More information

Elementary Computing CSC 100. M. Cheng, Computer Science

Elementary Computing CSC 100. M. Cheng, Computer Science Elementary Computing CSC 100 1 File & Operating Systems Every computer has an Operating System (OS). An OS is a piece of software that manages the resources on every computer. User Interfaces and File

More information

Digital Data. 10/11/2011 Prepared by: Khuzaima Jallad

Digital Data. 10/11/2011 Prepared by: Khuzaima Jallad Chapter 2 Digital Data Elements of Digital Data Digital Codes Files Digitization File Compression Advantages of Digital Information Challenges of Digital Information 2 Digital Data ELEMENTS OF DIGITAL

More information

Image Types Vector vs. Raster

Image Types Vector vs. Raster Image Types Have you ever wondered when you should use a JPG instead of a PNG? Or maybe you are just trying to figure out which program opens an INDD? Unless you are a graphic designer by training (like

More information

Common Technology Words and Definitions

Common Technology Words and Definitions Common Technology Words and Definitions 77 78 Common Technology Words and Definitions: ASCII American Standard Code for Information Interchange, a code that makes it possible to send information from one

More information

Jianhui Zhang, Ph.D., Associate Prof. College of Computer Science and Technology, Hangzhou Dianzi Univ.

Jianhui Zhang, Ph.D., Associate Prof. College of Computer Science and Technology, Hangzhou Dianzi Univ. Jianhui Zhang, Ph.D., Associate Prof. College of Computer Science and Technology, Hangzhou Dianzi Univ. Email: jh_zhang@hdu.edu.cn Copyright 2015 Pearson Education, Inc. Chapter 1: Data Storage Computer

More information

Lesson 5: Multimedia on the Web

Lesson 5: Multimedia on the Web Lesson 5: Multimedia on the Web Learning Targets I can: Define objects and their relationships to multimedia Explain the fundamentals of C, C++, Java, JavaScript, JScript, C#, ActiveX and VBScript Discuss

More information

Source coding and compression

Source coding and compression Computer Mathematics Week 5 Source coding and compression College of Information Science and Engineering Ritsumeikan University last week binary representations of signed numbers sign-magnitude, biased

More information

My Media Hub Quick Start Guide for USB Devices. Sharing media content with the Fetch Box from a USB device

My Media Hub Quick Start Guide for USB Devices. Sharing media content with the Fetch Box from a USB device My Media Hub Quick Start Guide for USB Devices Sharing media content with the Fetch Box from a USB device What s inside Welcome to your My Media Hub 3 Supported media file formats 4 Getting Started 5 Play

More information

Multimedia. File formats. Image file formats. CSE 190 M (Web Programming) Spring 2008 University of Washington

Multimedia. File formats. Image file formats. CSE 190 M (Web Programming) Spring 2008 University of Washington Multimedia CSE 190 M (Web Programming) Spring 2008 University of Washington Except where otherwise noted, the contents of this presentation are Copyright 2008 Marty Stepp and Jessica Miller and are licensed

More information

RECOMMENDED FILE FORMATS

RECOMMENDED FILE FORMATS Research and Enterprise Services RECOMMENDED FILE FORMATS University of Reading Research Data Archive Contents Introduction: file format categories... 1 Overview: formats for preservation and use... 1

More information

What Do I Really Need to Know about itunes? COPYRIGHTED MATERIAL

What Do I Really Need to Know about itunes? COPYRIGHTED MATERIAL 1 What Do I Really Need to Know about itunes? COPYRIGHTED MATERIAL 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Managing a library of music and other media content can be a challenging task, and itunes is a powerful

More information

CS 074 The Digital World. Digital Audio

CS 074 The Digital World. Digital Audio CS 074 The Digital World Digital Audio 1 Digital Audio Waves Hearing Analog Recording of Waves Pulse Code Modulation and Digital Recording CDs, Wave Files, MP3s Editing Wave Files with BinEd 2 Waves A

More information

Atari Games - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Atari Games - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ftp.infogrames.net Description Atari Games Country United States Scan Date 02/Apr/2015 Total Dirs 488 Total Files 1,547 Total Data 26.66 GB Top 20 Directories Sorted by Disk Space

More information

Characterisation. Digital Preservation Planning: Principles, Examples and the Future with Planets. July 29 th, 2008

Characterisation. Digital Preservation Planning: Principles, Examples and the Future with Planets. July 29 th, 2008 Characterisation Digital Preservation Planning: Principles, Examples and the Future with Planets. July 29 th, 2008 Manfred Thaller Universität zu * Köln manfred.thaller@uni-koeln.de * University at, NOT

More information

VC 12/13 T16 Video Compression

VC 12/13 T16 Video Compression VC 12/13 T16 Video Compression Mestrado em Ciência de Computadores Mestrado Integrado em Engenharia de Redes e Sistemas Informáticos Miguel Tavares Coimbra Outline The need for compression Types of redundancy

More information

"Digital Media Primer" Yue- Ling Wong, Copyright (c)2011 by Pearson EducaDon, Inc. All rights reserved.

Digital Media Primer Yue- Ling Wong, Copyright (c)2011 by Pearson EducaDon, Inc. All rights reserved. "Digital Media Primer" Yue- Ling Wong, Copyright (c)2011 by Pearson EducaDon, Inc. All rights reserved. 1 Chapter 1 Background Part 1 Analog vs. Digital, DigiDzaDon 2 Chapter 1 Background ANALOG VS. DIGITAL

More information

4K DVB-T2 / DVB-S2 Android Streaming Box with Fly Mouse

4K DVB-T2 / DVB-S2 Android Streaming Box with Fly Mouse General information Connect this DVB-T2/S2 4K Android streaming box to your TV and stream movies, update your Facebook, show pictures or plan a gaming night with friends all on your TV screen. This super

More information

Gerald's Column by Gerald Fitton

Gerald's Column by Gerald Fitton Gerald's Column by Gerald Fitton I've had quite a lot of feedback this month about some recent and some long ago articles; I wasn't sure whether to do a PipeDream/Fireworkz article, a domain name or email

More information

ADDING MUSIC TO YOUR itunes LIBRARY

ADDING MUSIC TO YOUR itunes LIBRARY part ADDING MUSIC TO YOUR itunes LIBRARY The first step to getting music on your ipod is to add it to your computer s itunes library. The library is both a folder hierarchy where your files are stored

More information

CMSC 1513 Lecture 1.2

CMSC 1513 Lecture 1.2 Key Point: A computer is an electronic device that stores and processes data. Hardware Software Hardware comprises the visible, physical elements of the computer. Software provides the invisible instructions

More information

Bits, bytes, binary numbers, and the representation of information

Bits, bytes, binary numbers, and the representation of information Bits, bytes, binary numbers, and the representation of information computers represent, process, store, copy, and transmit everything as numbers hence "digital computer" the numbers can represent anything

More information

3 Data Storage 3.1. Foundations of Computer Science Cengage Learning

3 Data Storage 3.1. Foundations of Computer Science Cengage Learning 3 Data Storage 3.1 Foundations of Computer Science Cengage Learning Objectives After studying this chapter, the student should be able to: List five different data types used in a computer. Describe how

More information

Worksheet - Storing Data

Worksheet - Storing Data Unit 1 Lesson 12 Name(s) Period Date Worksheet - Storing Data At the smallest scale in the computer, information is stored as bits and bytes. In this section, we'll look at how that works. Bit Bit, like

More information

Dissecting Files. Endianness. So Many Bytes. Big Endian vs. Little Endian. Example Number. The "proper" order of things. Week 6

Dissecting Files. Endianness. So Many Bytes. Big Endian vs. Little Endian. Example Number. The proper order of things. Week 6 Dissecting Files Endianness Week 6 The "proper" order of things So Many Bytes So Many Bytes On a 32-bit system, each word consists of 4 bytes So, when any 32-bit value is stored in memory, each of those

More information

Image coding and compression

Image coding and compression Image coding and compression Robin Strand Centre for Image Analysis Swedish University of Agricultural Sciences Uppsala University Today Information and Data Redundancy Image Quality Compression Coding

More information

1.1 Bits and Bit Patterns. Boolean Operations. Figure 2.1 CPU and main memory connected via a bus. CS11102 Introduction to Computer Science

1.1 Bits and Bit Patterns. Boolean Operations. Figure 2.1 CPU and main memory connected via a bus. CS11102 Introduction to Computer Science 1.1 Bits and Bit Patterns CS11102 Introduction to Computer Science Data Storage 1.1 Bits and Their Storage 1.2 Main Memory 1.3 Mass Storage 1.4 Representation of information as bit patterns Bit: Binary

More information

Directory. Product overview. Connecting your media player. Specification. Interface. Explanation of the remote control. Connector Indication

Directory. Product overview. Connecting your media player. Specification. Interface. Explanation of the remote control. Connector Indication License Notice and Trademark Acknowledgement. Manufactured under license from Dolby Laboratories. Dolby and the double-d symbol are trademarks of Dolby Laboratories. Manufactured under license under U.S.

More information

Digital Audio. Amplitude Analogue signal

Digital Audio. Amplitude Analogue signal Digital Audio The sounds that we hear are air molecules vibrating in a wave pattern. These sound waves are measured by our ear drums and processed in our brain. As computers are digital machines, sound

More information

ednet. smart memory Smart storage expansion for your iphone or ipad

ednet. smart memory Smart storage expansion for your iphone or ipad ednet. smart memory Smart storage expansion for your iphone or ipad * MicroSD Card is not included in the scope of delivery. ednet. smart memory Smart storage expansion for your iphone or ipad up to 256

More information

Lecture 1: What is a computer?

Lecture 1: What is a computer? 02-201, Fall 2015, Carl Kingsford Lecture 1: What is a computer? 0. Today's Topics Basic computer architecture How the computer represents data 1. What is a computer? A modern computer is a collection

More information

OneClick Video Converter Free Version

OneClick Video Converter Free Version Document No.: OneClickSoftware OneClick Video Converter Free Version OneClick Software Inc. http://www.oneclicksoftware.com Page 1 Pages Order Introduction...Pages 3 Button Preview...Pages 4 How to...pages

More information

CR-8710 ios SD Card Reader

CR-8710 ios SD Card Reader CR-8710 ios SD Card Reader Introducing CR-8710 ios SD Card Reader 2 CR-8710 ios SD Card Reader World s smallest ios SD Card Reader Supports major SD brands like SanDisk, Sony, Samsung, Kingston, Lexar

More information

Image and Video Coding I: Fundamentals

Image and Video Coding I: Fundamentals Image and Video Coding I: Fundamentals Thomas Wiegand Technische Universität Berlin T. Wiegand (TU Berlin) Image and Video Coding Organization Vorlesung: Donnerstag 10:15-11:45 Raum EN-368 Material: http://www.ic.tu-berlin.de/menue/studium_und_lehre/

More information

Logo & Icon. Fit Together Logo (color) Transome Logo (black and white) Quick Reference Print Specifications

Logo & Icon. Fit Together Logo (color) Transome Logo (black and white) Quick Reference Print Specifications GRAPHIC USAGE GUIDE Logo & Icon The logo files on the Fit Together logos CD are separated first by color model, and then by file format. Each version is included in a small and large size marked by S or

More information

G64PMM - Lecture 3.2. Analogue vs Digital. Analogue Media. Graphics & Still Image Representation

G64PMM - Lecture 3.2. Analogue vs Digital. Analogue Media. Graphics & Still Image Representation G64PMM - Lecture 3.2 Graphics & Still Image Representation Analogue vs Digital Analogue information Continuously variable signal Physical phenomena Sound/light/temperature/position/pressure Waveform Electromagnetic

More information

Understanding file formats

Understanding file formats Understanding file formats When you save files from Elements, you need to pick a file format in the Format drop-down menu found in both the Save and Save As dialog boxes. When you choose from the different

More information

The Gullibility of Human Senses

The Gullibility of Human Senses The Gullibility of Human Senses Three simple tricks for producing LBSC 690: Week 9 Multimedia Jimmy Lin College of Information Studies University of Maryland Monday, April 2, 2007 Images Video Audio But

More information

Media Player MP-2020 Specification Sheet MP Media Player for 2.5 Hard disk Specification Sheet

Media Player MP-2020 Specification Sheet MP Media Player for 2.5 Hard disk Specification Sheet MP-2020 Media Player for 2.5 Hard disk Specification Sheet 2009.10.28-1 - Table of Contents 1.0 Overview... 3 1.1.0 Features... 3 2.0 Box Contents... 4 3.0 Hardware Specification... 4 3.1.0 Assembly Viewing...

More information

Discussion. Why do we use Base 10?

Discussion. Why do we use Base 10? MEASURING DATA Data (the plural of datum) are anything in a form suitable for use with a computer. Whatever a computer receives as an input is data. Data are raw facts without any clear meaning. Computers

More information

So, what is data compression, and why do we need it?

So, what is data compression, and why do we need it? In the last decade we have been witnessing a revolution in the way we communicate 2 The major contributors in this revolution are: Internet; The explosive development of mobile communications; and The

More information

Tablet 300x x x x1024

Tablet 300x x x x1024 PROGRAMMATIC DISPLAY Supported Display Ad Types GIF, JPEG, PNG image files 3rd Party Ad Tags from approved ad servers (HTML or raw JavaScript) Rich media expandable supported through third party with some

More information

ExtremeTech Technology News - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

ExtremeTech Technology News - FTP Site Statistics. Top 20 Directories Sorted by Disk Space ExtremeTech Technology News - FTP Site Statistics Property Value FTP Server ftp.extremetech.com Description ExtremeTech Technology News Country United States Scan Date 14/Oct/2014 Total Dirs 281 Total

More information