Core Audio. MSDOSX : Lecture 20

Size: px
Start display at page:

Download "Core Audio. MSDOSX : Lecture 20"

Transcription

1 Core Audio MSDOSX : Lecture 20

2 Overview What is Core Audio? Core Audio Programming Interfaces Common Tasks With Core Audio Core Audio Frameworks What s Been Shipping Since 10.4? Supported Audio and Data Formats Resources

3 What is Core Audio?

4 What is Core Audio? Plug-in interfaces for audio synthesis and audio digital signal processing (DSP)

5 What is Core Audio? Built in support for reading and writing a wide variety of audio file and data formats

6 What is Core Audio? Plug-in interfaces for handling custom file and data formats

7 What is Core Audio? A modular approach for constructing signal chains

8 What is Core Audio? Scalable multichannel input and output

9 What is Core Audio? Easy synchronization of audio and MIDI data during recording or

10 What is Core Audio? A standardized interface to all built-in and external hardware devices, regardless of connection type (USB, Firewire, PCI, and so on)

11 A standardized interface to all built-in and external hardware devices, regardless of connection type (USB, Firewire, PCI, and so on)

12 A standardized interface to all built-in and external hardware devices, regardless of connection type (USB, Firewire, PCI, and so on)

13 A standardized interface to all built-in and external hardware devices, regardless of connection type (USB, Firewire, PCI, and so on)

14 Interfaces Audio Unit Services Audio Processing Graph API Audio File and Converter Services Hardware Abstraction Layer (HAL) Services Music Player API Core MIDI Services and MIDI Server Services Core Audio Clock API OpenAL (Open Audio Library) System Sound API

15 Audio Unit Services Allows you to create and manipulate audio units.

16 Audio Processing Graph API

17 Audio Processing Graph API

18 Audio File and Converter Services Audio Converters and Codecs File Format Information Audio Metadata Core Audio File Format

19 Hardware Abstraction Layer (HAL) Services Core Audio uses a hardware abstraction layer (HAL) to provide a consistent and predictable interface for applications to deal with hardware.

20 Hardware Abstraction Layer (HAL) Services

21 Music Player API The Music Player API allows you to arrange and play a collection of music tracks. MIDI

22 Core MIDI Services and MIDI Server Services Core MIDI Services defines an interface that applications and audio units can use to communicate with MIDI devices. It uses a number of abstractions that allow an application to interact with a MIDI network.

23 Core MIDI Services and MIDI Server Services

24 Core MIDI Services and MIDI Server Services

25 Core Audio Clock API The Core Audio Clock API provides: A reference clock that you can use to synchronize applications or devices. A standalone timing source, or... A synchronized timer with an external trigger, such as a MIDI beat clock or MIDI time code. You can start and stop the clock yourself, or... You can set the clock to activate or deactivate in response to certain events.

26 Core Audio Clock API

27 OpenAL (Open Audio Library) OpenAL is a crossplatform API used to position and manipulate sounds in a simulated three-dimensional space.

28 System Sound API The System Sound API provides a simple way to play standard system sounds in your application.

29 Common Tasks in Core Audio Reading and Writing Audio Data Interfacing with Hardware Devices The AUHAL Using Aggregate Devices Creating Audio Units & Hosting Audio Units Handling MIDI Data

30 Reading and Writing Audio Data

31 Interfacing with Hardware Devices Operations must go through the hardware abstraction layer (HAL).

32 The AUHAL If you need to connect to an input device, or a hardware device other than the default output device, you need to use the AUHAL.

33 The AUHAL If you need to connect to an input device, or a hardware device other than the default output device, you need to use the AUHAL.

34 Using Aggregate Devices When interfacing with hardware audio devices, Core Audio allows you to add an additional level of abstraction, creating aggregate devices which combine the inputs and outputs of multiple devices to appear as a single device.

35 Creating Audio Units & Hosting Audio Units...probably read the documentation. :-)

36 Handling MIDI Data MIDI File Read

37 Handling MIDI Data MIDI Sequence Playback

38 Handling MIDI Data MIDI Device Play-through

39 Handling MIDI Data MIDI File Recording

40 Handling MIDI Data Mixing Audio Sources

41 Handling MIDI Data Big Picture

42 Core Audio Frameworks AudioToolbox.framework AudioUnit.framework CoreAudioKit.framework CoreAudio.framework CoreMIDI.framework CoreMIDIServer.framework OpenAL.framework

43 System Supplied Audio Units System-supplied effect units (kaudiounittype_effect) AUHiPass kaudiounitsubtype_highpassfilter A high-pass filter with an adjustable resonance peak.

44 System Supplied Audio Units System-supplied instrument unit DLSMusicDevice kaudiounitsubtype_dlssynth A virtual instrument unit that lets you play MIDI data using sound banks

45 System Supplied Audio Units System-supplied mixer units (kaudiounittype_mixer) AUMixer3D kaudiounitsubtype_3dmixer...can take several different signals and mix them so they appear to be positioned in a three-dimensional space.

