for accordion and electronics Bryan Eubanks, 2011/2012

Size: px
Start display at page:

Download "for accordion and electronics Bryan Eubanks, 2011/2012"

Transcription

1 Bryan Eubanks, 2011/2012

2 one loudspeaker, two microphones, computer generated sound, and accordion duration: 20 to 45 minutes to be performed in any space, indoors or outdoors bryan eubanks, 2011/2012

3 instructions the live electronics for this piece are a generative computer program that is a stand alone application, included in the download of this score, which will run on OSX only. It works like any other application and is reccommended for ease of use when realizing this piece. a plain text file is included which can used on other operating systems in conjunction with the supercollider audio software (available for free online). electronics play from a single speaker, adding a subwoofer if possible, located near the accordion player. a pair of microphones, connected to the audio input of the computer, are to be placed near, or in between, the accordion and speakers, or they can be seperated somewhere in the space of performance in order to record the interaction of the accordion and the cross-filtering oscillators in the environment. the output and input volumes should be set carefully, but will need to be adjusted sensitive to the site of performance. the speaker output should be set so that it is neither dominating the space nor masked by any present ambient sound. the microhpone input level should be set carefully to capture a strong signal with a low noise content, but keep in mind that the microphones continually record onto a short loop so over the course of 17 repetitions the amplitude will increase. in any event a low level generally suffices, depending on where the microhones are placed. care should be taken to eliminate any chance of feedback between the microphones and loudspeaker by muting the speaker output of the microphone input channels on the device being used for recording and playback. the layered chord that results from this recording process should be at a level that sits in the room at about the same levelthat the live sections were played at, it should not be a drastic change in volume (more a change in density), and present a smooth transition from live to recorded sound. the computer generates electronic tones that cross filter (diagramed on score), choosing a different pitch from the chord, and duration, on each iteration. the accordion may play anytime during each iteration by choosing a pitch (or two) from the chord within a whole step of what the electronics are currently voicing. the accordion sustains these pitches at a volume that blends with the oscillators, extending the bellows in only one direction on each sounding. the accordion can begin with the oscillators, or shortly after, but if the accordion ceases to sound before the second oscillator (the higher partial, descending) enters at the halfway point of each iteration, the the same pitch(es) may be played again. accordion should always stop sounding either before the oscillators end or with them. after the 17 iterations of the process are finished, the computer will play a recording, captured by the pair of microphones, of the preceding performance, and the ambient space where the performance occured, layered upon itself and compressed into a 55 second loop. this will last for a duration equal to the combined time of the 17 iterations recently played. it will rest at a very soft volume; a residual, lingering chord...within which the accordian can occasionally sound pitches from the chord at very quiet levels and for very extended durations.

4 chord accordion chooses one or two tones within a whole step of what computer is currently voicing on each iteration, sustaining this tone, or tones, at a low volume for half of, or the entire, duration of the electronic sound. accordion must take cues for starting, stopping, and pitch choice from the real time generation of tones being performed by the computer. computer chooses one pitch from this chord on each iteration and generates an additional tone one octave below this pitch. a higher partial of this pitch is also selected and the computer slowly opens a filter on the tone to this partial over the duration of each iteration, whic is between 23 and 88 seconds. half - way through each iteration a second oscillator begins sounding at the higher partial and performs this filtering process in reverse, closing the filter to the towards the original chosen pitch.

5 score time = between 23 & 88 seconds time/2 repeat 17 x closed open formant filter oscillator one time/2 open closed formant filter oscillator two time/2 repeat 17 x accordion variations on these forms a b if player chooses to play twice, notes played must be identical c d only extend bellows in one direction for each note e b. eubanks 2011/2012

