Audio-to-MIDI Converter Real-Time Note Detection Software for Electric Guitars

Size: px
Start display at page:

Download "Audio-to-MIDI Converter Real-Time Note Detection Software for Electric Guitars"

Transcription

1 Final Report Audio-to-MIDI Converter Real-Time Note Detection Software for Electric Guitars ECE4007 Senior Design Project Section L04, Team Obama Jon Kump Bryan Tyson Sean Early Andy Burkic Submitted May 6, 2010

2 Table of Contents Executive Summary Introduction Objective Motivation Background The MIDI Protocol MIDI Guitar Pickups Existing Software Products Project Description and Goals Technical Specifications Functional Specifications Interface Specifications Design Approach and Details Design Approach , Codes and Standards Schedule, Tasks, and Milestones Results and Acceptance Testing Budget and Cost Analysis Marketing Analysis Cost Analysis Conclusion and Future Work References Appendix A

3 Executive Summary Musicians and producers are always looking for cheaper and more reliable products to create music. Virtual Studio Technology (VST) is an interface for integrating software plug-ins in host applications that support the VST format, eliminating the need for a pickup to convert the analog audio from an electric guitar to MIDI. The analog-to-midi converter is a VST software plug-in that converts audio to MIDI in real-time to drive a synthesizer or any other MIDI device. The fundamental goal of the audio-to-midi converter is to give the most accurate and realistic representation of the notes played by a guitar. Inside the VST plug-in, an AMDF algorithm analyzes the monophonic input waveform by its pitch to determine which notes have been played. Once a note has been created, it is converted to MIDI instructions and sent to a synthesizer where it can be modified in real-time to the user s preference. This means that the plug-in will only be able to detect one pitch at a time. The latency from the acceptance testing has been determined to be 23.8 ms on average which makes the delay between input and output unnoticeable. Additionally, the note duration was reduced to 190 ms to allow a guitarist to play up to 300 beats per minute. A completed project was provided for $31,357.70, with a total equipment cost of $ and an estimated labor cost of $30,960. To make the product more marketable, the following improvements are suggested: smaller latency, optimized pitch bend, compatibility with other instruments as well as support for non-standard tunings. 3

4 1. Introduction As technology has progressed, the latency to convert an audio signal to MIDI has improved to the point that even guitarists can take advantage of it. Pickups attach to electric guitars and convert the notes being played to MIDI instructions. The converted file can be used to control a synthesizer to produce a sound or be modified as desired. Team Obama has designed a real-time, analog-to-midi converter that changes the audio signal produced by an electric guitar to a MIDI signal without using any hardware. The music industry, especially producers and artists, can now avoid the expense of purchasing pickups for their instruments. The software can also benefit musicians who are looking to add new effects to guitar recordings and live playing. The analog-to-midi converter is a software plug-in for digital audio workstations (DAW) such as Logic, which is a host application that communicates with the sound card of a computer. Labor was the main cost for developing the product since most necessary equipment and software was already available to begin the design. Team Obama is looking to make the product available for purchase for approximately $ Objective Virtual Studio Technology (VST) is an interface for integrating software plug-ins in host applications that support the VST format. It was used to eliminate the need for hardware to convert the analog sound from an electric guitar to MIDI. The audio-to-midi converter is a VST software plug-in that converts the analog signal from an electric guitar to MIDI to drive a synthesizer or any other MIDI device in real-time. 4

5 When a guitar string is struck and the analog audio reaches the sound card, it is converted to waveform audio (.wav). The.wav file is sent to the host application where it can be accessed by the VST software plug-in. Inside the plug-in, an algorithm was implemented to analyze the input waveform by its pitch to determine which notes have been played. Once these notes are created, they are converted to MIDI instructions and sent to a synthesizer where they can be modified in real-time to the user s preference. The texture of the audio is monophonic which means that the plug-in is only able to detect one pitch or note at a time. Only one input and output channel can be used because the guitar produces a mono signal. The latency is an average of 23.8 ms which makes the delay between input and output virtually unnoticeable to the human ear. The VST plug-in can detect the pitch of the entire range of the guitar, which is four octaves. 1.2 Motivation Currently, guitars are recorded through a sound card or an amp. The recording does not give the artist any way to manipulate or edit the sound. MIDI guitar pickups were created, but have become expensive and time consuming. Team Obama s real-time analog-to-midi converter can be used as a recording tool for producers to incorporate a human element to MIDI sequences. With its multiple features, which can be easily accessed through a simple virtual user interface, the musician has more options on modifying or changing the sound output. The plug-in can create an increased dramatic effect for guitarist in live productions by allowing them to edit the sound produced in real-time or later. By eliminating the need for a guitar pickup, customers avoid the cost of hardware but are still able to add human-like effects, such as pitch bending, to the MIDI recordings. 5

6 1.3 Background The MIDI Protocol Musical Instrument Digital Interface, or MIDI, is a protocol that enables electronic musical instruments to exchange system data. Devices such as synthesizers, computers, electric drums, and sound cards have the ability to communicate, synchronize, and control one another [5]. MIDI should not be mistaken for an audio signal; rather, it is a text-based language for computers to control any sound-producing device and vice versa [1]. A MIDI cable sends instructions to a device, such as a keyboard, which in turn generates a particular sound. An advantage to the music industry is the ability to send a keyboard s data to the computer, record it as MIDI events, and then manipulate the composition with software such as Logic. It is easy for keyboards to communicate with computers via MIDI, because each key is a switch for a particular note. Communication becomes much more complex with stringed instruments. Each note must be analyzed, detected, and converted to MIDI, which requires more processing time than with a keyboard [2] MIDI Guitar Pickups The way MIDI operates has not changed since its introduction in the early 1980s. The basic measurements are note on, note off, and velocity. A guitar pickup uses individual sensors for each string to analyze and convert the note being played to MIDI. An algorithm takes the input signal of the guitar and analyzes the spectral components of the note using digital signal processing [3]. Once the note is recognized, it is converted to MIDI and stored on a computer so that it can be modified later by the artist. Guitarists utilize pickups to record their own music and edit it to their liking. Brands such as Axon, Roland, and Fender sell MIDI pickups in the ranges of $100 - $300, but they also offer electric MIDI guitars for several thousands of dollars [4]. 6

7 1.3.3 Existing Software Products Team Obama has eliminated the need for hardware and created a note detection process similar to the MIDI pickup using only software and the soundcard from a computer. The key building blocks are the VST architecture, a pitch recognition algorithm, and a MIDI output in real-time. Celemony s Melodyne studio software is currently available and performs similar functions to a real-time audio-to-midi converter. It sells for $699 compared to another product, Widisoft, which sells for $200 [9]. Widisoft has the ability to convert audio to MIDI in real-time as well; however, it is not widely used [10]. Team Obama s VST plug-in should be able to reduce the price of such software down to $ Project Description and Goals The fundamental goal of the audio-to-midi converter is to give the most accurate and realistic representation of the notes played by a guitar. It allows a user to play a guitar and edit the notes using a MIDI sequencer, giving the musician the ability to both visualize and manipulate the notes being played in real-time. The product was created through a VST software development kit called SynthMaker, which is available online for purchase [6]. The following features are incorporated in the project: Real-time VST software plug-in Pitch recognition by algorithm Output of detected notes as MIDI instructions Real-time control of a synthesizer Low latency for real-time performance Pitch bend Targeted audiences: music producers and artists Target price: $50 7