46 System Supplied Audio Units System-supplied converter units (kaudiounittype_formatconverter) AUTimePitch kaudiounitsubtype_timepitch A unit that lets you change the speed of playback without altering the pitch, or vice versa.

47 System Supplied Audio Units System-supplied output units (kaudiounittype_output) AudioDeviceOutput kaudiounitsubtype_haloutput A unit that interfaces with an audio device using the hardware abstraction layer. Also called the AUHAL.

48 System Supplied Audio Units System-supplied generator units (kaudiounittype_generator) AUNetReceive kaudiounitsubtype_netreceive A unit that receives streamed audio data from a network.

49 Supported Audio and Data File Formats AAC (.aac,.adts) AC3 (.ac3) AIFC (.aif,.aiff,.aifc) AIFF (.aiff) Apple Core Audio Format (.caf) MPEG Layer 3 (.mp3) MPEG 4 Audio (.mp4) MPEG 4 Audio (.m4a) NeXT/Sun Audio (.snd,.au) Sound Designer II (.sd2) WAVE (.wav) Audio File Formats

50 Supported Audio and Data File Formats MPEG Layer 3 ('.mp3') MACE 3:1 ('MAC3') MACE 6:1 ('MAC6') QDesign Music 2 ('QDM2') QDesign ('QDMC') Qualcomm PureVoice ('Qclp') Qualcomm QCELP ('qclq') AAC ('aac ') Apple Lossless ('alac') Apple GSM 10:1 ('agsm') Apple DRM Audio Decoder ('drms') AC-3 DVI 4:1 ('dvi ') Apple IMA 4:1 ('ima4') LPC 23:1 ('lpc ') Microsoft ADPCM DVI ADPCM GSM610 AMR Narrowband ('samr') µlaw 2:1 ('ulaw') ALaw 2:1 'alaw') Data File Formats

51 Resources Overview Conceptual/CoreAudioOverview/Introduction/Introduction.html Core Audio Frameworks Conceptual/CoreAudioOverview/CoreAudioFrameworks/ CoreAudioFrameworks.html System Supplied Audio Units Conceptual/CoreAudioOverview/SystemAudioUnits/ SystemAudioUnits.html "iphone Core Audio Brain Dump"

ITP 342 Mobile App Dev. Audio

ITP 342 Mobile App Dev. Audio ITP 342 Mobile App Dev Audio File Formats and Data Formats 2 pieces to every audio file: file format (or audio container) data format (or audio encoding) File formats describe the format of the file itself

More information

Contents. Introduction 7. What Is Core Audio? 10. Core Audio Essentials 19. Organization of This Document 8 See Also 8

Contents. Introduction 7. What Is Core Audio? 10. Core Audio Essentials 19. Organization of This Document 8 See Also 8 Core Audio Overview Contents Introduction 7 Organization of This Document 8 See Also 8 What Is Core Audio? 10 Core Audio in ios and OS X 10 A Little About Digital Audio and Linear PCM 12 Audio Units 12

More information

Graphical User Interfaces. QuickTime for Java. Presentation of the Semester Thesis' Toolkit within the Context of Graphical User Interfaces (MSc.

Graphical User Interfaces. QuickTime for Java. Presentation of the Semester Thesis' Toolkit within the Context of Graphical User Interfaces (MSc. Graphical User Interfaces QuickTime for Java Presentation of the Semester Thesis' Toolkit within the Context of Graphical User Interfaces (MSc.) Department of Computer Science / Mathematics Munich University

More information

For Mac and iphone. James McCartney Core Audio Engineer. Eric Allamanche Core Audio Engineer

For Mac and iphone. James McCartney Core Audio Engineer. Eric Allamanche Core Audio Engineer For Mac and iphone James McCartney Core Audio Engineer Eric Allamanche Core Audio Engineer 2 3 James McCartney Core Audio Engineer 4 Topics About audio representation formats Converting audio Processing

More information

Completing the Multimedia Architecture

Completing the Multimedia Architecture Copyright Khronos Group, 2011 - Page 1 Completing the Multimedia Architecture Erik Noreke Chair of OpenSL ES Working Group Chair of OpenMAX AL Working Group Copyright Khronos Group, 2011 - Page 2 Today

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

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

Apple Core Audio Format Specification 1.0

Apple Core Audio Format Specification 1.0 Apple 1.0 2006-03-08 Apple Inc. 2005, 2006 Apple Computer, Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means,

More information

ITP 342 Mobile App Dev. Audio

ITP 342 Mobile App Dev. Audio ITP 342 Mobile App Dev Audio File Formats and Data Formats 2 pieces to every audio file: file format (or audio container) data format (or audio encoding) File formats describe the format of the file itself

More information

VISUAL QUICKSTART GUIDE QUICKTIME PRO 4. Judith Stern Robert Lettieri. Peachpit Press