6 code for electronic score written in supercollider 3.4 this is to be used in the event that the performance is using a system other than mac osx, and may have to be modified in this case. whenever possible, use the stand alone application that comes with this score for realization. ( ~update = { but, string but.states = [[string.asstring, Color.black, Color.white], [string.asstring, Color.black, Color.green]];but.refresh;}; SynthDef(\formant, { starthz=55 endhz=233 time=9 stline=3 endline=5 hz=645 var env,source; env=envgen.kr(env.linen(0.1,time-0.2,0.1,xline.kr(stline, endline, time, doneaction: 2))); source=formant.ar(hz, Line.kr(starthz, endhz, time), hz, env); Out.ar(0,source);}).send(s); SynthDef(\base, { time=3 note=25 var source; source=mix.new(fsinosc.ar([note,sinosc.kr(sinosc.kr( ,0,0.02,0.05),0,0.75,note)],0,0.05)); Out.ar(0,source*EnvGen.kr(Env.linen(0.1,time-0.2,0.1,0.1),doneAction: 2));}).send(s); SynthDef(\record, {arg on=1; RecordBuf.ar(SoundIn.ar([0,1]),~c,0,1.0,1.0,loop: 1);}).send(s); SynthDef(\play, { time=120 var source,env; source=playbuf.ar(2,~c,loop: 1); env=envgen.kr(env.linen(0.1,time,0.1,0.08),doneaction: 2); Out.ar(0,Mix.new(source*env));}).send(s); ~endtimearray=array.newclear(17); ~accordion=routine({10.wait;~rec=synth(\record); 17.do{ var harmnum;~fund=[131,196, 261, 294,174].scramble.choose; harmnum=(~fund/2)*rrand(5,16);a=[~fund, harmnum]; b=[harmnum,~fund];c=[0.05,0.012];d=[0.012,0.05];~time=rrand(23,88);f=[~time,~time/2]; ~endtimearray.add(~time); Synth(\base, [\time, ~time, \note, ~fund/2]); Task({2.do{arg i; Synth(\formant, [\hz, ~fund,\time, f[i], \starthz, a[i],\endhz, b[i], \stline, c[i], \endline, d[i]]); (~time/2).wait; }}).play;(~time*1.13).wait;}}); ~second=routine({1.do{var endtime;endtime=~endtimearray.sum;~rec.free;1.wait; ~update.value(~b, "ending");~play=synth(\play, [\time, endtime]);endtime.wait; ~update.value(~b, "end");t.pause;1.wait; ~update.value(~b, "press to begin with 10 sec pause"); ~b.refresh;~c.free;t.reset;}}); w = Window( "for accordion and electronics (2011)", Rect( 750, 75, 375, 105 )); t = Task.new({ inf.do({ i ~b = Button( w, Rect( 5, 25, 183, 52 ));~b.states = [[ "press to begin with 10 sec silence", Color.black, Color.white ], [ "playing/push to stop & restart", Color.black, Color.green ], ]; ~b.action = { b (b.value==1).if{~a.string = "0:00";t.play;fork{ inval inval=~accordion.embedinstream(inval); inval=~second.embedinstream(inval);};} {{~accordion.stop;~second.stop;t.pause;cmdperiod.run;3.wait; ~synthtwo.reset;~accordion.reset;~second.reset;~c.free;t.reset;~a.string = "0:00";}.fork;};}; ~a = StaticText(w, Rect(190, 25, 180, 52)); ~a.background=color.white; ~a.align = \center; ~a.font = Font("Arial", 55); ~a.string = "0:00"; w.front; )

A SuperCollider Implementation of Luigi Nono s Post-Prae-Ludium Per Donau

A SuperCollider Implementation of Luigi Nono s Post-Prae-Ludium Per Donau Kermit-Canfield 1 A SuperCollider Implementation of Luigi Nono s Post-Prae-Ludium Per Donau 1. Introduction The idea of processing audio during a live performance predates commercial computers. Starting

More information

Rebis Audio Ltd. RA226 Digital Sampler User Guide

Rebis Audio Ltd. RA226 Digital Sampler User Guide Rebis Audio Ltd. RA226 Digital Sampler User Guide CONTENTS Page Caution 2 Powering Up 2 Controls 3, 4 Detailed Description Input Level Set 5 Recording 5 Sampling 5 Multiple Samples 6 Editing 6 Playback

More information

A 19-Tone Scale Synthesizer. CHRISTIAN LINDEBORG and CHRISTOFFER SANDBERG

A 19-Tone Scale Synthesizer. CHRISTIAN LINDEBORG and CHRISTOFFER SANDBERG A 19-Tone Scale Synthesizer CHRISTIAN LINDEBORG and CHRISTOFFER SANDBERG Bachelor of Science Thesis Stockholm, Sweden 2011 A 19-Tone Scale Synthesizer CHRISTIAN LINDEBORG and CHRISTOFFER SANDBERG Bachelor

More information

The computer speakers can be loud. So, you may want to adjust the volume. For example, on the Mac keyboard you can use the F11 and F12 keys.

The computer speakers can be loud. So, you may want to adjust the volume. For example, on the Mac keyboard you can use the F11 and F12 keys. 1 CS 105 Lab #12 Making music in Python To begin, please create a new folder on your USB drive or account, and call it lab12. Save all of today s work there. The class handout showing you the musical scale

More information

UNIVERSITY OF DUBLIN TRINITY COLLEGE

UNIVERSITY OF DUBLIN TRINITY COLLEGE UNIVERSITY OF DUBLIN TRINITY COLLEGE FACULTY OF ENGINEERING & SYSTEMS SCIENCES School of Engineering and SCHOOL OF MUSIC Postgraduate Diploma in Music and Media Technologies Hilary Term 31 st January 2005

More information

Alexis Perepelycia Arranger, Composer, Director, Interpreter, Publisher, Teacher

Alexis Perepelycia Arranger, Composer, Director, Interpreter, Publisher, Teacher Alexis Perepelycia Arranger, Composer, Director, Interpreter, Publisher, Teacher Argentina, Rosario About the artist Personal web: Associate: www.alexisperepelycia.com.ar SADAIC About the piece Title:

More information

User s Guide - 64 Bit Digital Electronic Crossover

User s Guide - 64 Bit Digital Electronic Crossover CHANNEL D Pure Music User s Guide - 64 Bit Digital Electronic Crossover Contents Copyright 2006, 2007, 2008, 2009, 2010, 2011 Channel D http://www.channel-d.com CHANNEL D Crossover Pure Music s Crossover

More information

Audacity Tips and Tricks for Podcasters

Audacity Tips and Tricks for Podcasters Audacity Tips and Tricks for Podcasters Common Challenges in Podcast Recording Pops and Clicks Sometimes audio recordings contain pops or clicks caused by a too hard p, t, or k sound, by just a little

More information

S I N E V I B E S FRACTION AUDIO SLICING WORKSTATION

S I N E V I B E S FRACTION AUDIO SLICING WORKSTATION S I N E V I B E S FRACTION AUDIO SLICING WORKSTATION INTRODUCTION Fraction is a plugin for deep on-the-fly remixing and mangling of sound. It features 8x independent slicers which record and repeat short

More information

Comparison Parameters and Speaker Similarity Coincidence Criteria:

Comparison Parameters and Speaker Similarity Coincidence Criteria: Comparison Parameters and Speaker Similarity Coincidence Criteria: The Easy Voice system uses two interrelating parameters of comparison (first and second error types). False Rejection, FR is a probability

More information

I. LISTENING. For most people, sound is background only. To the sound designer/producer, sound is everything.!tc 243 2

I. LISTENING. For most people, sound is background only. To the sound designer/producer, sound is everything.!tc 243 2 To use sound properly, and fully realize its power, we need to do the following: (1) listen (2) understand basics of sound and hearing (3) understand sound's fundamental effects on human communication

More information

PROFESSIONAL 2-CHANNEL MIXER WITH EFFECTS LOOP

PROFESSIONAL 2-CHANNEL MIXER WITH EFFECTS LOOP PROFESSIONAL 2-CHANNEL MIXER WITH EFFECTS LOOP QUICKSTART GUIDE ENGLISH ( 1 4 ) GUÍA DE INICIO RÁPIDO ESPAÑOL ( 5 8 ) GUIDE D UTILISATION SIMPLIFIÉ FRANÇAIS ( 9 12 ) GUIDA RAPIDA ITALIANO ( 13 16 ) KURZANLEITUNG

More information

CUE A (activate Clar. mic): m. 395 (beginning of Mvt. IV, just a fraction of a second before the solo Clar. begins to play) - press "a"

CUE A (activate Clar. mic): m. 395 (beginning of Mvt. IV, just a fraction of a second before the solo Clar. begins to play) - press a ECSTATIC WATERS (version 2.0.1) TECHNICAL INSTRUCTIONS AND TIPS February 2017 QUESTIONS: info@stevenbryant.com REHEARSAL AND PERFORMANCE Triggering the Cues: In Ableton Live, you can (and should) simply

More information

Classroom Setup... 2 PC... 2 Document Camera... 3 DVD... 4 Auxiliary... 5

Classroom Setup... 2 PC... 2 Document Camera... 3 DVD... 4 Auxiliary... 5 Classroom Setup... 2 PC... 2 Document Camera... 3 DVD... 4 Auxiliary... 5 Lecture Capture Setup... 6 Pause and Resume... 6 Considerations... 6 Video Conferencing Setup... 7 Camera Control... 8 Preview

More information

Panaray 802 Series III TECHNICAL DATA SHEET. loudspeaker. Key Features. Product Overview. Technical Specifications

Panaray 802 Series III TECHNICAL DATA SHEET. loudspeaker. Key Features. Product Overview. Technical Specifications Panaray 82 Series III Key Features Articulated Array design provides 12 x 1 coverage to deliver wide-range reproduction over a broad dispersion area Eight Bose 4.5" (114 mm) full-range drivers for unsurpassed

More information

Getting started with Spike Recorder on PC/Mac/Linux

Getting started with Spike Recorder on PC/Mac/Linux Getting started with Spike Recorder on PC/Mac/Linux You can connect your SpikerBox to your computer using either the blue laptop cable, or the green smartphone cable. How do I connect SpikerBox to computer

More information

Natural Radio. News, Comments and Letters About Natural Radio January 2003 Copyright 2003 by Mark S. Karney

Natural Radio. News, Comments and Letters About Natural Radio January 2003 Copyright 2003 by Mark S. Karney Natural Radio News, Comments and Letters About Natural Radio January 2003 Copyright 2003 by Mark S. Karney Recorders for Natural Radio Signals There has been considerable discussion on the VLF_Group of

More information

Spinner- an exercise in UI development. Spin a record Clicking

Spinner- an exercise in UI development. Spin a record Clicking - an exercise in UI development. I was asked to make an on-screen version of a rotating disk for scratching effects. Here's what I came up with, with some explanation of the process I went through in designing

More information

VTAPE. The Analog Tape Suite. Operation manual. VirSyn Software Synthesizer Harry Gohs

VTAPE. The Analog Tape Suite. Operation manual. VirSyn Software Synthesizer Harry Gohs VTAPE The Analog Tape Suite Operation manual VirSyn Software Synthesizer Harry Gohs Copyright 2007 VirSyn Software Synthesizer. All rights reserved. The information in this document is subject to change

More information

WIDEX FITTING GUIDE PROGRAMMING ZEN FOR WIDEX ZEN THERAPY COMPASS GPS INTRODUCTION BASIC WIDEX ZEN THERAPY FITTING STEPS FOR THE BASIC FITTING

WIDEX FITTING GUIDE PROGRAMMING ZEN FOR WIDEX ZEN THERAPY COMPASS GPS INTRODUCTION BASIC WIDEX ZEN THERAPY FITTING STEPS FOR THE BASIC FITTING WIDEX FITTING GUIDE COMPASS GPS PROGRAMMING ZEN FOR WIDEX ZEN THERAPY INTRODUCTION This quick fitting guide explains how to program the Zen+ program in COMPASS GPS, for both a basic ZEN fitting and an

More information

LISTENING GUIDE. p) serve to increase the intensity and drive. The overall effect is one of great power and compression.

LISTENING GUIDE. p) serve to increase the intensity and drive. The overall effect is one of great power and compression. LISTENING GUIDE LUDWIG VAN BEETHOVEN (1770 1827) Symphony No. 5 in C Minor Date of composition: 1807 8 Orchestration: two flutes, two oboes, two clarinets, two horns, two trumpets, timpani, strings Duration:

More information

Bionic Supa Delay Disciples Edition

Bionic Supa Delay Disciples Edition Bionic Supa Delay Disciples Edition VST multi effects plug-in for Windows Version 1.0 by The Interruptor + The Disciples http://www.interruptor.ch Table of Contents 1 Introduction...3 1.1 Features...3

More information

Four Head dtape Echo & Looper

Four Head dtape Echo & Looper Four Head dtape Echo & Looper QUICK START GUIDE Magneto is a tape-voiced multi-head delay designed for maximum musicality and flexibility. Please download the complete user manual for a full description

More information

Edit Menu. To Change a Parameter Place the cursor below the parameter field. Rotate the Data Entry Control to change the parameter value.

Edit Menu. To Change a Parameter Place the cursor below the parameter field. Rotate the Data Entry Control to change the parameter value. The Edit Menu contains four layers of preset parameters that you can modify and then save as preset information in one of the user preset locations. There are four instrument layers in the Edit menu. See

More information

Experiment 9A: Magnetism/The Oscilloscope

Experiment 9A: Magnetism/The Oscilloscope Experiment 9A: Magnetism/The Oscilloscope (This lab s "write up" is integrated into the answer sheet. You don't need to attach a separate one.) Part I: Magnetism and Coils A. Obtain a neodymium magnet

More information

Recording to Tape (Analogue or Digital)...10

Recording to Tape (Analogue or Digital)...10 c o n t e n t s DUAL MIC-PRE Green Dual Mic Pre (introduction).............................4 Section (i): Setting Up Power Connections...........................................4 Power Supply................................................5

More information

Advanced Audio Effects in GarageBand by Jeff Tolbert

Advanced Audio Effects in GarageBand by Jeff Tolbert Advanced Audio Effects in GarageBand by Jeff Tolbert GarageBand ships with plenty of fantastic effects and several useful presets for those effects. But the wonderful thing about audio effects is the vast

More information

OPERATIONS MANUAL FOR EDISON PROFESSIONAL Professional ABS Molded Loudspeaker M4000

OPERATIONS MANUAL FOR EDISON PROFESSIONAL Professional ABS Molded Loudspeaker M4000 M4000 Introduction: Congratulations on your purchase of an M-4000 powered loudspeaker, engineered and manufactured by BriteLite Enterprises. The M-4000 includes a high-output compression driver, and 15

More information

Fraction by Sinevibes audio slicing workstation

Fraction by Sinevibes audio slicing workstation Fraction by Sinevibes audio slicing workstation INTRODUCTION Fraction is an effect plugin for deep real-time manipulation and re-engineering of sound. It features 8 slicers which record and repeat the

More information

A new lifestyle with VIMA

A new lifestyle with VIMA Application Guide A new lifestyle with VIMA The VIMA recreational keyboard will transform your living room into a musical entertainment space that everyone can enjoy. Liven up your next get-together with

More information

AUDIO RECORDING. Rewind - to move back to a specific point in the recording (usually the beginning)

AUDIO RECORDING. Rewind - to move back to a specific point in the recording (usually the beginning) BASIC COMPOSITION.COM PROCEDURAL TERMS Record - to transcribe a signal onto a medium Play - to play a signal from a recording AUDIO RECORDING Pause - to temporarily halt play or recording Stop - to cease

More information

INDIVIDUAL INSTRUCTIONS

INDIVIDUAL INSTRUCTIONS Bracken (after Christian Wolff) (2014) For five or more people with computer direction Nicolas Collins Bracken adapts the language of circuits and software for interpretation by any instrument. A computer

More information

EXPECTATIONS at the end of this unit. some children will not have made so much progress and will:

EXPECTATIONS at the end of this unit. some children will not have made so much progress and will: Y5 Mr Jennings' class Unit 17 Exploring rounds with voice and instruments ABOUT THE UNIT This unit develops children s ability to sing and play music in two (or more) parts. They develop their skills playing

More information

Acoustical Testing 1

Acoustical Testing 1 Material Study By: IRINEO JAIMES TEAM Nick Christian Frank Schabold Erich Pfister Acoustical Testing 1 Dr. Lauren Ronsse, Dr. Dominique Chéenne 10/31/2014 Table of Contents Abstract. 3 Introduction....3

More information

CVP-609 / CVP-605. Reference Manual

CVP-609 / CVP-605. Reference Manual CVP-609 / CVP-605 Reference Manual This manual explains about the functions called up by touching each icon shown in the Menu display. Please read the Owner s Manual first for basic operations, before

More information

Keyframing TOPICS. Camera Keyframing 'Key Camera' Popover Controlling the 'Key Camera' Transition Starting the 'Key Camera' Operation

Keyframing TOPICS. Camera Keyframing 'Key Camera' Popover Controlling the 'Key Camera' Transition Starting the 'Key Camera' Operation Keyframing Keyframing is an animation technique commonly used to produce a smooth transition between a defned start and end point. In Animation Pro, it is possible to create either a smooth camera, fgure

More information

Auditory Illusions. Diana Deutsch. The sounds we perceive do not always correspond to those that are

Auditory Illusions. Diana Deutsch. The sounds we perceive do not always correspond to those that are In: E. Bruce Goldstein (Ed) Encyclopedia of Perception, Volume 1, Sage, 2009, pp 160-164. Auditory Illusions Diana Deutsch The sounds we perceive do not always correspond to those that are presented. When

More information

ARIA STUDIOTRACK IIII R504

ARIA STUDIOTRACK IIII R504 Front Panel Rear Panel The ARIA STUDIOTRACK IIII 504 is a high-quality multi-track cassette recorder capable of producing professional musical recordings and demo tapes. It is recommended for rack-mounting

More information

EMERGENT SOUNDSCAPE COMPOSITION: REFLECTIONS ON VIRTUALITY

EMERGENT SOUNDSCAPE COMPOSITION: REFLECTIONS ON VIRTUALITY EMERGENT SOUNDSCAPE COMPOSITION: REFLECTIONS ON VIRTUALITY by Mark Christopher Brady Bachelor of Science (Honours), University of Cape Town, 1994 THESIS SUBMITTED IN PARTIAL FULFILLMENT OF THE REQUIREMENTS

More information

RoomMatch RM and RM TECHNICAL DATA SHEET. asymmetrical array modules. Key Features. Product Overview. Technical Specifications

RoomMatch RM and RM TECHNICAL DATA SHEET. asymmetrical array modules. Key Features. Product Overview. Technical Specifications RoomMatch RM281 and RM281 Key Features All the benefits of the original 2 RoomMatch array module loudspeakers - Concert-quality sound quality for live music and outstanding spoken-word clarity with industry-leading

More information

EUROPA I PREAMPLIFIER QUICK START GUIDE Dave Hill Designs version

EUROPA I PREAMPLIFIER QUICK START GUIDE Dave Hill Designs version EUROPA I PREAMPLIFIER QUICK START GUIDE 2011 Dave Hill Designs version 20110201 This is a start of a manual; it is to provide some information on what to do with the color controls. At 0db gain the maximum

More information

Credits:! Product Idea: Tilman Hahn Product Design: Tilman Hahn & Dietrich Pank Product built by: Dietrich Pank Gui Design: Benjamin Diez

Credits:! Product Idea: Tilman Hahn Product Design: Tilman Hahn & Dietrich Pank Product built by: Dietrich Pank Gui Design: Benjamin Diez whoosh 1.1 owners manual Document Version: 2.0 Product Version: 1.1 System Requirements: Mac or PC running the full version of Native Instruments Reaktor 5.9 and up. For Protools users: We no longer support

More information

Linear Time Invariant (LTI) Systems

Linear Time Invariant (LTI) Systems Linear Time Invariant (LTI) Systems Superposition Sound waves add in the air without interacting. Multiple paths in a room from source sum at your ear, only changing change phase and magnitude of particular

More information

DOD OWNER'S MANUAL 866 SERIES II GATED COMPRESSOR/LIMITER SIGNAL PROCESSORS

DOD OWNER'S MANUAL 866 SERIES II GATED COMPRESSOR/LIMITER SIGNAL PROCESSORS DOD SIGNAL PROCESSORS 866 SERIES II GATED COMPRESSOR/LIMITER OWNER'S MANUAL 866 SERIES II GATED COMPRESSOR/LIMITER INTRODUCTION : The DOD 866 Series II is a stereo gated compressor/limiter that can be

More information

ALGORHYTHM. User Manual. Version 1.0

ALGORHYTHM. User Manual. Version 1.0 !! ALGORHYTHM User Manual Version 1.0 ALGORHYTHM Algorhythm is an eight-step pulse sequencer for the Eurorack modular synth format. The interface provides realtime programming of patterns and sequencer

More information

cryo user manual & license agreement

cryo user manual & license agreement cryo user manual & license agreement 1. installation & requirements cryo requires no additional installation, just simply unzip the downloaded file to the desired folder. cryo needs the full version of

More information

FPFV-285/585 PRODUCTION SOUND Fall 2018 CRITICAL LISTENING Assignment

FPFV-285/585 PRODUCTION SOUND Fall 2018 CRITICAL LISTENING Assignment FPFV-285/585 PRODUCTION SOUND Fall 2018 CRITICAL LISTENING Assignment PREPARATION Track 1) Headphone check -- Left, Right, Left, Right. Track 2) A music excerpt for setting comfortable listening level.

More information

Digital Feedback Eliminator

Digital Feedback Eliminator Digital Feedback Eliminator Installation and Use Manual Issue 1, October 1999 1999 Bogen Communications, Inc. All rights reserved. 54-2027-01 9910 Model: LUFDBKEL PEC Code: 5335-611 COM Code: 408184265

More information

2. AN INTROSPECTION OF THE MORPHING PROCESS

2. AN INTROSPECTION OF THE MORPHING PROCESS 1. INTRODUCTION Voice morphing means the transition of one speech signal into another. Like image morphing, speech morphing aims to preserve the shared characteristics of the starting and final signals,

More information

OUTER SPACE USER GUIDE

OUTER SPACE USER GUIDE OUTER SPACE USER GUIDE 2017/10/18 Table of Contents 1. Outer Space...3 1.1 Specifications...3 1.2 Installation...3 1.3 Registration...3 2. Parameters...4 2.1 Main Panel...4 2.2 Second Panel...5 2.3 Tape

More information

Voluntary Product Accessibility Template for Web Application

Voluntary Product Accessibility Template for Web Application Voluntary Product Accessibility Template for Web Application Summary Column one includes all the Sections of the Standard that may apply to any deliverable. The total number of provisions within each Section

More information

Voluntary Product Accessibility Template

Voluntary Product Accessibility Template Date: May 18th, 2015 Product Name: Samsung DB D Series Large Format Displays Product Version Number: DB22D-T Vendor Company Name: Samsung Electronics America, Inc. Vendor Contact Name: Kevin Schroll Vendor

More information

QUAD LFO MANUAL V SE 14TH AVENUE PORTLAND OR USA

QUAD LFO MANUAL V SE 14TH AVENUE PORTLAND OR USA www.malekkoheavyindustry.com 814 SE 14TH AVENUE PORTLAND OR 97214 USA TABLE OF CONTENTS SPECIFICATIONS 1 INSTALLATION 2 DESCRIPTION 3 CONTROLS 4-6 USING QUAD LFO WITH VARIGATE 8+ AND VARIGATE 4+ 7 WARRANTY

More information

Musical Acoustics Lecture 15 Pitch & Frequency (Psycho-Acoustics)

Musical Acoustics Lecture 15 Pitch & Frequency (Psycho-Acoustics) 1 Musical Acoustics Lecture 15 Pitch & Frequency (Psycho-Acoustics) Pitch Pitch is a subjective characteristic of sound Some listeners even assign pitch differently depending upon whether the sound was

More information

SP-500 Main Features. EasyStart CONTENTS

SP-500 Main Features. EasyStart CONTENTS EasyStart 88 key RH2 (Real Weighted Hammer Action 2) keyboard. Different degrees of resistance from top to bottom. Velocity sensitive with 6 touch curves for custom response. TouchView Graphical user interface.

More information

Crash Course in Digital Signal Processing

Crash Course in Digital Signal Processing Crash Course in Digital Signal Processing Signals and Systems Conversion Digital Signals and Their Spectra Digital Filtering Speech, Music, Images and More DSP-G 1.1 Signals and Systems Signals Something

More information

1. Welcome To BeatChop

1. Welcome To BeatChop 1. Welcome To BeatChop Thank you for purchasing BeatChop Realtime Slicer & Rearranger Rack Extension for Propellerhead Reason. We would like to welcome you to our first Creative Effect for the Reason Rack.

More information

Summary Table Voluntary Product Accessibility Template. Supporting Features

Summary Table Voluntary Product Accessibility Template. Supporting Features Date: 05/14/2010 Name of Product: Oxygen Forensic Software 2010 Pro Contact for more Information: Christine Young, Teel Technologies Inc. (203) 855-5387 Summary Table Section 1194.21 Software Applications

More information

Outline ip24 ipad app user guide. App release 2.1

Outline ip24 ipad app user guide. App release 2.1 Outline ip24 ipad app user guide App release 2.1 Project Management Search project by name, place and description Delete project Order projects by date Order projects by date (reverse order) Order projects

More information

Bite-Sized Music Lessons

Bite-Sized Music Lessons Bite-Sized Music Lessons A series of F-10 music lessons for implementation in the classroom Conditions of use These Materials are freely available for download and educational use. These resources were

More information

Summary Table Voluntary Product Accessibility Template. Supporting Features. Supports. Supports. Supports. Supports

Summary Table Voluntary Product Accessibility Template. Supporting Features. Supports. Supports. Supports. Supports Date: 15 November 2017 Name of Product: Lenovo 500 Wireless Combo Keyboard and Mouse Summary Table Voluntary Product Accessibility Template Section 1194.21 Software Applications and Operating Systems Section

More information

A Real Word Case Study E- Trap by Bag End Ovasen Studios, New York City

A Real Word Case Study E- Trap by Bag End Ovasen Studios, New York City 21 March 2007 070315 - dk v5 - Ovasen Case Study Written by David Kotch Edited by John Storyk A Real Word Case Study E- Trap by Bag End Ovasen Studios, New York City 1. Overview - Description of Problem

More information

Proceedings of Meetings on Acoustics

Proceedings of Meetings on Acoustics Proceedings of Meetings on Acoustics Volume 19, 2013 http://acousticalsociety.org/ ICA 2013 Montreal Montreal, Canada 2-7 June 2013 Psychological and Physiological Acoustics Session 1pPPb: Psychoacoustics

More information

Reference Manual. Using this Reference Manual...2. Edit Mode...2. Changing detailed operator settings...3

Reference Manual. Using this Reference Manual...2. Edit Mode...2. Changing detailed operator settings...3 Reference Manual EN Using this Reference Manual...2 Edit Mode...2 Changing detailed operator settings...3 Operator Settings screen (page 1)...3 Operator Settings screen (page 2)...4 KSC (Keyboard Scaling)

More information

Introduction! User Interface! Bitspeek Versus Vocoders! Using Bitspeek in your Host! Change History! Requirements!...

Introduction! User Interface! Bitspeek Versus Vocoders! Using Bitspeek in your Host! Change History! Requirements!... version 1.5 Table of Contents Introduction!... 3 User Interface!... 4 Bitspeek Versus Vocoders!... 6 Using Bitspeek in your Host!... 6 Change History!... 9 Requirements!... 9 Credits and Contacts!... 10

More information

9.35 Sensation And Perception Spring 2009

9.35 Sensation And Perception Spring 2009 MIT OpenCourseWare http://ocw.mit.edu 9.35 Sensation And Perception Spring 29 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. Hearing Kimo Johnson April

More information

Government Product Accessibility Template for Servers

Government Product Accessibility Template for Servers Government Product Accessibility Template for Servers Summary Column one includes all the Sections of the Standard that may apply to any deliverable. The total number of provisions within each Section

More information

Therefore we need the help of sound editing software to convert the sound source captured from CD into the required format.

Therefore we need the help of sound editing software to convert the sound source captured from CD into the required format. Sound File Format Starting from a sound source file, there are three steps to prepare a voice chip samples. They are: Sound Editing Sound Compile Voice Chip Programming Suppose the sound comes from CD.

More information

Simple Harmonic Motion: What is a Sound Spectrum?

Simple Harmonic Motion: What is a Sound Spectrum? Simple Harmonic Motion: What is a Sound Spectrum? A sound spectrum displays the different frequencies present in a sound. Most sounds are made up of a complicated mixture of vibrations. (There is an introduction

More information

CUSSOU504A. Microphones. Week Two

CUSSOU504A. Microphones. Week Two CUSSOU504A Microphones Week Two Microphones: Overview and a very brief History. What is a Microphone, exactly? A microphone is an acoustic to electric sensor that converts sound into an electrical signal.

More information

TAGx2 for Nexus BioTrace+ Theta Alpha Gamma Synchrony. Operations - Introduction

TAGx2 for Nexus BioTrace+ Theta Alpha Gamma Synchrony. Operations - Introduction A Matter of Mind PO Box 2327 Santa Clara CA 95055 (408) 984-3333 mind@growing.com www.tagsynchrony.com June, 2013 TAGx2 for Nexus BioTrace+ Theta Alpha Gamma Synchrony Operations - Introduction Here we

More information

11: PC MACs RealTime Pulldown

11: PC MACs RealTime Pulldown 11: PC MACs RealTime Pulldown This Pulldown Menu is where all the commands having to do with the real time programming of a show can be found. Most of the commands are duplicates of the buttons and checkboxes

More information

Introducing the New Daking Console

Introducing the New Daking Console Introducing the New Daking Console Daking The Console that can change from a Legacy Bussing scheme to DAW Direct Routing with the touch of a button. Features: Class A Circuitry Transformer Coupled Pre-Amps

More information

Quest Chapter 26. Flying bees buzz. What could they be doing that generates sound? What type of wave is sound?

Quest Chapter 26. Flying bees buzz. What could they be doing that generates sound? What type of wave is sound? 1 Why do flying bees buzz? 1. They have special wings that make sounds. 2. The buzz comes from their heads. They make a buzzing noise to communicate with each other. 3. They move their wings at audible

More information

Thoughts and Emotions

Thoughts and Emotions Thoughts and Emotions Session 2 Thoughts & Emotions 1 Overall Plan 1. Hearing and hearing loss 2. Tinnitus 3. Attention, behavior, and emotions 4. Changing your reactions 5. Activities for home Thoughts

More information

PSYCHOACOUSTICS & THE GRAMMAR OF AUDIO (By Steve Donofrio NATF)

PSYCHOACOUSTICS & THE GRAMMAR OF AUDIO (By Steve Donofrio NATF) PSYCHOACOUSTICS & THE GRAMMAR OF AUDIO (By Steve Donofrio NATF) "The reason I got into playing and producing music was its power to travel great distances and have an emotional impact on people" Quincey

More information

Pitch-Synchronous Spectrogram: Principles and Applications

Pitch-Synchronous Spectrogram: Principles and Applications Pitch-Synchronous Spectrogram: Principles and Applications C. Julian Chen Department of Applied Physics and Applied Mathematics May 24, 2018 Outline The traditional spectrogram Observations with the electroglottograph

More information

Analyzing and Saving a Signal

Analyzing and Saving a Signal Analyzing and Saving a Signal Approximate Time You can complete this exercise in approximately 45 minutes. Background LabVIEW includes a set of Express VIs that help you analyze signals. This chapter teaches

More information

Pitch. The perceptual correlate of frequency: the perceptual dimension along which sounds can be ordered from low to high.

Pitch. The perceptual correlate of frequency: the perceptual dimension along which sounds can be ordered from low to high. Pitch The perceptual correlate of frequency: the perceptual dimension along which sounds can be ordered from low to high. 1 The bottom line Pitch perception involves the integration of spectral (place)

More information

The simplest way to stop a mic from ringing feedback. Not real practical if the intent is to hear more of the choir in our PA.

The simplest way to stop a mic from ringing feedback. Not real practical if the intent is to hear more of the choir in our PA. Lose the Feeback Improving Gain-Before-Feedback in Worship Sennheiser HOW Applications Tip #9 Kent Margraves, June 2008 *This discussion focuses on the processing and optimization of miked sources on the

More information

AcoustiSoft RPlusD ver

AcoustiSoft RPlusD ver AcoustiSoft RPlusD ver 1.2.03 Feb 20 2007 Doug Plumb doug@etfacoustic.com http://www.etfacoustic.com/rplusdsite/index.html Software Overview RPlusD is designed to provide all necessary function to both

More information

XB-14 Quick Operation Manual V1 23/10/2013

XB-14 Quick Operation Manual V1 23/10/2013 XB-14 Quick Operation Manual V1 23/10/2013 14. MIXER ON/OFF SWITCH 19. USB GAIN CONTROL 17. ST1 18. ST16 SELECTOR SELECTOR 7. GAIN CONTROL 6. 100Hz HIGH PASS FILTER 13. MAIN 16. GAIN 5. EQ METERS 12. PHANTOM

More information

5. At a distance of 5.0 from a point sound source, the sound intensity level is 110 db. At what distance is the intensity level 95 db? a. 5.0 m b. 7.1

5. At a distance of 5.0 from a point sound source, the sound intensity level is 110 db. At what distance is the intensity level 95 db? a. 5.0 m b. 7.1 1. A certain string on a piano is tuned to produce middle C (f = 261.63 Hz) by carefully adjusting the tension is the string. For a fixed wavelength, what is the frequency when this tension is doubled?

More information

Voluntary Product Accessibility Template

Voluntary Product Accessibility Template Date: September 2013 Product Name: Samsung 840 EVO and 840 PRO Series Solid State Drives Product Version Number: MZ-7PE and MZ-7PD Series Vendor Company Name: Samsung Electronics America, Inc. Vendor Contact

More information

GET STARTED. For assistance, call us on or visit manhattan-tv.com/help

GET STARTED. For assistance, call us on or visit manhattan-tv.com/help GET STARTED For assistance, call us on 020 8450 0005 or visit manhattan-tv.com/support Check Freeview HD coverage in your area by visiting freeview.co.uk For assistance, call us on 020 8450 0005 or visit

More information

Unit 5c - Journey into space: Exploring sound sources (QCA Unit 18 - Year 5/6)

Unit 5c - Journey into space: Exploring sound sources (QCA Unit 18 - Year 5/6) 275 Unit 5c - Journey into space: Exploring sound sources (QCA Unit 18 - Year 5/6) Unit overview This unit develops children s ability to extend their sound vocabulary, including the use of ICT, and to

More information

Using FR-4x Editor. Introduction. Installation. Connecting the FR-4x to the Editor

Using FR-4x Editor. Introduction. Installation. Connecting the FR-4x to the Editor Introduction FR-4x Editor is an editor for creating sets (SET) and user programs (UPG). This document explains how to edit the parameters and how to save the set or user program. (This document explains

More information

TAPE ECHO HANDCRAFTED IN DENMARK

TAPE ECHO HANDCRAFTED IN DENMARK TAPE ECHO HANDCRAFTED IN DENMARK CONGRATULATIONS ON YOUR PURCHASE OF THE T-REX REPLICATOR! The Replicator is a true tape echo with modern features that were not available on tape echoes in the past. A

More information

Transmitter Installation and Operation

Transmitter Installation and Operation Transmitter Installation and Operation Easy-to-follow instructions on how to program and use your Talking House / i A.M. Radio Transmitter Questions? Just call (616) 772-2300. Contents Quick Start... 3

More information

Voluntary Product Accessibility Template

Voluntary Product Accessibility Template Date: June 2014 Product Name: Samsung 450 Series LED Monitors Product Version Number: S27C450D, S24C450D, S24C450DL, S23C450D, S22C450D, S19C450BR, S23C450D Vendor Company Name: Samsung Electronics of

More information

Math and Music Developed by Megan Martinez and Alex Barnett in conjunction with Ilene Kanoff

Math and Music Developed by Megan Martinez and Alex Barnett in conjunction with Ilene Kanoff Math and Music Developed by Megan Martinez and Alex Barnett in conjunction with Ilene Kanoff For questions or comments, feel free to contact Megan Martinez at megan.ann.martinez [at] gmail.com Overview

More information

Toward a Computationally-Enhanced Acoustic Grand Piano

Toward a Computationally-Enhanced Acoustic Grand Piano Toward a Computationally-Enhanced Acoustic Grand Piano Andrew McPherson Electrical & Computer Engineering Drexel University 3141 Chestnut St. Philadelphia, PA 19104 USA apm@drexel.edu Youngmoo Kim Electrical

More information

Shifty Manual v1.00. Shifty. Voice Allocator / Hocketing Controller / Analog Shift Register

Shifty Manual v1.00. Shifty. Voice Allocator / Hocketing Controller / Analog Shift Register Shifty Manual v1.00 Shifty Voice Allocator / Hocketing Controller / Analog Shift Register Table of Contents Table of Contents Overview Features Installation Before Your Start Installing Your Module Front

More information

Asynchronous counters

Asynchronous counters Asynchronous counters In the previous section, we saw a circuit using one J-K flip-flop that counted backward in a two-bit binary sequence, from 11 to 10 to 01 to 00. Since it would be desirable to have

More information

Section III: Long Tones & Lip Slurs III - 1

Section III: Long Tones & Lip Slurs III - 1 Section III: Long Tones & Lip Slurs III - 1 Long Tones The first part of the daily routine for the entire band is made up of long tones on unison pitches and chords. It s a pretty good idea to do some

More information

MANUAL v.3 CONTACT MORE THAN LOGIC. UNITING ART + ENGINEERING.

MANUAL v.3 CONTACT MORE THAN LOGIC. UNITING ART + ENGINEERING. MANUAL v.3 MORE THAN LOGIC. UNITING ART + ENGINEERING. CONTACT email: info@meris.us phone: 747.233.1440 website: www.meris.us TABLE OF CONTENTS SECTION 1 PG. 1 FRONT PANEL CONTROLS SECTION 2 PG. 2-4 GLOBAL

More information

508 Phono Preamplifier. Boulder Amplifiers, Inc. 255 S. Taylor Ave. Louisville, CO (303) /1/2018 Rev. 1.

508 Phono Preamplifier. Boulder Amplifiers, Inc. 255 S. Taylor Ave. Louisville, CO (303) /1/2018 Rev. 1. 508 Phono Preamplifier 6/1/2018 Rev. 1.0 P/N: 91053 Boulder Amplifiers, Inc. 255 S. Taylor Ave. Louisville, CO 80027 (303) 449-8220 www.boulderamp.com About About Boulder Amplifiers, Inc. Boulder was founded

More information

Experiment 13 Sampling and reconstruction

Experiment 13 Sampling and reconstruction Experiment 13 Sampling and reconstruction Preliminary discussion So far, the experiments in this manual have concentrated on communications systems that transmit analog signals. However, digital transmission

More information

AV KEEPS NYC SECURE JAIL IS UNDER CONTROL GREETINGS FROM MARS NYPD S EOC SERVES MULTIPLE PURPOSES.

AV KEEPS NYC SECURE JAIL IS UNDER CONTROL GREETINGS FROM MARS NYPD S EOC SERVES MULTIPLE PURPOSES. Vol. 51 No. 3 March 21, 2005 AV KEEPS NYC SECURE NYPD S EOC SERVES MULTIPLE PURPOSES. JAIL IS UNDER CONTROL CACHE COUNTY JAIL S COMMUNICATION, CONTROL SYSTEMS ARE VITAL. GREETINGS FROM MARS AV HELPS NASA

More information

Cathedral user guide & reference manual

Cathedral user guide & reference manual Cathedral user guide & reference manual Cathedral page 1 Contents Contents... 2 Introduction... 3 Inspiration... 3 Additive Synthesis... 3 Wave Shaping... 4 Physical Modelling... 4 The Cathedral VST Instrument...

More information