8 3. Technical Specifications 3.1 Functional Specifications Table 1 lists the functions available to the VST plug-in user. The texture of the audio is monophonic, meaning that the plug-in is only able to detect one pitch at a time. The input sampling rate is 44.1 khz, the standard sampling rate for audio CDs and most audio applications. The plug-in is able to detect the pitch of the entire range of the guitar, which is four octaves. The minimum note duration is 190 ms, allowing the guitarist to play at speeds close to 300 beats per minute. Table 1 Functional Specifications Desired Actual Input Format Analog Analog Output Format MIDI MIDI Sampling Rate 44.1 khz 44.1 khz Texture Monophonic Monophonic Channels 1 1 Latency < 20 ms 23.8 ms Note Range 4 Octaves 4 Octaves Min Note < 200 ms 190 ms Duration Texture Monophonic Monophonic 3.2 Interface Specifications The analog-to-midi converter was written as a VST plug-in to allow the software to be used with any host program that supports the VST format and MIDI events. Table 2 shows the specifications for the VST plug-in interface. 8

9 Table 2 Interface Specifications Format Interface VST Plug-in 3 Buttons 2 Knobs 2 Drop-down Lists 1 Level Meter 1 Reset Button 4. Design Approach and Details 4.1 Design Details An electric guitar is connected to the sound card of a PC and the audio signal is recorded and converted to a.wav file by preexisting software such as Logic. Once the.wav file is created, the audio-to-midi converter uses its pitch detection algorithm to analyze the waveform by its pitch to determine which notes have been played. As the notes are detected, they are converted to MIDI instructions and sent to a synthesizer where they can be modified in real-time, depending on the user s preference. Following below is a description of each control on the interface. Figure 1 shows a screen shot of the GUI created. Pitchbend Button: Enables and disables pitchbend feature Passthrough Button: Enables and disables guitar audio passthrough feature. Allows the raw guitar to be played over the speakers as well as the MIDI controlled synthesizer audio Articulation Button: Changes the articulation mode between legato and staccato Guitar Drop-down List: Allows user to select between guitar and bass guitar Octave Drop-down List: Selects desired octave shift level of the MIDI output Sensitivity Knob: Controls note detection sensitivity Preamp Knob: Adjusts volume level of input signal Reset Button: Sends MIDI silence to reset stuck synthesizer notes 9

10 Figure 1. Guitar2MIDI GUI interfaces. The plug-in was written in VST format. Any driver level interaction with the sound card or MIDI controller is handled by the host program. A top level block diagram of the plug-in is shown in Figure 2. The plug-in goes through four basic steps, outlined below. Figure 2. Design block diagram. After staging the input to the appropriate volume, the first step is to identify the pitch of the note being played. An Average Magnitude Difference Function (AMDF) pitch detection 10

11 algorithm is used to perform that function. AMDF works by delaying the input signal 48 times; one time for each note on the guitar. The delay for each note is equal to one half the period of that note. The original input is then added to each delayed input. The summed signal with the lowest average magnitude will be the matching pitch. After the pitch is detected, note starts and note stops need to be detected. It was performed in two separate ways, depending on the setting of the articulation button. In the first method, changes in pitch were detected to create note start and note stop events, producing a smooth legato sound. The second method uses envelope detection to find when the volume of the note went above and below a sound threshold. This method created a crisp staccato sound. The third phase is to create a MIDI output signal which can be used by the host. Once the start of a note and its pitch are detected, the note start signal will be sent to the MIDI interface, signaling the start of the note at the appropriate pitch. The software will have to detect when the note stops playing and send the note stop signal at the correct time. It is important for the MIDI signal to function in real-time to ensure accurate audio-to-midi conversion. Finally, if the pitchbend feature is enabled, pitchbend information needs to be sent to the MIDI output. Pitchbend is calculated using a method called zero-crossing. Zero-crossing is when a periodic signal crosses the zero line. This method calculates the average time difference between every zero crossing of our input guitar signal. If the average time in decreasing the pitch will start bending up, and if the average time is increasing the pitch will start bending down. This pitchbend information is then sent out along with our MIDI event. 11

12 4.2 Codes and Standards The software is a Virtual Studio Technology (VST) plug-in written using the SynthMaker IDE. By using the VST format, the plug-in can be used with any number of host programs that support the technology, as well as eliminating the need to configure the hardware interfaces specifically for the plug-in [6]. Using the SynthMaker IDE enabled rapid development due to automated completion of common tasks, as well as simplified debugging due to the nature of its graphical programming environment [6] The plug-in will output to a MIDI interface, which is the industry standard for use with electronic instruments. 5. Schedule, Tasks, and Milestones The project is divided into four subgroups for each building block of the project. Each building block is indicated in bold font and serves as the stepping stones towards the final product. The tasks below each milestone are in italics and will be delegated to team members. Table 3 shows the layout and timeline for how the project was designed and implemented. Table 3 Project Schedule, Tasks, and Milestones Task Name Duration Start Date End Date Difficulty Degree Proposal 2/4/2010 2/10/2010 Construct framework 4 days 2/4/2010 2/9/2010 Low Tyson Review with Professor 1 day 2/9/2010 2/9/2010 Low Burkic Turn in Proposal 1 day 2/10/2010 2/10/2010 Milestone Group VST Component 2/10/2010 4/7/2010 Research and upload Software Development Kit 6 days 2/10/2010 2/17/2010 Low Kump Develop algorithm for Pitch detection 36 days 2/17/2010 4/7/2010 High Earley Successfully create and use Pitch Detection 0 days 4/7/2010 4/7/2010 Milestone Group Complete AMDF Algorithm 15 days 2/24/2010 3/16/2010 High Earley Create GUI Interface 31 days 2/24/2010 4/7/2010 Medium Burkic PDR Presentation 3/10/2010 3/16/2010 Construct Framework 4 days 3/10/2010 3/15/2010 Low Tyson Rehearse presentation 2 days 3/15/2010 3/16/2010 Low Burkic Demonstrate presentation 0 days 3/16/2010 3/16/2010 Milestone Group Midi Generation 3/29/2010 4/21/2010 Research various sources for converting Pitch to USB Midi 8 days 3/29/2010 4/7/2010 Medium Burkic Develop process to output Midi note 18 days 3/29/2010 4/21/2010 High Earley Successfully output MIDI note 0 days 4/21/2010 4/21/2010 Milestone Group Add Pitch Bend feature 25 days 3/29/2010 4/23/2010 High Kump Responsible Person Final Presentation 0 days 4/27/2010 4/27/2010 Milestone Group Demonstration 0 days 4/27/2010 4/27/2010 Milestone Group 12