VISUAL QUICKSTART GUIDE QUICKTIME PRO 4. Judith Stern Robert Lettieri. Peachpit Press VISUAL QUICKSTART GUIDE QUICKTIME PRO 4 Judith Stern Robert Lettieri Peachpit Press Visual QuickStart Guide QuickTime Pro 4 Judith Stern Robert Lettieri Peachpit Press 1249 Eighth Street Berkeley, CA 94710

More information

Audio issues in MIR evaluation

Audio issues in MIR evaluation Audio issues in MIR evaluation Overview of audio formats Preferred presentation of audio files in an MIR testbed A set of simple recommendations Audio Formats I 1. Apple AIFF (Audio Interchange File Format)

More information

Export Audio Mixdown

Export Audio Mixdown 26 Introduction The function in Cubase Essential allows you to mix down audio from the program to a file on your hard disk. You always mix down an output bus. For example, if you have set up a stereo mix

More information

Streaming Media. Advanced Audio. Erik Noreke Standardization Consultant Chair, OpenSL ES. Copyright Khronos Group, Page 1

Streaming Media. Advanced Audio. Erik Noreke Standardization Consultant Chair, OpenSL ES. Copyright Khronos Group, Page 1 Streaming Media Advanced Audio Erik Noreke Standardization Consultant Chair, OpenSL ES Copyright Khronos Group, 2010 - Page 1 Today s Consumer Requirements Rich media applications and UI - Consumer decisions

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

1.0 Y 1.1 Y 2.0 Y 3.0 N FAT 16 (standard) FAT 32 exfat

1.0 Y 1.1 Y 2.0 Y 3.0 N FAT 16 (standard) FAT 32 exfat General Information USB Standards File systems USB speed classifications USB power management USB 1.0 1.1 2.0 3.0 FAT 16 (standard) FAT 32 exfat TFS HPFS ext2, ext3, ext4 Low_Speed, 1,5 Mbit/s (187,5 KB/s)

More information

User's Guide. https://twitter.com/videorecorderne. https://plus.google.com/

User's Guide.  https://twitter.com/videorecorderne. https://plus.google.com/ Easy Video Recorder for Mac User's Guide Follow us on : http://www.facebook.com/videorecordersoftware https://twitter.com/videorecorderne https://plus.google.com/115150222758716042381 http://www.youtube.com/user/videorecordernet

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

Controlling CHAPTER CueMix from an ipad using TouchOSC

Controlling CHAPTER CueMix from an ipad using TouchOSC Controlling CHAPTER CueMix from an ipad using TouchOSC The CueMix mixer in your MOTU audio interface can be controlled from an ipad using an ipad app called TouchOSC. From your ipad, you can perform all

More information

Sprint Media Manager FAQs

Sprint Media Manager FAQs Sprint Media Manager FAQs 2008 Sprint - 1-2008 Sprint. Sprint and the logo are trademarks of Sprint. Other marks are the property of their respective owners. Sprint Media Manager FAQs What is Sprint Media

More information

Setting your PC for operating from a smartphone, iphone, etc. as a controller (Windows 8.1)

Setting your PC for operating from a smartphone, iphone, etc. as a controller (Windows 8.1) Help Guide Home Audio System MHC-V90DW The following explains how to use this home audio system. Listening to music from an Internet streaming service (music service) Listening to music from an Internet

More information

EUROPEAN COMPUTER DRIVING LICENCE. Multimedia Audio Editing. Syllabus

EUROPEAN COMPUTER DRIVING LICENCE. Multimedia Audio Editing. Syllabus EUROPEAN COMPUTER DRIVING LICENCE Multimedia Audio Editing Syllabus Purpose This document details the syllabus for ECDL Multimedia Module 1 Audio Editing. The syllabus describes, through learning outcomes,

More information

Music Technology Configuring MIDI and /audio

Music Technology Configuring MIDI and /audio Plug in both mains and power adaptors for the Scarlett 18i20 /AudioMIDI interface and sound module. Then connect audio and MIDI leads as shown below. Plug the MIDI OUT on the interface to the MIDI in on

More information

Audio for Everybody. OCPUG/PATACS 21 January Tom Gutnick. Copyright by Tom Gutnick. All rights reserved.

Audio for Everybody. OCPUG/PATACS 21 January Tom Gutnick. Copyright by Tom Gutnick. All rights reserved. Audio for Everybody OCPUG/PATACS 21 January 2017 Copyright 2012-2017 by Tom Gutnick. All rights reserved. Tom Gutnick Session overview Digital audio properties and formats ADC hardware Audacity what it

More information

Introduction Understanding The Basics Introducing ACID Pro 3.0 Making Music with ACID Setting Up the Hardware Installing and Registering ACID

Introduction Understanding The Basics Introducing ACID Pro 3.0 Making Music with ACID Setting Up the Hardware Installing and Registering ACID Introduction Understanding The Basics Introducing ACID Pro 3.0 Making Music with ACID Setting Up the Hardware Installing and Registering ACID Understanding the Interface Understanding What's New in Version

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

