“Dub Plex” Tape Delay and Spring Reverb Effect

Total Page:16

File Type:pdf, Size:1020Kb

“Dub Plex” Tape Delay and Spring Reverb Effect “Dub Plex” Tape Delay and Spring Reverb effect Digital Audio Systems, DESC9115, 2021 Grad Certificate in Architectural Science (Audio and Acoustics) Sydney School of Architecture, Design and Planning, The University of Sydney ABSTRACT My objective for this assignment was to create a tape echo (delay) and spring reverb effect similar sounding to a Roland Space Echo RE-201 using MATLAB. I wanted to address some of the shortcomings of the original unit such using filters in the feedback circuit and synchronising the delay time to the tempo (BPM). This delay is based on the Roland Space Echo setting 1 for a single delay, rather than a multi-tap delay. The delay effects can be used without affecting the low-end frequencies making them suitable for use on kick drums or bass heavy music. When using the original Roland Space Echo on dub or electronic music, some of the best sounding effects are created by using the repeat rate (feedback) of the delay and getting it to repeat in time on drums hits and sound stabs, or creating wobbly tape modulation delay effects mixed with the spring reverb tank. I wanted to create these effects with audio files containing percussion and heavy bass lines. 1. INTRODUCTION 1.1 The “Dub Plex” concept Dub Plex Delay Filters Tempo Reverb 120 BPM Gain Time Feedback HP LP wet/dry The Dub Plex effect unit as a hardware device 1.2 The Tape Delay To create the tape delay sound of the “Dub Plex” effect I researched the “Tape-based Echo Simulation” analysis of the Echo Plex and Roland Space Echo in the DAFX book [1]. This gave an understanding of the tape delay audio signal flow architecture. x[n] y[n] y[n] = x[n] x[n- d] Figure 1: Block diagram of the “Tape-based Echo Simulation” (Source: DAFX) As seen Figure 1 above, the output signal is delayed and fed back (for repeats) with the input signal according to the feedback controls. For my tape delay I did not want output equalisation tone controls, as high pass and low pass filters in the feedback circuit would give enough tonal variation. Wow and Flutter are also characteristics that exist within motor-driven loop tape machines. These characteristics provide older tape echo machines with some of their distinctive sound. Wow is defined as a speed fluctuation of between 0.1- 10 Hz, and flutter as between 10-100 Hz, which results in slow modulations in pitch [2]. I found using a small amount of the vibrato effect (1 Hz) worked quite well to emulate tape wow. Gaussian noise was added to emulate tape hiss, which is also modulated. Examining the DSP, the delay processing block receives a sample of the input signal at sample number n and stores this sample in memory (using a buffer) for a given number of samples, d. At sample number n + d, the output of a delay processing block is the input sample x[n]. When the input sample x[n] is received and processed by the tape delay, the output of the block is the sample x[n-d], for the d number of samples stored in memory [3]. y[n] = x[n-d] The gain (k) of the feedback then feeds the input into a backward, delayed path. y[n] = x[n]+(-k) * y[n-d] The x[n] signal is also processed by the MATLAB inbuilt finite impulse response (FIR) lowpass/highpass filters h[n] using convolution. The symbol * here is to denote convolution not multiplication. y[n] = x[n] * h[n] This filter idea was sourced from former student Guy Hopkins on his feedback tape delay, modified not to have all pass filters [5]. After testing many different types of delay code using feedback, I based the delay code on a Roland “Digidelay” guitar effect written by Ethan Lusterman [4]. 1.3 The Spring Reverb I borrowed an original Roland Space Echo RE-201 to take Spring Reverb impulse responses using the “Impulse Response Measurer” in MATLAB. The Spring Reverb function is based on modified code from by Gautham J. Mysore [6]. The Spring Reverb function uses an impulse response taken from a Roland Space Echo to emulate how the sound propagates through the spring reverb, synthesised with a fixed algorithmic Schroeder reverberator. Using the Roland Space Echo impulse response, the inbuilt MATLAB LPC function is used to create the coefficients for the infinite impulse response filters (IIR). A fixed algorithmic Schroeder reverb is then constructed using five parallel IIR feedback comb filters (FBCF) and four series all-pass filters (APF). This is shown in Figure 2 with the delay in samples (Fs = 44.1 kHz) and gain for each filter [3]. FBCF 2106 Gain = 0.7 FBCF 3804 Gain = 0.7 FBCF 5440 APF 220 APF 441 APF 713 APF 1124 Gain=0.7 Gain=0.5 Gain=0.3 Gain=0.1 PLPC Gain = 0.7 0.Ga FBCF 7880 Gain = 0.7 FBCF 8040 Gain = 0.7 Figure 2: Block diagram of the Schroeder reverb with sample delay and gain The IIR comb filter functions in a similar way to the feedback delay. The output y[n] is fed back into an endless series of delay repetitions to simulate reverb and combined with the system input x[n]. Each time the signal goes through the delay line (samples) it is attenuated by the gain (g). For positive values of g, the filter amplifies all frequencies that are multiples of 1/t and attenuates all frequencies that are in-between. For negative values of g, the filter attenuates frequencies that are multiples of 1/t and amplifies those that are in-between [1]. The input signal is often scaled by c to compensate for high amplification. y[n] = c * x [n] + g * y [n-M] M = t / Fs where t is time and Fs is sample frequency Figure 3 – the magnitude response of a comb filter (source: MATLAB) As shown in figure 3, the filter magnitude response resembles a comb, hence the name comb filter. Feed forward all pass filters are used in series to simulate decaying reflections for the reverb, with descending gain. LAB WORK 1.4 Audio Signal Flow Gain Modulated HP/LP LPC/Spring signal Filters Reverb BPM to Summed Delay with Input audio Output samples signal Feedback Loop Wet/dry mix Delayed signal Gain Figure 2: Block diagram signal flow of the “Dub Plex” 1.5 Explanation of the MATLAB proposed DSP The signal flow block diagram in Figure 2 outlines the proposed DSP application. Each step of the function outputs calculated from the inputs will be explained according to the diagram. The practical component of this assignment has comments next to each command line. 1.6 Tape modulation (wow) and tape hiss A digital delay should be synchronised to the music tempo (beats per minute), as this will create delay repetitions which line up with the rhythm of the performance [3]. After the note division and BPM variables have been input, the BPM is then this is converted to seconds per beat and then samples and rounded to the nearest decimal: • Beats per second = beats per minute (BPM) / 60 • Seconds per peat = 1 / Beats per second • Delay time (samples) = Note divisions * Seconds per peat Next the vibrato was created from the DAFX vibrato script, to emulate tape wow. The time delay is varied periodically to produce pitch variation and create a slow vibrato effect. A delay line is created and a low-frequency oscillator to drive the delay time parameter to create a vibrato effect, as seen in figure 3 [1]. LFO Input x[n] Delay (d) Output y[n-d] Figure 3: Block diagram of modulated delay. The modulation frequency is calculated by dividing the modulation frequency input variable (1 Hz) by the sample rate: Modulation Frequency = 1 Hz / 44100 A delay line with buffer is created (n), and the modulation is created by using a sine wave to create the modulation: Modulation = Sine (Modulation Frequency * 2 * π * n) A “for loop” function is used to add the sine wave used for modulation and noise, at the start of the input signal to the end of the signal sample, and gaussian noise added for tape hiss. After the modulation and noise are created, the matrix lengths of the delayed original signal and modulated delay have zeros added to match, before they are normalised and summed to the output before the delay with feedback. To hear what this modulated tape noise stage does to the audio, I have processed an audio loop “dub_loop_mono.wav” and saved it as “mod_delay.wav”. 1.7 Digital delay with feedback The next sage is the digital delay with feedback including high and low pass filters. This was the most difficult code to get right, mainly because of the longer delay times not having enough zeros added to match the vector length with the modulated input signal. The zeros function creates a vector of values to put between the modulated signal and the delayed signal. As you can see in the MATLAB code, many zeros were added in order to allow long feedback delay times. The MATLAB FFT based FIR filtering is used for the high and lowpass filters using the inbuilt “fdesign.highpass” and “fdesign.lowpass” object specification. The summed signal is convoluted with the filtered signal using “fftfilt” to implement the overlap-add method. The feedback exponentially decays (feedback=feedback^2). Zero padding is then added to the summed input signal to ensure the matrix matches the delayed signal. The output is then normalised.
Recommended publications
  • Common Tape Manipulation Techniques and How They Relate to Modern Electronic Music
    Common Tape Manipulation Techniques and How They Relate to Modern Electronic Music Matthew A. Bardin Experimental Music & Digital Media Center for Computation & Technology Louisiana State University Baton Rouge, Louisiana 70803 [email protected] ABSTRACT the 'play head' was utilized to reverse the process and gen- The purpose of this paper is to provide a historical context erate the output's audio signal [8]. Looking at figure 1, from to some of the common schools of thought in regards to museumofmagneticsoundrecording.org (Accessed: 03/20/2020), tape composition present in the later half of the 20th cen- the locations of the heads can be noticed beneath the rect- tury. Following this, the author then discusses a variety of angular protective cover showing the machine's model in the more common techniques utilized to create these and the middle of the hardware. Previous to the development other styles of music in detail as well as provides examples of the reel-to-reel machine, electronic music was only achiev- of various tracks in order to show each technique in process. able through live performances on instruments such as the In the following sections, the author then discusses some of Theremin and other early predecessors to the modern syn- the limitations of tape composition technologies and prac- thesizer. [11, p. 173] tices. Finally, the author puts the concepts discussed into a modern historical context by comparing the aspects of tape composition of the 20th century discussed previous to the composition done in Digital Audio recording and manipu- lation practices of the 21st century. Author Keywords tape, manipulation, history, hardware, software, music, ex- amples, analog, digital 1.
    [Show full text]
  • ARTIFICIAL REVERBERATION Ainnol
    ARTIFICIAL REVERBERATION Ainnol Lilisuliani Ahmad Rasidi (SID : 430566949) Digital Audio Systems, DESC9115, Semester 1 2014 Graduate Program in Audio and Acoustics Faculty of Architecture, Design and Planning, The University of Sydney -------------------------------------------------------------------------------------------------------------------------------------- 1.0 Abstract Digital reverberation is an audio effect that is very common in musical production. It can be used to enhance recorded sounds that often sounds “dry” and “flat”. The principal idea of artificial reverberation was initiated by Manfred Schroeder in the 1960’s. Since then, many artificial reverb algorithms have been created. This review will look into two types of reverberation, convolution and algorithm based reverberation, focusing on Schroeder’s delay network algorithm and the applications of artificial reverberation in many areas. 2.0 Introduction Sound is a mechanical energy that travels through air at the speed of about 344 m/s. The speed varies upon the properties of air it travels, mostly due to the change of temperature and sometimes due to the humidity. In an enclosed space, this longitudinal waves of sound would reduce its amplitude the further it travels from the source until it reaches a surface. Depending upon the characteristic of the surface, some of the energy of the sound will be absorbed while some shall be reflected back into space. The reflected sound will bounce again as it meets other surface or obstacles, hence creating a complex pattern of reflection. Reverberation is the term we use for the collection of reflected sounds from the surfaces in an enclosed space. It is measured by reverberation time, which is perceived as the time for the sound to die away 60 decibels after the sound sources ceases (Sabine, 1972) .
    [Show full text]
  • Recording and Amplifying of the Accordion in Practice of Other Accordion Players, and Two Recordings: D
    CA1004 Degree Project, Master, Classical Music, 30 credits 2019 Degree of Master in Music Department of Classical music Supervisor: Erik Lanninger Examiner: Jan-Olof Gullö Milan Řehák Recording and amplifying of the accordion What is the best way to capture the sound of the acoustic accordion? SOUNDING PART.zip - Sounding part of the thesis: D. Scarlatti - Sonata D minor K 141, V. Trojan - The Collapsed Cathedral SOUND SAMPLES.zip – Sound samples Declaration I declare that this thesis has been solely the result of my own work. Milan Řehák 2 Abstract In this thesis I discuss, analyse and intend to answer the question: What is the best way to capture the sound of the acoustic accordion? It was my desire to explore this theme that led me to this research, and I believe that this question is important to many other accordionists as well. From the very beginning, I wanted the thesis to be not only an academic material but also that it can be used as an instruction manual, which could serve accordionists and others who are interested in this subject, to delve deeper into it, understand it and hopefully get answers to their questions about this subject. The thesis contains five main chapters: Amplifying of the accordion at live events, Processing of the accordion sound, Recording of the accordion in a studio - the specifics of recording of the accordion, Specific recording solutions and Examples of recording and amplifying of the accordion in practice of other accordion players, and two recordings: D. Scarlatti - Sonata D minor K 141, V. Trojan - The Collasped Cathedral.
    [Show full text]
  • DLM8 and DLM12 2000W Powered Loudspeakers with DL2 Digital Mixer
    DLM8 and DLM12 2000W Powered Loudspeakers with DL2 Digital Mixer OWNER’S MANUAL Important Safety Instructions 1. Read these instructions. 20. NOTE: This equipment has been tested and found to comply with 2. Keep these instructions. the limits for a Class B digital device, pursuant to part 15 of the FCC 3. Heed all warnings. Rules. These limits are designed to provide reasonable protection 4. Follow all instructions. against harmful interference in a residential installation. This equipment 5. Do not use this apparatus near water. generates, uses, and can radiate radio frequency energy and, if not 6. Clean only with a dry cloth. installed and used in accordance with the instructions, may cause 7. Do not block any ventilation openings. Install in accordance with the manu- harmful interference to radio communications. However, there is no facturer’s instructions. guarantee that interference will not occur in a particular installation. 8. Do not install near any heat sources such as radiators, heat registers, stoves, If this equipment does cause harmful interference to radio or television or other apparatus (including amplifiers) that produce heat. reception, which can be determined by turning the equipment off and on, the user is encouraged to try to correct the interference by one or 9. Do not defeat the safety purpose of the polarized or grounding-type plug. more of the following measures: A polarized plug has two blades with one wider than the other. A grounding- type plug has two blades and a third grounding prong. The wide blade or • Reorient or relocate the receiving antenna. the third prong are provided for your safety.
    [Show full text]
  • AIR Creative Collection Provides a Comprehensive Set of Digital Signal Processing Tools for Professional Audio Production with Pro Tools
    AIR® Creative Collection User Guide English User Guide (English) Chapter 1: Audio Plug-Ins Overview Plug-ins are special-purpose software components that provide additional signal processing and other functionality to Avid® Pro Tools®. These include plug-ins that come with Pro Tools, as well as many other plug-ins that can be added to your system. Additional plug-ins are available both from AIR and third-party developers. See the documentation that came with the plug-in for operational information. AIR Audio Plug-Ins AIR Creative Collection provides a comprehensive set of digital signal processing tools for professional audio production with Pro Tools. Other AIR plug-ins are available for purchase from AIR at www.airmusictech.com. AIR Creative Collection is included with Pro Tools, providing a comprehensive suite of digital signal processing effects that include EQ, dynamics, delay, and other essential audio processing tools. The following sound-processing, effects, and utility plug-ins are included: Chorus Ensemble Fuzz-Wah Multi-Delay Spring Reverb Distortion Filter Gate Kill EQ Non-Linear Reverb Stereo Width Dynamic Delay Flanger Lo-Fi Phaser Talkbox Enhancer Frequency Shifter Multi-Chorus Reverb Vintage Filter The following virtual instrument plug-ins are also included: Boom Drum machine and sequencer DB-33 Tonewheel organ emulator with rotating speaker simulation Mini Grand Acoustic grand piano Structure Free Sample player Vacuum Vacuum tube–modeled monophonic synthesizer Xpand!2 Multitimbral synthesizer and sampler workstation Avid and Pro Tools are trademarks or registered trademarks of Avid Technology, Inc. in the U.S. and other countries. 3 AAX Plug-In Format AAX (Avid Audio Extension) plug-ins provide real-time plug-in processing using host-based ("Native") or DSP-based (Pro Tools HD with Avid HDX hardware accelerated systems only) processing.
    [Show full text]
  • Synthesizer Parameter Manual
    Synthesizer Parameter Manual EN Introduction This manual explains the parameters and technical terms that are used for synthesizers incorporating the Yamaha AWM2 tone generators and the FM-X tone generators. You should use this manual together with the documentation unique to the product. Read the documentation first and use this parameter manual to learn more about parameters and terms that relate to Yamaha synthesizers. We hope that this manual gives you a detailed and comprehensive understanding of Yamaha synthesizers. Information The contents of this manual and the copyrights thereof are under exclusive ownership by Yamaha Corporation. The company names and product names in this manual are the trademarks or registered trademarks of their respective companies. Some functions and parameters in this manual may not be provided in your product. The information in this manual is current as of September 2018. EN Table Of Contents 1 Part Parameters . 4 1-1 Basic Terms . 4 1-1-1 Definitions . 4 1-2 Synthesis Parameters . 7 1-2-1 Oscillator . 7 1-2-2 Pitch . 10 1-2-3 Pitch EG (Pitch Envelope Generator) . 12 1-2-4 Filter Type . 17 1-2-5 Filter . 23 1-2-6 Filter EG (Filter Envelope Generator) . 25 1-2-7 Filter Scale . 29 1-2-8 Amplitude . 30 1-2-9 Amplitude EG (Amplitude Envelope Generator) . 33 1-2-10 Amplitude Scale . 37 1-2-11 LFO (Low-Frequency Oscillator) . 39 1-3 Operational Parameters . 45 1-3-1 General . 45 1-3-2 Part Setting . 45 1-3-3 Portamento . 46 1-3-4 Micro Tuning List .
    [Show full text]
  • Collider Delay+Reverb User Guide
    Collider Delay+Reverb User Guide Welcome Thank you for purchasing the Collider Delay+Reverb. This powerful, yet easy-to-use stereo effects pedal features 12 meticulously crafted delay and reverb engines. Each effect was handpicked from our award winning and highly regarded Nemesis Delay and Ventris Dual Reverb pedals. The Collider’s intuitive control surface makes it easy to mix-and-match any two-engine combination of delay and reverb. Plus, dual footswitches provide individual Engage/Bypass control over each effect in a two- engine combination. The Collider offers an exceptional collection of rich, spacious tones, including realistic reproductions of vintage Analog, Tape, and Oil Can Delays, classic models of Spring and Plate Reverb, natural replications of large and small acoustic spaces, and an intriguing and highly musical selection of “unnatural” tones including Reverse Delay and Shimmer Reverb. The pedal also features dual DSP architecture, 8 user presets (or 128 user presets with MIDI), stereo inputs and outputs, analog dry through, delay tap tempo, reverb hold, full MIDI functionality, external expression capabilities, and extra editing and signal routing options via the Neuro Desktop and Mobile App Editors. We built the Collider Delay+Reverb for supreme sonic exploration. We cannot wait to hear where it takes you. - The Source Audio Team SA263 Collider Delay+Reverb Owner’s Manual 1 Contents Welcome ..................................................................................................................................................
    [Show full text]
  • MPX 1 Presets
    MPX 1 Presets The MPX 1 DataBase function can sort the 200 presets into numerical or alphabetical order, show you only those programs that are tagged for specific audio sources (guitars, vocals, etc.), or only those which use specific effects (pitch, chorus, etc.).To select the sorting criteria you want, press Program, then press Options. (The Options LED will blink.) Use either the knob or the < and > buttons to select the sorting option you want. Press Options again to return to Program mode and to re-sort the DataBase. When you return to Program mode, the knob will scroll through the first of the available sub-categories (guitar, vocals, pitch, chorus, etc.) The < and > buttons will jump to the next sorting category. In Program mode, press Value to access Soft Row parameters for each program. Use the < and > buttons to select parameters, and the knob to modify values. Press Value again to exit the Soft Row. If the front panel Tempo LED lights, the program you have loaded can be synchronized to tempo. To set the tempo, press the front panel Tap button twice in time with the beat. (Tempo can also be dialed in as a parameter value, or it can be determined by MIDI Clock.) Be sure to try these effects synchronized with MIDI sequence and drum patterns. If the front panel A or B LED lights, the program you have loaded has parameters patched to the A/B Gide controller. Press the front panel A/B button to glide between the A and B versions of the program.
    [Show full text]
  • Music Synthesizer Senior Project: Danalog
    Music Synthesizer Senior Project: Danalog Report by: Vikrant Marathe Other Group Members: Bryan Bellin, Evan Lew, Jordan Wong Advisor: Dr. Wayne Pilkington Spring 2017 Cal Poly Electrical Engineering Table of Contents I. Introduction II. Product Design Engineering Requirements III. Background IV. System Design - Functional Decomposition (Level 1) V. Physical Construction and Integration VI. Integrated System Tests and Results VII. Bibliography List of Tables and Figures Abstract The Danalog is a 25 key portable digital music synthesizer that uses multiple synthesis methods and effects to generate sounds. Sound varieties included three synthesis methods including FM, subtractive, and sample-based, with up to eight adjustable parameters, at least four effects, including reverb, chorus, and flange, with five adjustable parameters, and at least two note polyphony, and a five band equalizer. The user would be able to adjust these effects using digital encoders and potentiometers and view the settings on two LCD screens. The finals project was unable to meet the original design requirements. The FM synthesis method was primarily working in the end product. The synthesizer was built to produce two note polyphony. The LCD screens displayed the information about the synthesis method as the user plays. I. Introduction The purpose of this project was to create a portable, inexpensive digital music synthesizer for amateur musicians. The intended customer base consists of young, amateur musicians who don’t have a big budget for a more expensive music synthesizer. The market requirements for this product are as follows: - The Danalog Synthesizer will be inexpensive at less than $200 - The design will be sleek and lightweight to promote portability - Up to eight adjustable synthesis parameters - Up to five adjustable effects parameters - Five band equalizer Our intended customer is an amateur musician seeking an inexpensive digital synthesizer to create a wide array of user-defined sounds.
    [Show full text]
  • Analog & Digital Remote Synthesizer
    The University of Akron IdeaExchange@UAkron Williams Honors College, Honors Research The Dr. Gary B. and Pamela S. Williams Honors Projects College Spring 2021 Analog & Digital Remote Synthesizer Adam Brunner [email protected] Andrew Cihon-Scott [email protected] Scott Grisso [email protected] Linus Wright [email protected] Follow this and additional works at: https://ideaexchange.uakron.edu/honors_research_projects Part of the Digital Circuits Commons, Digital Communications and Networking Commons, Electrical and Electronics Commons, Other Electrical and Computer Engineering Commons, and the Signal Processing Commons Please take a moment to share how this work helps you through this survey. Your feedback will be important as we plan further development of our repository. Recommended Citation Brunner, Adam; Cihon-Scott, Andrew; Grisso, Scott; and Wright, Linus, "Analog & Digital Remote Synthesizer" (2021). Williams Honors College, Honors Research Projects. 1288. https://ideaexchange.uakron.edu/honors_research_projects/1288 This Dissertation/Thesis is brought to you for free and open access by The Dr. Gary B. and Pamela S. Williams Honors College at IdeaExchange@UAkron, the institutional repository of The University of Akron in Akron, Ohio, USA. It has been accepted for inclusion in Williams Honors College, Honors Research Projects by an authorized administrator of IdeaExchange@UAkron. For more information, please contact [email protected], [email protected]. Analog + Digital Remote Synthesizer Project Design Report Design Team 9 Adam Brunner Andrew Cihon-Scott Scott Grisso Linus Wright Dr. Robert Veillette 11/25/2020 2 Table of Contents List of Figures 4 List of Tables 5 Abstract 7 1. Problem Statement 8 1.1.
    [Show full text]
  • Music Software in the Compositional Learning Process Daniel L
    University of South Florida Scholar Commons Graduate Theses and Dissertations Graduate School April 2018 Music Software in the Compositional Learning Process Daniel L. Nevels University of South Florida, [email protected] Follow this and additional works at: http://scholarcommons.usf.edu/etd Part of the Other Education Commons Scholar Commons Citation Nevels, Daniel L., "Music Software in the Compositional Learning Process" (2018). Graduate Theses and Dissertations. http://scholarcommons.usf.edu/etd/7201 This Dissertation is brought to you for free and open access by the Graduate School at Scholar Commons. It has been accepted for inclusion in Graduate Theses and Dissertations by an authorized administrator of Scholar Commons. For more information, please contact [email protected]. Music Software in the Compositional Learning Process by Daniel L. Nevels A dissertation submitted in partial fulfillment of the requirements of the degree of Doctor of Philosophy School of Music College of the Arts University of South Florida Major Professor: David Williams, Ph.D. Victor Fung, Ph.D. Clint Randles, Ph.D. Baljinder Sekhon, Ph.D. Date of Approval: April 4, 2018 Keywords: Music Technology, Music Software, Composition, Music Education, Electronic Music Copyright © 2018, Daniel L. Nevels Dedication To: Mom Wife Son Acknowledgments Thanks to Dr. David Williams – For all of the help during my time at USF Table of Contents Abstract ..........................................................................................................................................
    [Show full text]
  • The REAPER Cockos Effects Summary Guide
    Supplement to REAPER User Guide The REAPER Cockos Effects Summary Guide version 2.00 March 2016 This document is intended to provide a summary of the various COCKOS plug-ins supplied with REAPER, their broad purpose, the meaning of their various parameter controls and how to operate them. It serves to supplement the User Guide, not replace it. It is not intended to serve as a comprehensive course on the subject of audio effects and their many potential applications! For that reason, for commonly used types of effects – such as equalizers and compressors – a basic understanding of the purpose of such effects is assumed. More detailed explanations are given for those effects which are more REAPER specific, such as ReaVocode and ReaVoice. Many thanks to Nathan (planetnine) for his assistance, especially with matters technical. While every reasonable attempt has been taken to ensure accuracy in the preparation of this guide, the author accepts no responsibility for any errors or the consequences thereof. © Geoffrey Francis, December 2013, 2016 1 2 Table of Contents 1 The REAPER FX Plugin Interface.............................................................................................5 2 ReaComp................................................................................................................................. 7 3 ReaControlMIDI.................................................................................................................... 10 4 ReaDelay...............................................................................................................................
    [Show full text]