13 At the conclusion of the project, the VST plug-in and AMDF algorithm work in conjunction to create the correct pitch recognition through the analog-to-midi conversion. The AMDF algorithm was created using the program SynthMaker. Table 3 provides a breakdown of the project and each member responsibilities, as well as a degree level indicating the level of difficulty for each task. The design began on February 4 and concluded on April 27 for a demonstration. A Gantt Chart is provided in Appendix A. 6. Results and Acceptance Testing In order to verify the audio-to-midi converter would perform as planned, two criterions were used for acceptance testing. The first criterion describes the amount of time between the note being played by a musician and the note heard through the synthesizer, or latency. This parameter was targeted for 20 ms because at any time larger than 20ms, the human ear would be able to detect a difference when the guitar is played and when it outputs from the synthesizer. In order to measure the latency, the host program was used to measure the audio waveform from the guitar and the synthesizer waveform. The musician would play a note on the guitar, while the host program tracks the wavelength over time. Once the note is passed through the VST to the synthesizer, another waveform would be plotted on the same graph as the original waveform. Both waveforms can be seen on the host program where the difference between the start times for each wave was measured. Figure 3 shows the audio waveform on top and the synthesizer waveform at the bottom. The red lines represent the start time for each waveform and the small boxes at the bottom each measure 20 ms. After taking multiple measurements, the average latency proved to be 23.8 ms. Therefore our percent error was 16%. This clearly did not meet the intended goal of 20 ms, 13

14 Figure 3. Latency measurement using host program however, the delay between the audio wave and synthesizer wave were hardly noticeable. Latency was more than likely to have been halted by the sound card used. By using two sound cards on the computer as opposed to one, the sound would have the ability to travel faster. The second criterion is pitch detection accuracy. Since a musician is attempting to mimic the exact note being played into a MIDI note, it is crucial that the notes being played match up with the correct pitch. The VST should be able to accurately recognize a pitch and then determine the exact note being played. The only measure of acceptance would be if the VST could recognize all notes on a single octave. Therefore as each note is played by a guitarist, the exact match would be emulated on the host program. To test this, Team Obama physically went through each note to verify the host program would recognize it. Figure 4 shows the synthesizer used with the 14

15 keyboard displayed. On the far left, the impressed key represents the note being played by the guitarist. Figure 4. Host program indicating note being played During the demonstration, the user can witness each note emulated on the keyboard of the host program. As the musician plays a note on the guitar, the equivalent would indicate an impression on the same note of the keyboard. While testing, Team Obama found no room for error since all the notes played in two different octaves were accurate. The plug-in was able to generate MIDI notes as the musician played on the guitar. The notes were displayed through the host program and were seen as actual MIDI events. To prove these notes were MIDI events and not simply an audio signal, the user is able to edit and manipulate the note in any way possible. Through the host program, the user can go to the MIDI notes generated and alter the length, change pitch, and arrange the notes in a different manner than the way they were originally played. 15

16 7. Budget and Cost Analysis 7.1 Marketing Analysis Although musicians can mount a MIDI pickup on an electric guitar to convert analog audio to MIDI, it is also possible to perform the same process using only software. By simply installing a VST plug-in to a host application, the user can obtain similar results as with a pickup. Melodyne studio software is a plug-in with the ability to convert monophonic analog audio to MIDI for the real-time control of synthesizers. The software sells for $699, which is too high for rising musicians or producers with small budgets. One VST plug-in on the market is the WIDI Recognition System 4.0 by Widisoft, selling for $199. It also performs a real-time conversion of monophonic audio to MIDI, but the lack of user reviews on the internet questions the credibility of the product. Team Obama s VST plug-in will also be able to convert monophonic analog audio to MIDI in real-time. Its advantage over the competition lies in a realistic, natural, and accurate representation of the notes played by an electric guitar. As another benefit, the product will be available for $50 on the market. 7.2 Cost Analysis The total cost to design the project will be $41, Necessary resources and equipment were purchased for $ with a labor cost of $30,960. Table 4 lists the prices for the items that were obtained using a provided budget of $400. Table 4 Cost Analysis Product Description Quantity Unit Price SynthMaker Standard License [6] 1 Price $ $ C++ Algorithms for Digital Signal Processing Textbook [7] 1 $62.72 $62.72 SoundTech LightSnake Guitar/Keyboard USB 10 ft Cable [8] 2 $39.99 $79.98 Product Cost Total $

17 Labor costs have been estimated to approximately $30 per hour for an entry-level electrical engineering position. Table 5 shows the required labor hours as well as cost for important project components. The labor hours have been estimated to include reports, meetings, and engineering development and implementation time. PROJECT COMPONENT Table 5 Project Cost LABOR HOURS LABOR COST EQUIPMENT COST TOTAL COST Create VST Guitar Tuner 210 $6, $ $6, Design Plug-in Interface 64 $1, $0.00 $1, AMDF Algorithm 260 $7, $62.72 $7, Pitchbend and Features 176 $5, $0.00 $5, Analog-to-MIDI Conversion Output 112 $3, $0.00 $3, Class Lecture/Meetings 210 $6, $0.00 $6, TOTAL LABOR 1032 $30, TOTAL PARTS COST $ PROJECT TOTAL $31, Conclusion and Future Work Team Obama was able to successfully reach all of the initial design goals for the project. AVST software plug-in has been created to convert analog audio from a guitar to MIDI instructions representing the notes that were played. The plug-in is compatible with any digital audio workstation that supports the VST format. A latency of only 23.8 ms ensures real-time audio processing which is necessary to create special effects to the sound without noticing a delay. The design also comes with several features that allow users to modify the way the sound is recorded and heard. 17

18 Although the project was a success, there are still some improvements that could be made to make the product more marketable. Below is a list of recommended changes for the future with brief explanations. Improved Latency: Bring latency below 20 ms for better performance Optimized Pitch Bend: More complex and efficient code necessary Increase Compatibility: Enable program to also function as a stand-alone application without relying on host application Non-standard Tunings: Create support for guitars that are tuned in non-standard conventions Other Instruments: Create support for other stringed instruments 18

19 9. References [1] D. M. Huber, The MIDI Manual: A Practical Guide to MIDI in the Project Studio, 3rd ed. Burlington, NC : Focal Press, [2] M. Schonbrun, What is MIDI? godinguitars.com, Nov. 16, [Online]. Available: [Accessed: Jan. 25, 2010]. [3] P. White, Basic MIDI, Wiltshire, UK: Antony Rowe Limited, [4] J. P. Perry, "MIDI and Music," IEEE Transactions on Musical Instrument Communications, vol. 6, pp , April [5] S. Motoyama, Real Time Communication of Musical Tone Information, U.S. Patent no , Jul [6] SynthMaker, Inc. SynthMaker, [Company Website], [cited 2010 May 5]. Available: [7] Amazon, Inc. Kindle Edition, [Company Website], [cited 2010 Feb 9]. Available: 1&pf_rd_s=lpo-top-stripe-1&pf_rd_t=201&pf_rd_i= &pf_rd_m= ATVPDKIKX0D ER&pf_rd_r=11V83X78N1Y4WF49VDRF. [8] Musician s Friend, Inc , [Company Website], [cited 2010 Feb 8]. Available: Cable?sku=332600&src=3WFRWXX&ZYXSEM=0&CAWELAID= [9] Celemony, Inc. Melodyne Studio, [Company Website], [cited 2010 Feb 10]. Available: [10] Widisoft, Inc. WIDI Recognition System, [Company Website], [cited 2010 Feb 10]. Available: 19

20 APPENDIX A PROJECT GANTT CHART See next page for project Gantt chart 20

21 21