Portable media PORTABLE MEDIA CONNECTIONS

Portable media PORTABLE MEDIA CONNECTIONS PORTABLE MEDIA CONNECTIONS Portable media devices can be connected to the media hub located in the cubby box. Rear seat passengers can connect at the rear of the centre console. Optical discs can be inserted

More information

BRIO by OraStream. Product Brief

BRIO by OraStream. Product Brief BRIO by OraStream Product Brief System Architecture BRIO Storage BRIO Server Remote Client Download Input* App Logic BRIO Control Process adaptive streaming BRIO Client Upload Output* Audio Out BRIO By

More information

the gamedesigninitiative at cornell university Lecture 15 Game Audio

the gamedesigninitiative at cornell university Lecture 15 Game Audio Lecture 15 The Role of Audio in Games Engagement Entertains player Music/Soundtrack Enhances realism Sound effects Establishes atmosphere Ambient sounds Or reasons? 2 The Role of Audio in Games Feedback

More information

Sounding Better Than Ever: High Quality Audio. Simon Forrest Connected Home Marketing

Sounding Better Than Ever: High Quality Audio. Simon Forrest Connected Home Marketing Sounding Better Than Ever: High Quality Audio Simon Forrest Connected Home Marketing www.imgtec.com A brief look at the numbers Market trends Worldwide audio market 2014 67.9m units shipped 16% increase

More information

Top 5 Best itunes Alternatives for Playing Music on Mac Posted by Nick Orin on June 28, :34:12 PM.

Top 5 Best itunes Alternatives for Playing Music on Mac Posted by Nick Orin on June 28, :34:12 PM. Top 5 Best itunes Alternatives for Playing Music on Mac Posted by Nick Orin on June 28, 2017 01:34:12 PM. itunes is the largest music store in the world since February 2010, you can find almost any music

More information

PLAYBACK COMPATIBILITY LIST

PLAYBACK COMPATIBILITY LIST PLABACK COMPATIBILIT LIST General Information Disc loader Disc type CD CD-R CD-R/RW DVD DVD+R DVD-R DVD+R/RW DVD-R/RW DVD-RAM DVD-DL Mini-CD HD-DVD Blu-ray Disc USB USB Standards 1.0 1.1 2.0 3.0 File systems

More information

MiX16 PRO. Theatre Show System. User Manual. designed and created by Gregor Krasevec.

MiX16 PRO. Theatre Show System. User Manual. designed and created by Gregor Krasevec. MiX16 PRO Theatre Show System User Manual designed and created by Gregor Krasevec www.mix16apps.com info@mix16apps.com MiX16 PRO Theatre Show System 2014 Gregor Krasevec 1 of 21 Introduction Introducing

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

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

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

Traktor Pro (1) Midi Mapping SYNQ DMC2000 (EXTENDED VERSION 4 decks)

Traktor Pro (1) Midi Mapping SYNQ DMC2000 (EXTENDED VERSION 4 decks) Traktor Pro (1) Midi Mapping SYNQ DMC2000 (EXTENDED VERSION 4 decks) IMPORTANT NOTICE BEFORE YOU START: check which version of TRAKTOR you have! Traktor mappings can ONLY be used with TRAKTOR PRO, not

More information

Understand digital audio production methods, software, and hardware.

Understand digital audio production methods, software, and hardware. Objective 105.02 Understand digital audio production methods, software, and hardware. Course Weight : 6% 1 Three Phases for Producing Digital audio : 1. Pre-Production define parameters of the audio project

More information

Audio Coding and MP3

Audio Coding and MP3 Audio Coding and MP3 contributions by: Torbjørn Ekman What is Sound? Sound waves: 20Hz - 20kHz Speed: 331.3 m/s (air) Wavelength: 165 cm - 1.65 cm 1 Analogue audio frequencies: 20Hz - 20kHz mono: x(t)

More information

NuForce 192kHz/24bit USB Driver Setup Guide

NuForce 192kHz/24bit USB Driver Setup Guide NuForce 192kHz/24bit USB Driver Setup Guide Install Driver & Software: After downloading the driver, run the Installation program. After the installation, an icon linking to the NuForce Stereo Audio Control

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

Compressed Audio Demystified by Hendrik Gideonse and Connor Smith. All Rights Reserved.

Compressed Audio Demystified by Hendrik Gideonse and Connor Smith. All Rights Reserved. Compressed Audio Demystified Why Music Producers Need to Care About Compressed Audio Files Download Sales Up CD Sales Down High-Definition hasn t caught on yet Consumers don t seem to care about high fidelity

More information

Android Multimedia Framework Overview. Li Li, Solution and Service Wind River

Android Multimedia Framework Overview. Li Li, Solution and Service Wind River Android Multimedia Framework Overview Li Li, Solution and Service Wind River Agenda What is Multimedia in a mobile device MPEG standard File format Codec Android Multimedia Framework OpenCORE OpenMAX What

More information

08 Sound. Multimedia Systems. Nature of Sound, Store Audio, Sound Editing, MIDI

08 Sound. Multimedia Systems. Nature of Sound, Store Audio, Sound Editing, MIDI Multimedia Systems 08 Sound Nature of Sound, Store Audio, Sound Editing, MIDI Imran Ihsan Assistant Professor, Department of Computer Science Air University, Islamabad, Pakistan www.imranihsan.com Lectures

More information

QuickTime 4 Reference. For Macintosh and Windows

QuickTime 4 Reference. For Macintosh and Windows apple QuickTime 4 Reference For Macintosh and Windows apple Apple Computer, Inc. Technical Publications July, 1999 C H A P T E R 2 0 Figure 20-0 Listing 20-0 Table 20-0 20 This chapter discusses new features

More information

Multi-Room Music Servers

Multi-Room Music Servers CT-1: 1 Stream Server CT-8: 8 Stream Server CT-2: 2 Stream Server CT-12: 12 Stream Server CT-16: 16 Stream Server CT-3: 3 Stream Server CT-20: 20 Stream Server CT-4+: 5 Stream Server CT-24: 24 Stream Server

More information

Squeeze Play: The State of Ady0 Cmprshn. Scott Selfon Senior Development Lead Xbox Advanced Technology Group Microsoft

Squeeze Play: The State of Ady0 Cmprshn. Scott Selfon Senior Development Lead Xbox Advanced Technology Group Microsoft Squeeze Play: The State of Ady0 Cmprshn Scott Selfon Senior Development Lead Xbox Advanced Technology Group Microsoft Agenda Why compress? The tools at present Measuring success A glimpse of the future

More information

Firmware Version 1.60 User s Guide

Firmware Version 1.60 User s Guide MZ-X500 EN MZ-X300 Firmware Version 1.60 User s Guide MZX500/300-160-E-1A 1 Updates Provided by Firmware Version 1.10 Firmware changes provided by Version 1.0X are those described below. Addition of a

More information

Media player for windows 10 free download

Media player for windows 10 free download Media player for windows 10 free download Update to the latest version of Internet Explorer. You need to update your browser to use the site. PROS: High-quality playback, Wide range of formats, Fast and

More information

X3M. ExcelValley. MIDI + USB Sound Module: Supports hardware wavetable synthesis + audio. playback, multifunctional MIDI DIN connector.

X3M. ExcelValley. MIDI + USB Sound Module: Supports hardware wavetable synthesis + audio. playback, multifunctional MIDI DIN connector. ExcelValley X3M MIDI + USB Sound Module: Supports hardware wavetable synthesis + audio playback, multifunctional MIDI DIN connector. www.excelvalley.com Contents Introduction 3 Resources 3 Specifications

More information

Vantage 7.1 Transcode/Transcode Pro Encode Format Support

Vantage 7.1 Transcode/Transcode Pro Encode Format Support Transcode/Transcode Pro Mobile, Web and Edit Formats 3GP H.263 AAC-LC 3GP H.263 AMR - NB 3GP H.264/AVC AAC-LC 3GP H.264/AVC AMR - NB 3GP MPEG-4 AAC-LC 3GP MPEG-4 AMR - NB AVI Uncom. AVI Stream MS ADPCM

More information

ITNP80: Multimedia! Sound-II!

ITNP80: Multimedia! Sound-II! Sound compression (I) Compression of sound data requires different techniques from those for graphical data Requirements are less stringent than for video data rate for CD-quality audio is much less than

More information

Reference8 Pro music player Fast Operation Guide

Reference8 Pro music player Fast Operation Guide Reference8 Pro music player Fast Operation Guide Introduction 1/2 Front 1. Display 2. Power Switch 3. USB2.0 for Memory 4. Down Button 5. Menu Button 6. Up Button 7. IR Window 2/2 Rear 8. Power Socket

More information

Echo Digital Audio Corporation AudioFire 2 AudioFire 4 AudioFire 8 AudioFire 12 Release for Mac OS X

Echo Digital Audio Corporation AudioFire 2 AudioFire 4 AudioFire 8 AudioFire 12 Release for Mac OS X Echo Digital Audio Corporation AudioFire 2 AudioFire 4 AudioFire 8 AudioFire 12 Release 3.1.1 for Mac OS X DISCLAIMER... 2 RELEASE INFORMATION... 2 SUPPORTED OPERATING SYSTEMS... 2 CHANGES... 3 KNOWN ISSUES...

More information

Computer Audio Setup Guide

Computer Audio Setup Guide Computer Audio Setup Guide This guide is intended to be used as a quick reference tool for those embarking on their journey into the world of Computer Audio. While there is always more to discuss and discover,

More information

What applications can be done by using VS1003?

What applications can be done by using VS1003? What applications can be done by using VS1003? Ver 1.4 / September 2011 Alternatives Audio decoder (slave) Basic functionality MP3/WMA/SP-midi/WAV Voice recording from microphone Streaming support for

More information

Amazing Audacity: Session 1