ROCK BAND 3 WIRELESS KEYBOARD:

ROCK BAND 3 WIRELESS KEYBOARD: Music Systems, Inc. ROCK BAND 3 WIRELESS KEYBOARD: MIDI User Guide HMXHW1023 REVISION: 01 Date: 07/16/10 Introduction... 3 What is MIDI?... 3 Features... 3 Getting Started... 4 Control Surface Functions

More information

microgranny 2.0 manual draft

microgranny 2.0 manual draft microgranny 2.0 manual draft Introduction microgranny 2.0 (further only microgranny) is a monophonic granular sampler with MIDI input and 8-bit audio input. It has 6 big buttons, each of which plays a

More information

Keystation Pro 88 Advanced Guide. Contents: 1 Getting Started. 2 Terminology. 3 Performance Operations of the Keystation Pro 88

Keystation Pro 88 Advanced Guide. Contents: 1 Getting Started. 2 Terminology. 3 Performance Operations of the Keystation Pro 88 Keystation Pro 88 Advanced Guide Contents: 1 Getting Started 2 Terminology 3 Performance Operations of the Keystation Pro 88 Sending Program Changes During Performance Sending Bank Changes During Performance

More information

Little LFO. Little LFO. User Manual. by Little IO Co.

Little LFO. Little LFO. User Manual. by Little IO Co. 1 Little LFO User Manual Little LFO by Little IO Co. 2 Contents Overview Oscillator Status Switch Status Light Oscillator Label Volume and Envelope Volume Envelope Attack (ATT) Decay (DEC) Sustain (SUS)

More information

GETTING STARTED WITH STUDIO ONE ARTIST

GETTING STARTED WITH STUDIO ONE ARTIST GETTING STARTED WITH STUDIO ONE ARTIST 2009, PreSonus Audio Electronics, Inc. All Rights Reserved. TABLE OF CONTENTS Studio One Artist Features...3 System Requirements...4 Installation and Authorization...5

More information

GSnap Manual. Welcome to GSnap. Installation. Hints

GSnap Manual. Welcome to GSnap. Installation. Hints GSnap Manual Welcome to GSnap GSnap is an auto-tune effect. It can be used subtly to correct the pitch of a vocal, or, with more extreme settings, to create a robot-voice effect. It requires a monophonic

More information

Midi Workshop. SAWStudio. From RML Labs. To order this product, or download a free demo, visit www.sawstudio.com

Midi Workshop. SAWStudio. From RML Labs. To order this product, or download a free demo, visit www.sawstudio.com SAWStudio Midi Workshop From RML Labs Welcome to the exciting new Midi WorkShop add-on for SAWStudio! The Midi WorkShop requires SAWStudio, SAWStudioLite, or SAWStudioBasic as a host. The Midi WorkShop

More information

Evolution USB Keyboards. 249/361 USB MIDI Controller Keyboard

Evolution USB Keyboards. 249/361 USB MIDI Controller Keyboard Evolution USB Keyboards 249/361 USB MIDI Controller Keyboard 225C/249C/361C USB MIDI Controller Keyboard with additional programmable rotary controllers WWW.EVOLUTION.CO.UK EVOLUTION 249/361/225C/249C/361C

More information

Soundcraft Signature MTK Recording Guide

Soundcraft Signature MTK Recording Guide Soundcraft Signature MTK Recording Guide S O U N D C R A F T S I G N AT U R E M T K R E C O R D I N G G U I D E 2 Table of Contents USB Overview... 04 Installing the Drivers (PC Only)... 04 Finding the

More information

DIGITAL MUSIC DAY 1 WHAT IS SOUND? ANALOG AND DIGITAL EARLY RECORDING WAX FOR YOUR EARS ROUND BUT FLAT WIRE AND TAPE PURE SOUND

DIGITAL MUSIC DAY 1 WHAT IS SOUND? ANALOG AND DIGITAL EARLY RECORDING WAX FOR YOUR EARS ROUND BUT FLAT WIRE AND TAPE PURE SOUND DIGITAL MUSIC DAY 1 WHAT IS SOUND? 1. Making a sound playing a musical instrument, moves the surrounding the instrument. 2. Making a sound sends out air which hit your ears. 3. Waves of changing air pressure

More information

MIDIKeyz User Manual (Build 1.0) MIDIKeyz is under the umbrella of MIDIculous. All rights reserved 2009

MIDIKeyz User Manual (Build 1.0) MIDIKeyz is under the umbrella of MIDIculous. All rights reserved 2009 MIDIKeyz User Manual (Build 1.0) MIDIKeyz is under the umbrella of MIDIculous. All rights reserved 2009 Overview Thank you for purchasing one of the most dynamic virtual MIDI keyboard programs ever created.

More information

BOOM 808 Percussion Synth

BOOM 808 Percussion Synth BOOM 808 Percussion Synth BOOM 808 is a percussion and bass synthesizer inspired by the legendary Roland TR-808 drum machine, originally created by Roland Corporation. For over 30 years, the sounds of

More information

Mbox Basics Guide. Version 6.7 for LE Systems on Windows XP or Mac OS X. Digidesign

Mbox Basics Guide. Version 6.7 for LE Systems on Windows XP or Mac OS X. Digidesign Mbox Basics Guide Version 6.7 for LE Systems on Windows XP or Mac OS X Digidesign 2001 Junipero Serra Boulevard Daly City, CA 94014-3886 USA tel: 650 731 6300 fax: 650 731 6399 Technical Support (USA)

More information

The Waves Dorrough Meter Collection. User Guide

The Waves Dorrough Meter Collection. User Guide TABLE OF CONTENTS CHAPTER 1 INTRODUCTION...3 1.1 WELCOME...3 1.2 PRODUCT OVERVIEW...3 1.3 ABOUT THE MODELING...4 1.4 MONO AND STEREO COMPONENTS...4 1.5 SURROUND COMPONENTS...4 CHAPTER 2 QUICKSTART GUIDE...5

More information

Digital Audio Workstations

Digital Audio Workstations Digital Audio Workstations As personal computers evolved, their ability to perform the necessary amount of data storage and transfer to allow real-time data acquisition made them an attractive platform

More information

Music technology. Draft GCE A level and AS subject content

Music technology. Draft GCE A level and AS subject content Music technology Draft GCE A level and AS subject content July 2015 Contents The content for music technology AS and A level 3 Introduction 3 Aims and objectives 3 Subject content 4 Recording and production

More information

Audacity 1.2.4 Sound Editing Software

Audacity 1.2.4 Sound Editing Software Audacity 1.2.4 Sound Editing Software Developed by Paul Waite Davis School District This is not an official training handout of the Educational Technology Center, Davis School District Possibilities...

More information

AUDIO INTERFACE MANUAL

AUDIO INTERFACE MANUAL AUDIO INTERFACE MANUAL ZOOM Corporation Reproduction of this manual, in whole or in part, by any means, is prohibited. Contents Contents 2 Audio interface and control surface 4 Cubase LE Installation overview

More information

Message from the Development Team. Contents. Message from the Development Team..2. Panel Controls and Terminals...3. Using the UR22mkII...