Amazing Audacity: Session 1 Online 2012 Amazing Audacity: Session 1 Katie Wardrobe Midnight Music The Audacity Screen...3 Import audio (a song or SFX)...3 Before we start... 3 File formats... 3 What s the different between WAV and

More information

Introduction into Game Programming (CSC329)

Introduction into Game Programming (CSC329) Introduction into Game Programming (CSC329) Sound Ubbo Visser Department of Computer Science University of Miami Content taken from http://docs.unity3d.com/manual/ March 7, 2018 Outline 1 Audio overview

More information

SAMSUNG SOC FOR ICOMPEL CONTENT COMMANDER

SAMSUNG SOC FOR ICOMPEL CONTENT COMMANDER SETUP GUIDE SAMSUNG SOC INSTRUCTIONS FOR ICOMPEL CONTENT COMMANDER SAMSUNG SOC FOR ICOMPEL CONTENT COMMANDER 24/7 AT OR VISIT BLACKBOX.COM TABLE OF CONTENTS 1. INSTALLATION... 3 1.1 Setup...3 1.2 Downloading

More information

Web 2.0 and iphone Application Development Workshop. Lab 5: Multimedia on iphone

Web 2.0 and iphone Application Development Workshop. Lab 5: Multimedia on iphone Web 2.0 and iphone Application Development Workshop This lab is prepared by: Department of Electrical and Electronic Engineering, Faculty of Engineering, The University of Hong Kong Lab 5: Multimedia on

More information

I. CREATING YOUR SOUNDCLOUD ACCOUNT

I. CREATING YOUR SOUNDCLOUD ACCOUNT A Tutorial for creating and posting audio recordings with SoundCloud, http://soundcloud.com Table of Contents 1. Creating Your Account: Features and steps (p. 1) 2. Recording You First Audio (p. 2) 3.

More information

Amarra Version 2.2 ReadMe Table Of Contents

Amarra Version 2.2 ReadMe Table Of Contents 384 khz / 24 Bit Amarra Version 2.2 ReadMe Table Of Contents Important notes for Amarra 2.2 :: 3 1.0.0 Evaluation Mode :: 3 2.0.0 Licensing :: 4 3.0.0 Software Change Information :: 4 4.0.0 Preferences

More information

Installing energyxt2.5. Mac. Double-click energyxt2.5 disk image file. Drag the energyxt2.5 folder to your "Applica- tions" folder / your desktop.

Installing energyxt2.5. Mac. Double-click energyxt2.5 disk image file. Drag the energyxt2.5 folder to your Applica- tions folder / your desktop. ENGLISH 2 Getting started Windows Installing energyxt2.5 Mac Linux Double-click the setup file and follow the on- screen instructions. i. i. Double-click energyxt2.5 disk image file. Drag the energyxt2.5

More information

MARANTZ GUIDE TO PC-AUDIO

MARANTZ GUIDE TO PC-AUDIO MARANTZ GUIDE TO PC-AUDIO Contents: Introduction Digital Connections Audio Formats and TAGs System requirements System Setup for PC and MAC Tips and Tricks High Resolution audio download Audio transmission

More information

AudioGate version Release Information (Windows)

AudioGate version Release Information (Windows) AudioGate version 1.5.0 Release Information (Windows) Release Notes Changes and revisions in v1.5.0 from v1.0.1 - Added support for MR project files. AudioGate can now read MR project files directly by

More information

Table of Contents. Mac, ipad, iphone, and ipod touch are trademarks of Apple Inc., registered in the U.S. and other countries.

Table of Contents. Mac, ipad, iphone, and ipod touch are trademarks of Apple Inc., registered in the U.S. and other countries. Table of Contents Overview...3 What s in the Box...4 Getting Connected...5 What You Can Connect...6 Port Names...9 MIDI DIN Connections...11 To Send MIDI To iconnectmidi...11 To Receive MIDI from iconnectmidi...11

More information

Versa Mix. User Guide and Reference Manual Charter Street Los Angeles Ca /07

Versa Mix. User Guide and Reference Manual Charter Street Los Angeles Ca /07 Versa Mix User Guide and Reference Manual 2/07 4295 Charter Street Los Angeles Ca. 90058 www.americanaudio.us Introduction Congratulations and thank you for purchasing the American Audio Versa Mix. Versa

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

User Manual Gregor Krasevec. designed and created by.

User Manual Gregor Krasevec. designed and created by. User Manual designed and created by Gregor Krasevec www.mix16apps.com info@mix16apps.com 1 of 24 Introduction THE MOST STABLE APP IN SHOW BUSINESS! Created by a professional theatre sound engineer. Used

More information

CR-H101. New Generation CD Micro System for Hi-Res Era. Reference 101 Series. Micro Component System. Main functions

CR-H101. New Generation CD Micro System for Hi-Res Era. Reference 101 Series. Micro Component System. Main functions Reference 101 Series CR-H101 Micro Component System New Generation CD Micro System for Hi-Res Era. Main functions CD Receiver employs PC Streaming, CD Player, FM Tuner, and Bluetooth Connection Supports