Message from the Development Team. Contents. Message from the Development Team..2. Panel Controls and Terminals...3. Using the UR22mkII... EN Contents Contents Message from the Development Team..2 Panel Controls and Terminals...3 Front Panel...3 Rear Panel...5 Software...7 Using the UR22mkII...10 Connections...10 Configuring Audio Driver

More information

y POWER USER MUSIC PRODUCTION and PERFORMANCE With the S90XS/S70XS

y POWER USER MUSIC PRODUCTION and PERFORMANCE With the S90XS/S70XS y POWER USER MUSIC PRODUCTION and PERFORMANCE With the S90XS/S70XS USB-MIDI QUICK SETUP GUIDE Windows: Cubase AI with STUDIO MANAGER and The S90 XS / S70 XS Editor Phil Clendeninn Senior Technical Sales

More information

GETTING STARTED GUIDE

GETTING STARTED GUIDE GETTING STARTED GUIDE CONTENTS Introduction... 1 Impulse Features... 2 Box Contents... 2 About this Guide... 2 Minimum System Requirements... 2 Connecting the Impulse... 3 Impulse Basic Operation... 3

More information

WAVES. MultiRack SETUP GUIDE V9.80

WAVES. MultiRack SETUP GUIDE V9.80 WAVES MultiRack SETUP GUIDE V9.80 1 Table of Contents 1. Overview... 3 2. Basic Requirements... 3 3. Software... 4 4. Required Waves Licenses... 4 5. Installing MultiRack... 5 6. MultiRack Native... 6

More information

QUICK SETUP GUIDE: USB-MIDI Cubase AI4 / Motif XS Editor / Windows

QUICK SETUP GUIDE: USB-MIDI Cubase AI4 / Motif XS Editor / Windows QUICK SETUP GUIDE: USB-MIDI Cubase AI4 / Motif XS Editor / Windows Install _ Install Cubase AI4 on your computer. Update to the latest version at www.steinberg.net Download and Install _ The Motif XS Operating

More information

MIDI Setup with TonePort UX2 and KB37

MIDI Setup with TonePort UX2 and KB37 MIDI Setup with TonePort UX2 and KB37 Table of Contents FOOTSWITCH CONNECTIONS... 2 TONEPORT KB37 CONTROLLER LAYOUT... 3 TONEPORT KB37 DEFAULT MESSAGES... 4 Default message map for GearBox 3.0... 4 Default

More information

SAMPLIT U S E R M A N U A L

SAMPLIT U S E R M A N U A L SAMPLIT U S E R M A N U A L Table of Contents 1 Welcome to Samplit 2 2 Quick start 4 3 Project 7 4 Typical session 8 5 Project settings 9 6 Main window 11 7 MIDI recall 14 8 Recording 15 9 Looping 17 10

More information

Basics. Mbox 2. Version 7.0

Basics. Mbox 2. Version 7.0 Basics Mbox 2 Version 7.0 Copyright 2005 Digidesign, a division of Avid Technology, Inc. All rights reserved. This guide may not be duplicated in whole or in part without the express written consent of

More information

COPYRIGHT AND LEGAL NOTICES. Trademarks. Disclaimer. English

COPYRIGHT AND LEGAL NOTICES. Trademarks. Disclaimer. English Novation A division of Focusrite Audio Engineering Ltd. Windsor House, Turnpike Road, Cressex Business Park, High Wycombe, Bucks, HP12 3FX. United Kingdom Tel: +44 1494 462246 Fax: +44 1494 459920 e-mail:

More information

The Sonometer The Resonant String and Timbre Change after plucking

The Sonometer The Resonant String and Timbre Change after plucking The Sonometer The Resonant String and Timbre Change after plucking EQUIPMENT Pasco sonometers (pick up 5 from teaching lab) and 5 kits to go with them BK Precision function generators and Tenma oscilloscopes

More information

How to Start Making Music in Pro Tools

How to Start Making Music in Pro Tools How to Start Making Music in Pro Tools Read this guide if you are new to Pro Tools or are just starting out making your own music. Inside, you ll find quick examples of how to record, compose, mix, and

More information

QUICK SETUP GUIDE: Firewire/mLAN Windows Cubase AI4 / Studio Manager / Motif XS Editor / Windows

QUICK SETUP GUIDE: Firewire/mLAN Windows Cubase AI4 / Studio Manager / Motif XS Editor / Windows QUICK SETUP GUIDE: Firewire/mLAN Windows Cubase AI4 / Studio Manager / Motif XS Editor / Windows Install _ Install Cubase AI4 on your computer. Update to the latest version at www.steinberg.net Download

More information

VirtualDJ 8 Numark IDJLIVE II 1

VirtualDJ 8 Numark IDJLIVE II 1 VirtualDJ 8 Numark IDJLIVE II 1 Table of Contents Installation... 3 Firmware & Drivers... 3 VirtualDJ 8 Setup... 3 Advanced Setup... 4 Operation... 5 Tailored skin... 7 Advanced Audio Setup... 8 Using

More information

Introduction. Pedagogical Implications. Why use

Introduction. Pedagogical Implications. Why use Comparison of Online Music Assessment Software Daniel R. Zanutto--California State University, Long Beach CMEA 2007 Conference, Ontario, CA 10:30-11:00, Salon 4 Introduction When the national standards

More information

USB AUDIO INTERFACE. UR22 Operation Manual 1

USB AUDIO INTERFACE. UR22 Operation Manual 1 USB AUDIO INTERFACE EN DE FR ES IT ZH JA UR22 Operation Manual 1 Contents Contents Contents...2 A Message From the Development Team...3 Accessory disk...3 Power supply...3 Cubase AI Download...3 How to

More information

USER GUIDE ENGLISH ( 3 6 )

USER GUIDE ENGLISH ( 3 6 ) USER GUIDE ENGLISH ( 3 6 ) GUÍA DEL USUARIO ESPAÑOL ( 7 10 ) GUIDE D'UTILISATION FRANÇAIS ( 11 14 ) GUIDA PER L'USO ITALIANO ( 15 18 ) BENUTZERHANDBUCH DEUTSCH ( 19 22 ) USER GUIDE (ENGLISH) Box Contents

More information

Tutorial Use Ableton Live for a live set

Tutorial Use Ableton Live for a live set Intellinoise Studio Intelligent Audio Conception www.intellinoise.com www.electrypnose.com Tutorial Use Ableton Live for a live set Material needed : - Ableton Live - Some finished tracks 1. Introduction

More information

Congratulations on purchasing Molten MIDI B by Molten Voltage

Congratulations on purchasing Molten MIDI B by Molten Voltage OWNER S MANUAL Congratulations on purchasing Molten MIDI B by Molten Voltage Molten MIDI B is designed to control the Digitech Bass Whammy. When configured for Whammy & Clock output, Molten MIDI B also

More information

Legal Notices. Guide Part Number 9329-65008-00 REV A 2/10

Legal Notices. Guide Part Number 9329-65008-00 REV A 2/10 Legal Notices This guide is copyrighted 2010 by Avid Technology, Inc., with all rights reserved. Under copyright laws, this guide may not be duplicated in whole or in part without the written consent of

More information

Cubase Vs Logic Pro - Music Composition

Cubase Vs Logic Pro - Music Composition , pp. 39-48 http://dx.doi.org/10.14257/ijseia.2016.10.3.04 Integrating the Computer Systems and Applied Music Education - Focus on Sequencing Program- Tae-Seon Cho Dept. of Applied Music, Chungwoon University