More information

3 Sound / Audio. CS 5513 Multimedia Systems Spring 2009 LECTURE. Imran Ihsan Principal Design Consultant

3 Sound / Audio. CS 5513 Multimedia Systems Spring 2009 LECTURE. Imran Ihsan Principal Design Consultant LECTURE 3 Sound / Audio CS 5513 Multimedia Systems Spring 2009 Imran Ihsan Principal Design Consultant OPUSVII www.opuseven.com Faculty of Engineering & Applied Sciences 1. The Nature of Sound Sound is

More information

Sound 5 11/21/2016. Use MIDI and understand its attributes, especially relative to digitized audio.

Sound 5 11/21/2016. Use MIDI and understand its attributes, especially relative to digitized audio. Chapter 5 Sound Learning Objectives This lesson looks at audio that can be used in multimedia. At the end of the lesson, the students will be able to: Use sound in a multimedia project. Use MIDI and understand

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

A M A R R A M I N I 2. 0 S E T U P & U S E R G U I D E. Sonic Studio, LLC

A M A R R A M I N I 2. 0 S E T U P & U S E R G U I D E. Sonic Studio, LLC M I N I A M A R R A M I N I 2. 0 S E T U P & U S E R G U I D E Sonic Studio, LLC www.sonicstudio.com Thank you! Thank you for purchasing the AMARRA MINI Computer Music Player. You are about to enjoy the

More information

Embedding Audio into your RX Application

Embedding Audio into your RX Application Embedding Audio into your RX Application Renesas Electronics America Inc. Renesas Technology & Solution Portfolio 2 Microcontroller and Microprocessor Line-up 2010 2013 32-bit 8/16-bit 1200 DMIPS, Superscalar

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

Meeting Visuals UCF Toolkit User Guide

Meeting Visuals UCF Toolkit User Guide Meeting Visuals UCF Toolkit User Guide We provide Meeting Visuals web conferencing services. Because Meeting Visuals is powered by WebEx, this guide makes several references to the company name, platform

More information

AGPTek Music Player. A12 User Manual

AGPTek Music Player. A12 User Manual AGPTek Music Player A12 User Manual Thank your for purchasing A12 MUSIC PLAYER! Our after-sales is always at your service. Any problem, please feel free to contact us via support@agptek.com. When anything

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

CDJ-350 & DJM-350 EXPLOSIVE PERFORMANCE. Compact creativity, vast versatility

CDJ-350 & DJM-350 EXPLOSIVE PERFORMANCE. Compact creativity, vast versatility CDJ-350 & DJM-350 EXPLOSIVE PERFORMANCE Compact creativity, vast versatility CDJ-350 Compact digital multi-player Making everyone s move into clubland more accessible and inspirational Playback from audio

More information

User Manual Gregor Krasevec. designed and created by.

User Manual Gregor Krasevec. designed and created by. User Manual designed and created by Gregor Krasevec www.mix16apps.com info@mix16apps.com 1 of 19 Introduction is an application for professional audio support for live shows or rehearsals. It is ideal

More information

Sydney PC User Group Smartphones SIG Mtg 3 Intro (cont.) John Shiel. Mobile Phones with fast connection, easy text entry

Sydney PC User Group Smartphones SIG Mtg 3 Intro (cont.) John Shiel. Mobile Phones with fast connection, easy text entry Sydney PC User Group Smartphones SIG Mtg 3 Intro (cont.) John Shiel Mobile Phones with fast connection, easy text entry Agenda Operating Systems Timeline How Mobile Phones Work Usability importance Adv

More information

Application of high quality internet music service & combination of MPEG-4 Structured Audio and physical model synthesis method

Application of high quality internet music service & combination of MPEG-4 Structured Audio and physical model synthesis method Application of high quality internet music service & combination of MPEG-4 Structured Audio and physical model synthesis method Adviser: Associate Professor Alvin W.Y. Su System Developer: Jian-Lung Wu,

More information

Compact Audio SC-PMX150

Compact Audio SC-PMX150 Audio Compact Audio Compact Audio SCPMX150 PLAYABLE DISCS CD, CDR/ RW CDDA MP3 AUDIO SYSTEM Output Channel 2ch Power Output (RMS) Total Power 120W Front 60W (1kHz, 3ohms, 10% THD) USB Slot (x2) USB Standard

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

DESCRIPTION FEATURES MULTISTREAM PCI SOUND CARDS 26 DECEMBER 2007 ASI6514, ASI6518

DESCRIPTION FEATURES MULTISTREAM PCI SOUND CARDS 26 DECEMBER 2007 ASI6514, ASI6518 26 DECEMBER 2007 ASI6514, ASI6518 MULTISTREAM PCI SOUND CARDS DESCRIPTION The ASI6514 and ASI6518 are professional PCI sound cards designed for use in radio broadcast automation. Providing up to 16 play

More information