More information

EnerVista TM Viewpoint Monitoring v7.10

EnerVista TM Viewpoint Monitoring v7.10 EnerVista TM Viewpoint Monitoring v7.10 Guideform Specifications July 7, 2014 Page 1 of 14 1 - Product Overview 1.1 Viewpoint Monitoring Scope EnerVista Viewpoint Monitoring is an easy to setup, powerful

More information

Live Recording with M7CL-48ES & AuviTran Network ASIO Streamer. Using Steinberg Cubase 5 or Nuendo 5.

Live Recording with M7CL-48ES & AuviTran Network ASIO Streamer. Using Steinberg Cubase 5 or Nuendo 5. & AuviTran Network ASIO Streamer Using Steinberg Cubase 5 or Nuendo 5. Summary: This guide shows how quick and easy it is to achieve a high quality, live multitrack recording using Yamaha M7CL-48ES, stage-boxes

More information

Doppler Effect Plug-in in Music Production and Engineering

Doppler Effect Plug-in in Music Production and Engineering , pp.287-292 http://dx.doi.org/10.14257/ijmue.2014.9.8.26 Doppler Effect Plug-in in Music Production and Engineering Yoemun Yun Department of Applied Music, Chungwoon University San 29, Namjang-ri, Hongseong,

More information

Controllable Space Phaser. User Manual

Controllable Space Phaser. User Manual Controllable Space Phaser User Manual Overview Overview Fazortan is a phasing effect unit with two controlling LFOs. 1 Fazortan graphical interface We can distinguish two sections there: Configuration

More information

USER GUIDE Version 2.0

USER GUIDE Version 2.0 USER GUIDE Version 2.0 TABLE of CONTENTS Introduction... 3 Hardware Overview... 3 Software Overview... 4 DAYSHIFT Panel... 5 Settings Panel... 6 Setup Tab... 6 Configure... 6 Show User Guide... 6 Preview

More information

MIDImplant micro MIDI-2-CV device version 3.8

MIDImplant micro MIDI-2-CV device version 3.8 MIDImplant micro MIDI-2-CV device version 3.8 USER MANUAL Roman Sowa 2015 www.midimplant.com 1. Overview Thank you for choosing MIDImplant as your new MIDI2CV converter. This short manual will guide you

More information

UMI3 Parametric USB MIDI Foot Controller. User s Manual

UMI3 Parametric USB MIDI Foot Controller. User s Manual UMI3 Parametric USB MIDI Foot Controller User s Manual Table of Contents Table of Contents...2 Document revisions...3 Introduction...3 1. Hardware...4 1.1. USB Connection...4 1.2. Connecting an expression

More information

USER GUIDE ENGLISH ( 3 6 )

USER GUIDE ENGLISH ( 3 6 ) USER GUIDE ENGLISH ( 3 6 ) GUÍA DEL USUARIO ESPAÑOL ( 7 10 ) GUIDE D'UTILISATION FRANÇAIS ( 11 14 ) GUIDA PER L'USO ITALIANO ( 15 18 ) BENUTZERHANDBUCH DEUTSCH ( 19 22 ) USER GUIDE (ENGLISH) Box Contents

More information

OPERATOR'S MANUAL ENGLISH ( 1-28 ) WWW.AKAIPRO.COM

OPERATOR'S MANUAL ENGLISH ( 1-28 ) WWW.AKAIPRO.COM OPERATOR'S MANUAL ENGLISH ( 1-28 ) WWW.AKAIPRO.COM KEY FEATURES 16 pressure and velocity-sensitive MPC pads with four banks each MPC technologies include Note Repeat, Swing, 16 Level, Full Level, and

More information

Preservation Handbook