Digital Audio Systems Desktop Sampling Systems

Digital Audio Systems Desktop Sampling Systems Digital Audio Systems Desktop Sampling Systems Digital Audio Systems E-MU s new Digital Audio Systems deliver everything you need to produce audio on a PC with professional results 24-bit/192kHz converters,

More information

Powered by EZCast Software

Powered by EZCast Software Powered by EZCast Software User Manual Rev. 1.00 1. General EZCast is a special program to project your mobile device display to another screen through Wi-Fi connection. You can enhance your TV/Projector

More information

INSTALLATION MBL USB LINK MCMI

INSTALLATION MBL USB LINK MCMI INSTALLATION MBL USB LINK MCMI Installation and configuration of the MBL USB LINK MCMI under Microsoft Windows 7 unique high end audio INDEX 1. Introduction... 3 2. Installation and Configuration of the

More information

freetunes Engelmann Media GmbH

freetunes Engelmann Media GmbH freetunes 3.0 Contents 3 Table of Contents Part I Introduction 6 1 System... requirements 6 2 Installation... 7 3 Program... start 7 4 Demo... 7 5 Copyright... 7 Part II Converter 10 1 Source... 10 2

More information

Introducing working with sounds in Audacity

Introducing working with sounds in Audacity Introducing working with sounds in Audacity A lot of teaching programs makes it possible to add sound to your production. The student can either record her or his own voice and/or add different sound effects

More information

SoundBridge Helpful Tips. For customers who want to use Roku SoundBridge with the SlimServer music server

SoundBridge Helpful Tips. For customers who want to use Roku SoundBridge with the SlimServer music server SoundBridge Helpful Tips For customers who want to use Roku SoundBridge with the SlimServer music server Revision 1.2 October 25, 2004 1 I. Setting Up Your SlimServer-based Network Choosing Your Software

More information

MENU button until a padlock icon appears in the top-left corner of the screen. This will not affect the volume control. To unlock the buttons, hold do

MENU button until a padlock icon appears in the top-left corner of the screen. This will not affect the volume control. To unlock the buttons, hold do About ARCHOS 105 What's an MP3 file? General MP3 is the abbreviation of MPEG-1/2 Audio Layer 3. It is the most common audio file format that contains audio information such as music or voice. It is a compression/decompression

More information

ipod nano Features Guide

ipod nano Features Guide ipod nano Features Guide 2 Contents Chapter 1 4 ipod nano Basics 5 ipod nano at a Glance 5 Using ipod nano Controls 7 Disabling ipod nano Buttons 8 Using ipod nano Menus 9 Connecting and Disconnecting

More information

Inserting multimedia objects in Dreamweaver

Inserting multimedia objects in Dreamweaver Inserting multimedia objects in Dreamweaver To insert a multimedia object in a page, do one of the following: Place the insertion point in the Document window where you want to insert the object, then

More information

Smart Pianist FAQ. Availability of certain functions differs depending on the connected instrument.

Smart Pianist FAQ. Availability of certain functions differs depending on the connected instrument. Smart Pianist FAQ Here is a list of frequently asked questions, in Q & A format. For details on the instrument and specific operation instructions, refer to the Owner s Manual. NOTE Availability of certain

More information

Smart Pianist FAQ. Availability of certain functions differs depending on the connected instrument.

Smart Pianist FAQ. Availability of certain functions differs depending on the connected instrument. Smart Pianist FAQ Here is a list of frequently asked questions, in Q & A format. For details on the instrument and specific operation instructions, refer to the Owner s Manual. NOTE Availability of certain

More information

Introduction. Input Format Support

Introduction. Input Format Support Introduction Transcode Multiscreen includes transcoding software specifically designed for adaptive bit rate encoding using both GPUs and CPUs. It simultaneously produces multiple bit-rate variants of

More information

Pro Tools Addendum. Version 6.2 for HD Systems on Windows or Macintosh. Digidesign

Pro Tools Addendum. Version 6.2 for HD Systems on Windows or Macintosh. Digidesign Pro Tools Addendum Version 6.2 for HD Systems on Windows or Macintosh Digidesign 2001 Junipero Serra Boulevard Daly City, CA 94014-3886 USA tel: 650 731 6300 fax: 650 731 6399 Technical Support (USA) tel:

More information

Quality Audio Software Pipeline. Presenters Subhranil Choudhury, Rajendra C Turakani

Quality Audio Software Pipeline. Presenters Subhranil Choudhury, Rajendra C Turakani Quality Audio Software Pipeline Presenters Subhranil Choudhury, Rajendra C Turakani 1 2 Agenda Scope is limited to Audio quality considerations in software audio pipeline Journey of Audio frame in a Multimedia

More information

ESOTERIC HR Audio Player

ESOTERIC HR Audio Player ESOTERIC HR Audio Player Audio playback application for Esoteric D/A converters with USB OWNER S MANUAL Contents Overview...3 Support for high-resolution audio file formats...3 Supported models and operating

More information