Preservation Handbook Preservation Handbook Digital Audio Author Gareth Knight & John McHugh Version 1 Date 25 July 2005 Change History Page 1 of 8 Definition Sound in its original state is a series of air vibrations (compressions

More information

Professional 24-bit USB Audio Interface. User s Guide

Professional 24-bit USB Audio Interface. User s Guide Professional 24-bit USB Audio Interface User s Guide - Copyright 2016 Revision 1, January 2016 www.esi-audio.com INDEX 1. Introduction... 4 1.1 Features... 4 2. Installation... 5 2.1 System Recommendation...

More information

Supplemental Notes May 20, 1995 SN09 V1.0

Supplemental Notes May 20, 1995 SN09 V1.0 Supplemental Notes May 20, 1995 SN09 V1.0 Sequencing with the JV-90 and the VE-Series Voice Expanders The JV- 90 is an 8 part multitimbral synthesizer with 320 Patches, 80 Performances, and 5 Rhythm Sets

More information

City of Dublin Education & Training Board. Programme Module for. Music Technology. Leading to. Level 5 FETAC. Music Technology 5N1640

City of Dublin Education & Training Board. Programme Module for. Music Technology. Leading to. Level 5 FETAC. Music Technology 5N1640 City of Dublin Education & Training Board Programme Module for Music Technology Leading to Level 5 FETAC Music Technology 5N1640 Music Technology 5N1640 1 Introduction This programme module may be delivered

More information

FREQUENCY RESPONSE OF AN AUDIO AMPLIFIER

FREQUENCY RESPONSE OF AN AUDIO AMPLIFIER 2014 Amplifier - 1 FREQUENCY RESPONSE OF AN AUDIO AMPLIFIER The objectives of this experiment are: To understand the concept of HI-FI audio equipment To generate a frequency response curve for an audio

More information

Transmitter Interface Program

Transmitter Interface Program Transmitter Interface Program Operational Manual Version 3.0.4 1 Overview The transmitter interface software allows you to adjust configuration settings of your Max solid state transmitters. The following

More information

1. Introduction. doepfer System A - 100 MIDI-CV/SYNC Interface A-190

1. Introduction. doepfer System A - 100 MIDI-CV/SYNC Interface A-190 doepfer System A - 100 MIDI-CV/SYNC Interface A-190 1. Introduction A To install the A-190 please look at the important information on p. 4! The A-190 is a MIDI-CV/SYNC Interface, with which you can control

More information

DTX400K DTX430K DTX450K

DTX400K DTX430K DTX450K ELECTRONIC DRUM KIT DTX400K DTX430K DTX450K MIDI Reference How to Use This Manual This MIDI Reference will prove useful when transferring MIDI data between the drum module that came with your DTX400K,

More information

Tempest Manual Addendum

Tempest Manual Addendum Tempest Manual Addendum OS Version 1.1 This document details changes and additions to Tempest s operating system that are not in the Tempest Operation Manual. Manual Errata Assignment of an expression

More information

Ovation Operator Workstation for Microsoft Windows Operating System Data Sheet

Ovation Operator Workstation for Microsoft Windows Operating System Data Sheet Ovation Operator Workstation for Microsoft Windows Operating System Features Delivers full multi-tasking operation Accesses up to 200,000 dynamic points Secure standard operating desktop environment Intuitive

More information

Editor / Plug-In Editor Manual

Editor / Plug-In Editor Manual Editor / Plug-In Editor Manual E 3 Table of Contents Introduction................................................. Main features...................................................................... Please

More information

Features, Benefits, and Operation

Features, Benefits, and Operation Features, Benefits, and Operation 2014 Decibel Eleven Contents Introduction... 2 Features... 2 Rear Panel... 3 Connections... 3 Power... 3 MIDI... 3 Pedal Loops... 4 Example Connection Diagrams... 5,6

More information

User Guide FFFA001106. www.focusrite.com

User Guide FFFA001106. www.focusrite.com User Guide FFFA001106 www.focusrite.com TABLE OF CONTENTS OVERVIEW.... 3 Introduction...3 Features.................................................................... 3 Box Contents...3 System Requirements....4

More information

Concepts for the MIDI Composer, Arranger, and Orchestrator

Concepts for the MIDI Composer, Arranger, and Orchestrator CH01-K52021.qxd 7/30/07 7:19 PM Page 1 1 Basic Concepts for the MIDI Composer, Arranger, and Orchestrator 1.1 Introduction to MIDI and audio sequencing If you are reading these pages you probably already

More information

GAME SYSTEM MANUAL PITTSBURGH MODULAR SYNTHESIZERS

GAME SYSTEM MANUAL PITTSBURGH MODULAR SYNTHESIZERS GAME SYSTEM MANUAL PITTSBURGH MODULAR SYNTHESIZERS Chaotic and CV Sequencing Arcade Packed with six unique multi-mode sequencers and a fully voltage controllable user interface, the Game System is deep!

More information

Co-designed by TASCAM and

Co-designed by TASCAM and Page 1 of 6 FW-1884 Control Surface and Audio/MIDI Interface Up to 18 simultaneous inputs Comprehensive mixing, automation, editing and navigation tools for DAWs Eight 100mm motorized touchsensitive channel

More information

Digitizing Sound Files

Digitizing Sound Files Digitizing Sound Files Introduction Sound is one of the major elements of multimedia. Adding appropriate sound can make multimedia or web page powerful. For example, linking text or image with sound in

More information

AN-007 APPLICATION NOTE MEASURING MAXIMUM SUBWOOFER OUTPUT ACCORDING ANSI/CEA-2010 STANDARD INTRODUCTION CEA-2010 (ANSI) TEST PROCEDURE

AN-007 APPLICATION NOTE MEASURING MAXIMUM SUBWOOFER OUTPUT ACCORDING ANSI/CEA-2010 STANDARD INTRODUCTION CEA-2010 (ANSI) TEST PROCEDURE AUDIOMATICA AN-007 APPLICATION NOTE MEASURING MAXIMUM SUBWOOFER OUTPUT ACCORDING ANSI/CEA-2010 STANDARD by Daniele Ponteggia - dp@audiomatica.com INTRODUCTION The Consumer Electronics Association (CEA),

More information

AALTO QUICKSTART version 1.0

AALTO QUICKSTART version 1.0 AALTO QUICKSTART version 1.0 Welcome to Aalto! This quickstart guide assumes that you are familiar with using softsynths in your DAW or other host program of choice. It explains how Aalto's dial objects

More information

US-122L/US-144 Release Notes

US-122L/US-144 Release Notes US-122L/US-144 Release Notes Updates Always ensure that you are running the latest driver software and US-122L or US-144 firmware by visiting TASCAM s web site (http://www.tascam.com). Important Notice

More information

Teaching Fourier Analysis and Wave Physics with the Bass Guitar

Teaching Fourier Analysis and Wave Physics with the Bass Guitar Teaching Fourier Analysis and Wave Physics with the Bass Guitar Michael Courtney Department of Chemistry and Physics, Western Carolina University Norm Althausen Lorain County Community College This article

More information

Downloadable Sounds Level 1

Downloadable Sounds Level 1 Downloadable Sounds Level 1 Version 1.1b September 2004 Published By: The MIDI Manufacturers Association Los Angeles, CA PREFACE This document and the underlying specification is the result of extensive

More information

The IRCAM Musical Workstation: A Prototyping and Production Tool for Real-Time Computer Music

The IRCAM Musical Workstation: A Prototyping and Production Tool for Real-Time Computer Music The IRCAM Musical Workstation: A Prototyping and Production Tool for Real-Time Computer Music Cort Lippe, Zack Settel, Miller Puckette and Eric Lindemann IRCAM, 31 Rue St. Merri, 75004 Paris, France During

More information

Raritan Valley Community College Academic Course Outline MUSC 190 - DIGITAL MUSIC COMPOSITION I

Raritan Valley Community College Academic Course Outline MUSC 190 - DIGITAL MUSIC COMPOSITION I Raritan Valley Community College Academic Course Outline I. Basic Course Information MUSC 190 - DIGITAL MUSIC COMPOSITION I A. Course Number and Title: MUSC 190: DIGITAL MUSIC COMPOSITION I B. New or Modified

More information

Since the explanations use actual screen shots, potentially complicated setting screens are made easy!

Since the explanations use actual screen shots, potentially complicated setting screens are made easy! VariOS Tips Do you want to have the VariOS play a much greater role in the music production process? Do you want to use the VariOS with your sequencer, such as SONAR or Logic? If so, you need to read these

More information

Table of contents. Quick Start... 1. Basic operation... 4. Creating your own sounds...12. Items in the screen... 6. Performing...

Table of contents. Quick Start... 1. Basic operation... 4. Creating your own sounds...12. Items in the screen... 6. Performing... 1 Table of contents ii Quick Start... 1 Step 1 Listen to the sound of the effect programs...1 Step 2 Play back a song and cancel the guitar part...2 Step 3 Perform along with the song...3 Basic operation...

More information

E.L.A.P.S.: Studies in Improvised Electronics By Peter van Haaften. Project documentation is current as of November 18, 2014.

E.L.A.P.S.: Studies in Improvised Electronics By Peter van Haaften. Project documentation is current as of November 18, 2014. E.L.A.P.S.: Studies in Improvised Electronics By Peter van Haaften Project documentation is current as of November 18, 2014. The following paper will serve to document the on-going development of an expressive

More information

Programmer s Reference

Programmer s Reference Programmer s Reference 1 Introduction This manual describes Launchpad s MIDI communication format. This is all the proprietary information you need to be able to write patches and applications that are

More information

ELAD FDM-SW1 USER MANUAL. Ver. 1.0

ELAD FDM-SW1 USER MANUAL. Ver. 1.0 ELAD FDM-SW1 USER MANUAL Ver. 1.0 Index 1 FDM-SW1 Overview... 4 2 Graphical User Interface (GUI)... 5 2.1 Display Window... 6 2.1.1 Filter Spectrum... 6 2.1.2 Click Options... 7 2.1.3 Graphics Settings...

More information

www.fishman.com USER GUIDE TRIPLEPLAY 1

www.fishman.com USER GUIDE TRIPLEPLAY 1 www.fishman.com USER GUIDE TRIPLEPLAY 1 Table of Contents Welcome Page 3 System Requirements Page 3 What is TriplePlay Page 3 What s Included Page 3 In a Hurry? Basic MIDI Controller Mode Page 3 TriplePlay

More information

Final Report. Hybrid Synth by Synthesize Me. Members: Jamie Madaris Jack Nanney

Final Report. Hybrid Synth by Synthesize Me. Members: Jamie Madaris Jack Nanney Final Report Hybrid Synth by Synthesize Me Members: Jamie Madaris Jack Nanney Project Abstract Our Senior Design project is a Digitally-Controlled Analog Synthesizer. The synthesizer consists of both digital

More information

Project Time Management

Project Time Management Project Time Management Plan Schedule Management is the process of establishing the policies, procedures, and documentation for planning, developing, managing, executing, and controlling the project schedule.

More information

PRIMER ON PC AUDIO. Introduction to PC-Based Audio

PRIMER ON PC AUDIO. Introduction to PC-Based Audio PRIMER ON PC AUDIO This document provides an introduction to various issues associated with PC-based audio technology. Topics include the following: Introduction to PC-Based Audio Introduction to Audio

More information

TerraTec Electronic GmbH, Herrenpfad 38, D-41334 Nettetal, Germany

TerraTec Electronic GmbH, Herrenpfad 38, D-41334 Nettetal, Germany TERRATEC PRODUCER/SINE MB 33 II English Manual Version 1.0, last revised: November 2003 CE Declaration We: TerraTec Electronic GmbH, Herrenpfad 38, D-41334 Nettetal, Germany hereby declare that the product:

More information

The diagram below illustrates the steps from stored music to audio device; key elements of the audio chain are discussed later in this guide.

The diagram below illustrates the steps from stored music to audio device; key elements of the audio chain are discussed later in this guide. USB Audio Guide We realise that most audiophiles are not computer experts and will not have access to the advanced and expensive test equipment we use during product development. So, with this guide, we

More information

Table Of Contents. Introduction 5. Connections 7. Basic Operations 9. Editing Programs 21. Programming Velocity Sensitivity 25

Table Of Contents. Introduction 5. Connections 7. Basic Operations 9. Editing Programs 21. Programming Velocity Sensitivity 25 Table Of Contents Page 1 Table Of Contents Introduction 5 Welcome!............................................................................. 5 About This Manual......................................................................

More information

Networked Music Performance(NMP)

Networked Music Performance(NMP) Networked Music Performance(NMP) Xiaoyuan Gu, Matthias Dick, Ulf Noyer and Lars Wolf Institute of Operating Systems & Computer Networks Technical University Braunschweig Networked Music Performance Xiaoyuan

More information

MainStage 3 User Guide. For OS X

MainStage 3 User Guide. For OS X MainStage 3 User Guide For OS X KKApple Inc. Copyright 2013 Apple Inc. All rights reserved. Your rights to the software are governed by the accompanying software license agreement. The owner or authorized

More information

Software Sequencing Basics

Software Sequencing Basics October 12, 1998 software sequencing basics Software Sequencing Basics Supplemental Notes Roland gear is often used in conjunction with a variety of software sequencer programs. The purpose of this document

More information

SYSTEM MIX PLUS. Owner's Manual DIGITAL MUSIC CORPORATION

SYSTEM MIX PLUS. Owner's Manual DIGITAL MUSIC CORPORATION SYSTEM MIX PLUS Owner's Manual 1 Table of Contents 1. Introduction.................. 2 1.1 Overview 1.2 Unpacking 2. Operation................... 3 2.1 Front Panel 2.2 Rear Panel 3. Mixer.....................

More information

Lab 4 - Data Acquisition

Lab 4 - Data Acquisition Spring 11 Lab 4 - Data Acquisition Lab 4-1 Lab 4 - Data Acquisition Format This lab will be conducted during your regularly scheduled lab time in a group format. Each student is responsible for learning

More information

Document authored by: Native Instruments GmbH GUITAR RIG software version: 5.0 (07/2011) Controller version: 3

Document authored by: Native Instruments GmbH GUITAR RIG software version: 5.0 (07/2011) Controller version: 3 Manual Disclaimer The information in this document is subject to change without notice and does not represent a commitment on the part of Native Instruments GmbH. The software described by this document

More information

Radio Interface Setup

Radio Interface Setup For getting started with Ham Radio Sound Card digital modes. Jeffrey Kopcak K8JTK Table of Contents Introduction... 3 Program versions... 3 Resources... 3 SignaLink... 3 Rigblaster... 3 Configuration...

More information

Designing a Graphical User Interface

Designing a Graphical User Interface Designing a Graphical User Interface 1 Designing a Graphical User Interface James Hunter Michigan State University ECE 480 Design Team 6 5 April 2013 Summary The purpose of this application note is to

More information

Using the US-122 with GigaStudio and Cubasis

Using the US-122 with GigaStudio and Cubasis Using the US-122 with GigaStudio and Cubasis To use the US-122 with the supplied GigaStudio 24 and Cubasis applications together on Windows, you will need to carry out the following steps after installing

More information

Acoustics for Musicians

Acoustics for Musicians Unit 1: Acoustics for Musicians Unit code: QCF Level 3: Credit value: 10 Guided learning hours: 60 Aim and purpose J/600/6878 BTEC National The aim of this unit is to establish knowledge of acoustic principles

More information

DENON DJ Music Manager

DENON DJ Music Manager DENON DJ Music Manager DENON DJ Music Manager has the functions described below Creation and updating of databases Playback function Editing of file data Searching for files Creation and updating of playlists

More information

City of Dublin Education & Training Board. Programme Module for. Audio Engineering. Leading to. Level 5 FETAC. Audio Engineering 5N1564

City of Dublin Education & Training Board. Programme Module for. Audio Engineering. Leading to. Level 5 FETAC. Audio Engineering 5N1564 City of Dublin Education & Training Board Programme Module for Audio Engineering Leading to Level 5 FETAC May 202/June 202 Introduction This programme module may be delivered as a standalone module leading

More information

Detailed user guide for Audacity

Detailed user guide for Audacity Bruno Bossis Friday, 22 August 2003 UNESCO/DigiArts MINT/Paris4-Sorbonne Detailed user guide for Audacity 1. General presentation Name: Audacity Categories : Recording Audio editing Audio processing Sequence

More information

Call Recorder Oygo Manual. Version 1.001.11

Call Recorder Oygo Manual. Version 1.001.11 Call Recorder Oygo Manual Version 1.001.11 Contents 1 Introduction...4 2 Getting started...5 2.1 Hardware installation...5 2.2 Software installation...6 2.2.1 Software configuration... 7 3 Options menu...8

More information

MV-8800 Production Studio

MV-8800 Production Studio ÂØÒňΠWorkshop MV-8800 Production Studio Using the MV-8800 with an External Sequencer 2007 Roland Corporation U.S. All rights reserved. No part of this publication may be reproduced in any form without

More information

AP1 Waves. (A) frequency (B) wavelength (C) speed (D) intensity. Answer: (A) and (D) frequency and intensity.

AP1 Waves. (A) frequency (B) wavelength (C) speed (D) intensity. Answer: (A) and (D) frequency and intensity. 1. A fire truck is moving at a fairly high speed, with its siren emitting sound at a specific pitch. As the fire truck recedes from you which of the following characteristics of the sound wave from the

More information

High Quality Podcast Recording

High Quality Podcast Recording High Quality Podcast Recording Version 1.2, August 25, 2013 Markus Völter (voelter@acm.org) Abstract A good podcast comes with great content as well as great audio quality. Audio quality is as important

More information