OVERVIEW AND REFERENCE

Size: px
Start display at page:

Download "OVERVIEW AND REFERENCE"

Transcription

1 V I R T U A L A U D I O S P A C E with integrated Dense-Array EEG OVERVIEW AND REFERENCE Andrew Butcher, M.Sc. Matthew Tata, Ph.D. Canadian Centre for Behaioural Neuroscience The Uniersity of Lethbridge

2 Table of Contents Audio Hardware! Studio Monitors! Audio Interface! EEG Hardware and Software! Audio Software! Core Audio! The AudioGraph and SimpleAudioGraph Libraries! Timing and the arious models of running an experiment! Panning! PanningDemo 1! Integration with EGI s Netstation! The Netstation.h library! Timing and the benefits of scheduling! Resources! iii iii iii i i i i ii i

3 Oeriew The Virtual Audio Space at the Uniersity of Lethbridge was designed by Andrew Butcher and Matthew Tata in The goal was to create a system capable of reproducing complex and dynamic auditory displays under programatic control and with millisecond timing accuracy suitable for EEG experiments. The system consists of up to 14 speakers controlled by a digital audio interface on a Mac OSX computer. A software library called AudioGraph was created to proide easy access to OS X s CoreAudio frameworks. A second library called SimpleAudioGraph was created to proided easy access to AudioGraph, although the experienced programmer might choose to bypass this library entirely. The system is designed to integrate with the Electrical Geodesics (EGI) Netstation EEG acquisition software and hardware. To this end, a third library called Netstation proides methods to interact with Netstation programatically and send time-stamped triggers for EEG experiments. Considerable effort was dedicated to achieing the lowest possible latency jitter between stimuli and their associated timestamps. This is why some aspects of the approach might seem odd or inefficient. Howeer when done right, the system achiees a lag of 5 ms +/-1 ms between stimuli and trigger timestamps. ii

4 Audio Hardware Studio Monitors The speakers you use depend largely on the degree of precision and control you need oer the fidelity of the sounds you will be trying to reproduce. For some applications the simplest desktop speakers might be sufficient. For auditory psychophysics it is desirable to hae high-quality speakers with a flat frequency response oer a broad range of frequencies. The Virtual Audio Space at the Uniersity of Lethbridge uses up to 14 Mackie HR-264 Actie Near-Field monitors. Actie monitors are probably preferable because they are independent of the load at other speakers and you don t need to deal with separate amplifier hardware. The main drawbacks are: they are expensie, you end up with lots of power cords lying around and you can run into 60Hz noise problems in EEG if you re not careful. Audio Interface A digital-audio interface is a deice that extends the audio capabilities of your computer. Think of it like an external audio card. Most good ones were historically firewire deices, although USB deices are becoming popular and good. The AudioGraph and SimpleAudioGraph libraries are entirely agnostic about the audio interface. The code you write to control audio presentation will likewise be almost, but not entirely, agnostic about the interface. For the most part the Mac OS takes care of the interface ia the AudioMIDI setup utility aailable in many OS X ersions. Once your hardware is configured the channels of the deice are exposed to CoreAudio and we can directly interact with them ia our audio graph. A good audio interface will hae seeral analog outputs, ultra-low (studio quality) latency and accurate A-to-D conersion oer a broad frequency range. Many manufacturers make such deices. We use the M-Audio Firewire 410. This has 8 analog outputs to drie speakers so we daisychain two of these together and link them as aggregate deices in AudioMIDI Setup. This is where your code might hae to take some hardware-specific steps. For example, on the M-Audio Firewire 410, channels 9 and 10 are SPIDF (which we don t use). Thus on the aggregate deice that CoreAudio knows about, the 16 analog outputs aailable are [0,1,2,3,4,5,6,7,10,11,12,13,14,15,16,17]; Other hardware will hae other quirks. iii

5 EEG Hardware and Software The EEG hardware consists of an EGI 128-ch amplifier and A-to-D conerter to which geodesic dense-array nets are attached. Data are acquired on an imac with the Netstation software. It is this acquisition system that is the target of time-stamped eent triggers generated optionally by code that you link to the Netstation library. Many EEG systems try to send triggers in real time and emphasize achieing low time-of-flight latencies. EGI s approach is entirely different. It is reasoned that as long as the stimulus presentation and EEG acquisition computers hae synchronized clocks, then real-time triggers are unnecessary and problematic. Instead, eents generated by the presentation system are time stamped according to the presentation computer s clock and forwarded to Netstation ia TCP/IP. Netstation schedules them flexibly into the EEG data. It doesn t care when the packets arrie - it just writes them into the data. In principle one could run an entire session, record the triggers on the stimulus presentation machine, and then upload them at the end of the session before closing the Netstation session file. In practice we work the other way around. We synchronize the clocks on the two systems and then immediately pre-schedule all the known triggers by sending them to Netstation before the stimulus eent has actually happened. This irtually eliminates the problem of clock drift because the triggers are time stamped within a few milliseconds of clock sync. i

6 Audio Software Core Audio! Core Audio is Apple s OS leel audio framework. The API exposes methods to create notional audio systems called graphs to which functional modules called audio units can be attached. Our use of CoreAudio is ery simple: We create a single instance of a graph object, attach one or more file player units, attach.wa files to these file player units, and put a matrix mixer unit in between the file players and the output channels so that we can control the gain with which each sound source is sent to each speaker. By contrast, CoreAudio also forms the basic framework for sophisticated software such as GarageBand. The AudioGraph and SimpleAudioGraph Libraries The AudioGraph library is a set of C++ methods that call into the CoreAudio framework. These set up a graph with a gien number of input and output channels, attach any audio units that are needed, interact with these units, etc. This library probably exposes all or most of what the typical deeloper might need to create irtual-reality immersie audio with any number of panning techniques (we e used arious ersions of Ambisonics and Vector-Based Panning; see Andrew Butcher s M.Sc. thesis for details). Because the detail exposed by AudioGraph is probably more than the simplest audio presentations require, a second library was created to streamline the basic functionality of AudioGraph. This library is called SimpleAudioGraph. It simplifies by wrapping seeral steps into calls such as prime() and reset() and play(). SimpleAudioGraph probably proides all the access one needs to create simple auditory experiments, een ones that feature multiple sound streams in motion. Timing and the arious models of running an experiment In EEG, timing is eerything. Fortunately the same applies to studio audio and CoreAudio was meant to gie deelopers tools to create Pro Audio software to run on the Mac OS. Consequently, CoreAudio proides ways to get ery good control oer what the audio hardware is doing and when it does it. There are two basic approaches we can take in designing our stimulus control program: Programmatically cue and play brief sound eents as needed. One way to arrange a series of audio eents is to create a different.wa file for each stimulus and attach each to a different fileplayer unit. For example one might want to play a series of 100-ms tones. The tones could be generated by any means you choose so long as it can write a.wa file to disk. PanningDemo 1 shows how to do this with some generic mono.wa files (although these are probably rather longer than would be typical). In this model the experiment control program keeps track of what needs to happen and when. If, for example, a 1000Hz pure tone is required, then it tells the fileplayer unit that has the 1000Hz.wa file attached to it to play. This is probably the most intuitie approach, but it isn t really the best way to use CoreAudio. Pre-build and pre-schedule a series of audio eents contained within one (or a few) long.wa files. Notice that the play() method of SimpleAudioGraph takes two arguments. These are the fileplayer unit to play, and the system time in nanoseconds at which to play it. If you send it zero, CoreAudio will do its best to start playback immediately, but in practice this can neer be perfectly instantaneous. Lags on the order of tens of milliseconds are entirely possible. A better approach is to tell CoreAudio to start playback at a known time in the future. CoreAudio will then schedule playback on a separate thread (called the render thread) and will do a ery good job of starting playback when you

7 told it to. For example, imagine you want a series of ten pure tones to play, one eery 1000 ms. You might pre-build a 10,000 ms long mono.wa file in whicheer is your faorite audio package (MATLAB and Praat are good options). You can attach this.wa file to a fileplayer unit and tell it to start playing at a known system time in the future (say 5 seconds from the present time). CoreAudio will start playback of the entire.wa file at almost exactly the requested time (usually within a fraction of a millisecond). Since you know when the stimuli occur in the.wa file with sample-leel accuracy (because you built it), simply add those times to the requested start time of playback. Now you know the system time at which each eent will occur with sub-millisecond precision. Notice that the Netstation library for communicating EEG triggers to the EEG acquisition computer works similarly in that you can pre-schedule trigger eents proided you know when they will occur. By also prebuilding the entire sequence of audio eents, and thus knowing the exact system time at which each eent will occur, it is possible to send ery precise timestamps to Netstation. These are passed along before the stimuli een start playing! It is important to recognize the limitations to this approach and spot where a hybrid approach might be necessary. For example the pre-built sequence of stimuli can t interact with the listener (although one could turn up the olume on different fileplayer units in near-real-time - an approach which has not been explored). One might pre-build a sequence of tones to which a listener must respond and attach this to a fileplayer unit. Two different feedback tones - one for correct and one for incorrect - might be associated with two different fileplayer units. The code might then programmatically control which feedback stimulus was played based on responses from the listener. Notice also that coneying those responses to Netstation is usually desirable. The Cocoa framework makes a timestamp aailable for a gien keypress eent which can be used to get ery accurate response triggers as well. Panning! THIS SECTION IS A WORK IN PROGRESS PanningDemo 1! THIS SECTION IS A WORK IN PROGRESS i

8 Integration with EGI s Netstation The Netstation.h library! THIS SECTION IS A WORK IN PROGRESS. Timing and the benefits of scheduling! THIS SECTION IS A WORK IN PROGRESS ii

9 Resources Naturally this document and the examples proided aren t going to be a complete tutorial. There is a lot of other information for you to seek out. The CoreAudio System Guide proided by Apple along with the CoreAudio SDK is a critical reference. For more background reading, especially about the design process and details of the Virtual Audio Space at The Uniersity of Lethbridge, look into Andrew Butcher s M.Sc. thesis proided at For papers that hae used the system see Ponjaic-Conte et al. (2012) NeuroReport and Butcher et al. (2010) Hearing Research. iii

ImageUltra Builder Version 1.1. User Guide

ImageUltra Builder Version 1.1. User Guide ImageUltra Builder Version 1.1 User Guide ImageUltra Builder Version 1.1 User Guide Note Before using this information and the product it supports, be sure to read Notices on page 83. First Edition (October

More information

Amp Server and Amp Server Pro SDK

Amp Server and Amp Server Pro SDK Amp Server Pro SDK 2.1 Users Guide (20151203) BEFORE USING THIS PRODUCT, READ, UNDERSTAND, AND AGREE TO ALL TERMS, DISCLAIMERS, AND LICENSING AGREEMENTS. The use of any EGI product (device or software)

More information

Introduction to Concurrency

Introduction to Concurrency Introduction to Concurrency CSE 333 Summer 2018 Instructor: Hal Perkins Teaching Assistants: Renshu Gu William Kim Soumya Vasisht Administriia Last exercise due Monday Concurrency using pthreads hw4 due

More information

Introduction to Concurrency

Introduction to Concurrency Introduction to Concurrency CSE 333 Autumn 2018 Instructor: Hal Perkins Teaching Assistants: Tarkan Al-Kazily Renshu Gu Trais McGaha Harshita Neti Thai Pham Forrest Timour Soumya Vasisht Yifan Xu Administriia

More information

Live Partition Mobility ESCALA REFERENCE 86 A1 85FA 01

Live Partition Mobility ESCALA REFERENCE 86 A1 85FA 01 Lie Partition Mobility ESCALA REFERENCE 86 A1 85FA 01 ESCALA Lie Partition Mobility Hardware May 2009 BULL CEDOC 357 AVENUE PATTON B.P.20845 49008 ANGERS CEDE 01 FRANCE REFERENCE 86 A1 85FA 01 The following

More information

IBM i Version 7.2. Security Service Tools IBM

IBM i Version 7.2. Security Service Tools IBM IBM i Version 7.2 Security Serice Tools IBM IBM i Version 7.2 Security Serice Tools IBM Note Before using this information and the product it supports, read the information in Notices on page 37. This

More information

ImageUltra Builder Version 2.0. User Guide

ImageUltra Builder Version 2.0. User Guide ImageUltra Builder Version 2.0 User Guide ImageUltra Builder Version 2.0 User Guide Note Before using this information and the product it supports, be sure to read Appendix A, Notices, on page 153. Fifth

More information

IBM. Basic system operations. System i. Version 6 Release 1

IBM. Basic system operations. System i. Version 6 Release 1 IBM System i Basic system operations Version 6 Release 1 IBM System i Basic system operations Version 6 Release 1 Note Before using this information and the product it supports, read the information in

More information

High Availability Guide for Distributed Systems

High Availability Guide for Distributed Systems IBM Tioli Monitoring Version 6.2.3 Fix Pack 1 High Aailability Guide for Distributed Systems SC23-9768-03 IBM Tioli Monitoring Version 6.2.3 Fix Pack 1 High Aailability Guide for Distributed Systems SC23-9768-03

More information

Operating System s Handling of Sample Rates

Operating System s Handling of Sample Rates As computer based audio begins to gain popularity in the audiophile world, more and more questions arise over what happens to audio as it goes into, and comes out of a PC. This report is intended to throw

More information

WebSphere Message Broker

WebSphere Message Broker WebSphere Message Broker User-defined Extensions Version 6 Release 0 WebSphere Message Broker User-defined Extensions Version 6 Release 0 Note Before using this information and the product it supports,

More information

1. PLLs in Stratix II and Stratix II GX Devices

1. PLLs in Stratix II and Stratix II GX Devices 1. PLLs in Stratix II and Stratix II GX Deices SII52001-4.6 Introduction Stratix II and Stratix II GX deice phase-locked loops (PLLs) proide robust clock management and synthesis for deice clock management,

More information

Monitor Developer s Guide

Monitor Developer s Guide IBM Tioli Priacy Manager for e-business Monitor Deeloper s Guide Version 1.1 SC23-4790-00 IBM Tioli Priacy Manager for e-business Monitor Deeloper s Guide Version 1.1 SC23-4790-00 Note: Before using this

More information

IBM InfoSphere Data Replication for VSAM for z/os Version 11 Release 3. Guide and Reference

IBM InfoSphere Data Replication for VSAM for z/os Version 11 Release 3. Guide and Reference IBM InfoSphere Data Replication for VSAM for z/os Version 11 Release 3 Guide and Reference IBM InfoSphere Data Replication for VSAM for z/os Version 11 Release 3 Guide and Reference Note Before using

More information

iseries Experience Reports Configuring Management Central Connections for Firewall Environments

iseries Experience Reports Configuring Management Central Connections for Firewall Environments iseries Experience Reports Configuring Management Central Connections for Firewall Enironments iseries Experience Reports Configuring Management Central Connections for Firewall Enironments Copyright

More information

High Availability Guide for Distributed Systems

High Availability Guide for Distributed Systems IBM Tioli Monitoring Version 6.3.0 High Aailability Guide for Distributed Systems SC22-5455-00 IBM Tioli Monitoring Version 6.3.0 High Aailability Guide for Distributed Systems SC22-5455-00 Note Before

More information

Apogee Quartet. QuickStart Guide

Apogee Quartet. QuickStart Guide Apogee Quartet QuickStart Guide V1, September, 2012 Contents Overview! 3 Introduction! 3 Package contents! 4 Quartet panel tour! 5 Display and touchpad tour! 7 Connecting to your Mac! 8 Adjusting Input

More information

IBM i Version 7.2. Networking TCP/IP troubleshooting IBM

IBM i Version 7.2. Networking TCP/IP troubleshooting IBM IBM i Version 7.2 Networking TCP/IP troubleshooting IBM IBM i Version 7.2 Networking TCP/IP troubleshooting IBM Note Before using this information and the product it supports, read the information in

More information

Introduction to Computer Science

Introduction to Computer Science Introduction to Computer Science CSCI 109 China Tianhe-2 Andrew Goodney Spring 2019 Lecture 8: Operating Systems March 18th, 2019 Operating Systems ì Working Together 1 Schedule 2 Agenda u Talk about operating

More information

Introduction and Planning Guide

Introduction and Planning Guide Infoprint Serer for iseries Introduction and Planning Guide Version 5, Release 3.0 G544-5774-02 Infoprint Serer for iseries Introduction and Planning Guide Version 5, Release 3.0 G544-5774-02 Note Before

More information

IBM Tealeaf cximpact Version 9 December 4, Tealeaf Reporting Guide

IBM Tealeaf cximpact Version 9 December 4, Tealeaf Reporting Guide IBM Tealeaf cximpact Version 9 December 4, 2014 Tealeaf Reporting Guide Note Before using this information and the product it supports, read the information in Notices on page 175. This edition applies

More information

iplanetwebserveruser sguide

iplanetwebserveruser sguide IBM Tioli Monitoring for Web Infrastructure iplanetwebsereruser sguide Version 5.1.0 SH19-4574-00 IBM Tioli Monitoring for Web Infrastructure iplanetwebsereruser sguide Version 5.1.0 SH19-4574-00 Note

More information

xseries Systems Management IBM Diagnostic Data Capture 1.0 Installation and User s Guide

xseries Systems Management IBM Diagnostic Data Capture 1.0 Installation and User s Guide xseries Systems Management IBM Diagnostic Data Capture 1.0 Installation and User s Guide Note Before using this information and the product it supports, read the general information in Appendix C, Notices,

More information

IBM Agent Builder Version User's Guide IBM SC

IBM Agent Builder Version User's Guide IBM SC IBM Agent Builder Version 6.3.5 User's Guide IBM SC32-1921-17 IBM Agent Builder Version 6.3.5 User's Guide IBM SC32-1921-17 Note Before you use this information and the product it supports, read the information

More information

Registration Authority Desktop Guide

Registration Authority Desktop Guide IBM SecureWay Trust Authority Registration Authority Desktop Guide Version 3 Release 1.1 SH09-4530-01 IBM SecureWay Trust Authority Registration Authority Desktop Guide Version 3 Release 1.1 SH09-4530-01

More information

Tivoli Monitoring: Windows OS Agent

Tivoli Monitoring: Windows OS Agent Tioli Monitoring: Windows OS Agent Version 6.2.2 User s Guide SC32-9445-03 Tioli Monitoring: Windows OS Agent Version 6.2.2 User s Guide SC32-9445-03 Note Before using this information and the product

More information

IBM Director Virtual Machine Manager 1.0 Installation and User s Guide

IBM Director Virtual Machine Manager 1.0 Installation and User s Guide IBM Director 4.20 Virtual Machine Manager 1.0 Installation and User s Guide Note Before using this information and the product it supports, read the general information in Appendix D, Notices, on page

More information

IBM i Version 7.3. Networking TCP/IP troubleshooting IBM

IBM i Version 7.3. Networking TCP/IP troubleshooting IBM IBM i Version 7.3 Networking TCP/IP troubleshooting IBM IBM i Version 7.3 Networking TCP/IP troubleshooting IBM Note Before using this information and the product it supports, read the information in

More information

IBM. Client Configuration Guide. IBM Explorer for z/os. Version 3 Release 1 SC

IBM. Client Configuration Guide. IBM Explorer for z/os. Version 3 Release 1 SC IBM Explorer for z/os IBM Client Configuration Guide Version 3 Release 1 SC27-8435-01 IBM Explorer for z/os IBM Client Configuration Guide Version 3 Release 1 SC27-8435-01 Note Before using this information,

More information

Internet Information Server User s Guide

Internet Information Server User s Guide IBM Tioli Monitoring for Web Infrastructure Internet Information Serer User s Guide Version 5.1.0 SH19-4573-00 IBM Tioli Monitoring for Web Infrastructure Internet Information Serer User s Guide Version

More information

Common Server Administration Guide

Common Server Administration Guide Content Manager OnDemand for i Version 7 Release 2 Common Serer Administration Guide SC19-2792-01 Content Manager OnDemand for i Version 7 Release 2 Common Serer Administration Guide SC19-2792-01 Note

More information

CIGAL. CIGAL Workshop. Jim Voyvodic May 13, 2015

CIGAL. CIGAL Workshop. Jim Voyvodic May 13, 2015 CIGAL CIGAL Workshop Jim Voyvodic May 13, 2015 Advanced topics These CIGAL topics will not be covered in this session: Showplay s modular design - How to replace standard components with your own Structured

More information

IBM. Networking TCP/IP troubleshooting. IBM i 7.1

IBM. Networking TCP/IP troubleshooting. IBM i 7.1 IBM IBM i Networking TCP/IP troubleshooting 7.1 IBM IBM i Networking TCP/IP troubleshooting 7.1 Note Before using this information and the product it supports, read the information in Notices, on page

More information

IBM Interact Version 9 Release 0 May 31, User's Guide

IBM Interact Version 9 Release 0 May 31, User's Guide IBM Interact Version 9 Release 0 May 31, 2013 User's Guide Note Before using this information and the product it supports, read the information in Notices on page 97. This edition applies to ersion 9,

More information

iseries Configuring Management Central Connections for Firewall Environments

iseries Configuring Management Central Connections for Firewall Environments iseries Configuring Management Central Connections for Firewall Enironments iseries Configuring Management Central Connections for Firewall Enironments Copyright International Business Machines Corporation

More information

Ensuring Catalog and Control Data Set Integrity

Ensuring Catalog and Control Data Set Integrity white paper Ensuring Catalog and Control Data Set Integrity Part I: Catalog Integrity Ensuring Catalog and Control Data Set Integrity Part 1: Catalog Integrity A White Paper by Rocket Software Version

More information

Computer Audio Setup Guide

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

More information

IBM Security Access Manager for Web Version 7.0. Upgrade Guide SC

IBM Security Access Manager for Web Version 7.0. Upgrade Guide SC IBM Security Access Manager for Web Version 7.0 Upgrade Guide SC23-6503-02 IBM Security Access Manager for Web Version 7.0 Upgrade Guide SC23-6503-02 Note Before using this information and the product

More information

IBM Interact Advanced Patterns and IBM Interact Version 9 Release 1.1 November 26, Integration Guide

IBM Interact Advanced Patterns and IBM Interact Version 9 Release 1.1 November 26, Integration Guide IBM Interact Adanced Patterns and IBM Interact Version 9 Release 1.1 Noember 26, 2014 Integration Guide Note Before using this information and the product it supports, read the information in Notices on

More information

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

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

More information

System i and System p. Capacity on Demand

System i and System p. Capacity on Demand System i and System p Capacity on Demand System i and System p Capacity on Demand Note Before using this information and the product it supports, read the information in Notices on page 65 and the IBM

More information

IBM Tivoli OMEGAMON XE for CICS TG on z/os Version User's Guide SC

IBM Tivoli OMEGAMON XE for CICS TG on z/os Version User's Guide SC IBM Tioli OMEGAMON XE for CICS TG on z/os Version 5.1.0 User's Guide SC14-7476-00 IBM Tioli OMEGAMON XE for CICS TG on z/os Version 5.1.0 User's Guide SC14-7476-00 Note Before using this information and

More information

IBM Unica Detect Version 8 Release 5 October 26, Administrator's Guide

IBM Unica Detect Version 8 Release 5 October 26, Administrator's Guide IBM Unica Detect Version 8 Release 5 October 26, 2011 Administrator's Guide Note Before using this information and the product it supports, read the information in Notices on page 175. This edition applies

More information

IBM Operational Decision Manager Version 8 Release 5. Installation Guide

IBM Operational Decision Manager Version 8 Release 5. Installation Guide IBM Operational Decision Manager Version 8 Release 5 Installation Guide Note Before using this information and the product it supports, read the information in Notices on page 51. This edition applies

More information

GoPro Fusion Using the GoPro Fusion 360 Camera GoPro.com

GoPro Fusion Using the GoPro Fusion 360 Camera GoPro.com Have you ever heard a blindfolded octopus unwrap a cellophane-covered bathtub? ~ The Phantom Tollbooth GoPro Fusion Using the GoPro Fusion 360 Camera GoPro.com College of Communications Spatial Audio Table

More information

OBJECTIVE2+ODAC REVB

OBJECTIVE2+ODAC REVB OPERATING INSTRUCTIONS AMP+DACS OBJECTIVE2+ODAC REVB SUPPORT ONLINE BY PHONE BY MAIL CONTACT@JDSLABS.COM JDSLABS.COM/SUPPORT 314-252-0936 9:30AM-6PM CST, MONDAY THROUGH FRIDAY 909 N BLUFF RD COLLINSVILLE,

More information

THE ELEMENT SUPPORT OPERATING INSTRUCTIONS AMP+DACS ONLINE BY PHONE BY MAIL

THE ELEMENT SUPPORT OPERATING INSTRUCTIONS AMP+DACS ONLINE BY PHONE BY MAIL OPERATING INSTRUCTIONS AMP+DACS THE ELEMENT SUPPORT ONLINE BY PHONE BY MAIL CONTACT@JDSLABS.COM JDSLABS.COM/SUPPORT 314-252-0936 9:30AM-6PM CST, MONDAY THROUGH FRIDAY 909 N BLUFF RD COLLINSVILLE, IL 62234

More information

Create a functional test

Create a functional test Create a functional test Contents Sr. Title Page Introduction Create a functional test 1 Lesson 1 Setting up Rational Functional Tester Setting logging options Creating a Functional Tester project 2 2

More information

WebSphere Message Broker ESQL

WebSphere Message Broker ESQL WebSphere Message Broker ESQL Version 6 Release 0 WebSphere Message Broker ESQL Version 6 Release 0 Note Before using this information and the product it supports, read the information in the Notices

More information

IBM XIV Gen3 Storage System. Release Notes for version

IBM XIV Gen3 Storage System. Release Notes for version IBM XIV Gen3 Storage System Release Notes for ersion 11.1.0 Contents Release Notes............ 1 New in this release............ 1 Enhancements.............. 1 SYS-148864.............. 1 Aailability of

More information

Software Installation Audacity Recording Software

Software Installation Audacity Recording Software USB Turntable (ittusb) Software Installation Audacity Recording Software Table of Contents General Software Notes... 2 Audacity Software Installation... 3 Before Starting the Software... 3 Software Configuration...

More information

CloverETL User's Guide

CloverETL User's Guide IBM Initiate Workbench CloerETL User's Guide Version9Release7 SC19-3165-02 IBM Initiate Workbench CloerETL User's Guide Version9Release7 SC19-3165-02 Note Before using this information and the product

More information

Preferred Computer Settings for a PC using Windows 7 or 8 with JRiver Media Engine 20.xx

Preferred Computer Settings for a PC using Windows 7 or 8 with JRiver Media Engine 20.xx McIntosh D150 Preferred Computer Settings for a PC using Windows 7 or 8 with JRiver Media Engine 20.xx To play PC computer, PCM, DSD files over the D150 the following hardware will be needed: 1-A modern

More information

Text Search Fast Indexer

Text Search Fast Indexer Text Search Fast Indexer ii Text Search Fast Indexer Contents Searching on a Content Manager 8 repository using the fast indexer.... 1 Installing the fast indexer.......... 1 Setting parameters and enironment

More information

Solving Audio Subsystem Challenges Using a Crossfade/Level Controller Algorithm in Portable Media Applications

Solving Audio Subsystem Challenges Using a Crossfade/Level Controller Algorithm in Portable Media Applications Soling Audio Subsystem Challenges Using a Crossfade/Leel Controller Algorithm in Portable Media Applications Danny Jochelson DSP Solutions R&D Digital Audio Branch Texas Instruments, dsjochel@ti.com Jason

More information

IBM. Systems management Logical partitions. System i. Version 6 Release 1

IBM. Systems management Logical partitions. System i. Version 6 Release 1 IBM System i Systems management Logical partitions Version 6 Release 1 IBM System i Systems management Logical partitions Version 6 Release 1 Note Before using this information and the product it supports,

More information

IBM Tivoli Monitoring: AIX Premium Agent Version User's Guide SA

IBM Tivoli Monitoring: AIX Premium Agent Version User's Guide SA Tioli IBM Tioli Monitoring: AIX Premium Agent Version 6.2.2.1 User's Guide SA23-2237-06 Tioli IBM Tioli Monitoring: AIX Premium Agent Version 6.2.2.1 User's Guide SA23-2237-06 Note Before using this information

More information

Configure Video and Audio Settings

Configure Video and Audio Settings 14 CHAPTER Revised: November 24, 2010 Concepts, page 14-1 s, page 14-3 Reference, page 14-6 Concepts Performance Factors, page 14-1 Guidelines, page 14-2 Workflows, page 14-3 Performance Factors Understand

More information

Nick Tonias, P.E. The CEDRA Corporation. Ian Peebles, GISP The City of Edmond

Nick Tonias, P.E. The CEDRA Corporation. Ian Peebles, GISP The City of Edmond Nick Tonias, P.E. The CEDRA Corporation Ian Peebles, GISP The City of Edmond u u u u u u Brief Intro to CEDRA and City of Edmond Creating Apps using ArcGIS Online Creating Apps using ArcGIS Serer Presentation

More information

Motion Models (cont) 1 2/17/2017

Motion Models (cont) 1 2/17/2017 Motion Models (cont) 1 /17/017 Sampling from the Velocity Motion Model suppose that a robot has a map of its enironment and it needs to find its pose in the enironment this is the robot localization problem

More information

Atmosphere / Trilogy Intel Mac Wrappers

Atmosphere / Trilogy Intel Mac Wrappers Atmosphere / Trilogy Intel Mac Wrappers Table Of Contents Introduction What Does It Do & How Does It Work? Instructions Tutorial Videos How To Authorize Wrapper Features Song Compatibility Editing Sounds

More information

Preferred Settings to Play all File Types with JRiver Media Engine 20 using a Windows 7 or 8 Computer

Preferred Settings to Play all File Types with JRiver Media Engine 20 using a Windows 7 or 8 Computer WADIA di122 Preferred Settings to Play all File Types with JRiver Media Engine 20 using a Windows 7 or 8 Computer To play DSD-DXD files over the WADIA di122 the following hardware will be needed: 1-A modern

More information

IBM Geographically Dispersed Resiliency for Power Systems. Version Deployment Guide IBM

IBM Geographically Dispersed Resiliency for Power Systems. Version Deployment Guide IBM IBM Geographically Dispersed Resiliency for Power Systems Version 1.2.0.0 Deployment Guide IBM IBM Geographically Dispersed Resiliency for Power Systems Version 1.2.0.0 Deployment Guide IBM Note Before

More information

NuForce 192kHz/24bit USB Driver Setup Guide

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

More information

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

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

More information

Robinhood: Towards Efficient Work-stealing in Virtualized Environments

Robinhood: Towards Efficient Work-stealing in Virtualized Environments 1 : Towards Efficient Work-stealing in Virtualized Enironments Yaqiong Peng, Song Wu, Member, IEEE, Hai Jin, Senior Member, IEEE Abstract Work-stealing, as a common user-leel task scheduler for managing

More information

BrainProducts actichamp driver

BrainProducts actichamp driver BrainProducts actichamp driver User Documentation 1 Introduction This document describes how to use the OpenViBE driver for a BrainProducts actichamp amplifier. The documentation will cover the device

More information

Blaze Audio Karaoke Sing-n-Burn

Blaze Audio Karaoke Sing-n-Burn Blaze Audio Karaoke Sing-n-Burn Manual Copyright 2005 by Singing Electrons, Inc. Contents 1.0 Getting Started...3 1.1 Welcome to Karaoke Sing-n-Burn!...3 1.2 Features...3 1.3 Learning to Use Karaoke Sing-n-Burn...3

More information

IBM Cloud Orchestrator Version Content Development Guide IBM

IBM Cloud Orchestrator Version Content Development Guide IBM IBM Cloud Orchestrator Version 2.5.0.8 Content Deelopment Guide IBM Note Before using this information and the product it supports, read the information in Notices. This edition applies to ersion 2, release

More information

Deployment Overview Guide

Deployment Overview Guide IBM Security Priileged Identity Manager Version 1.0 Deployment Oeriew Guide SC27-4382-00 IBM Security Priileged Identity Manager Version 1.0 Deployment Oeriew Guide SC27-4382-00 Note Before using this

More information

Monitoring: Windows OS Agent Version Fix Pack 2 (Revised May 2010) User s Guide SC

Monitoring: Windows OS Agent Version Fix Pack 2 (Revised May 2010) User s Guide SC Tioli Monitoring: Windows OS Agent Version 6.2.2 Fix Pack 2 (Reised May 2010) User s Guide SC32-9445-03 Tioli Monitoring: Windows OS Agent Version 6.2.2 Fix Pack 2 (Reised May 2010) User s Guide SC32-9445-03

More information

RAL-24192DM1 Setup Guide

RAL-24192DM1 Setup Guide RAL-24192DM1 Setup Guide Rev. 1.0 15/June/2012 RATOC Systems, Inc. www.ratocsystems.com Osaka, Japan Index 1. Introduction -------------------------------------------------------------------------- 3 1-1.

More information

IBM Sterling Gentran:Server for Windows. Installation Guide. Version 5.3.1

IBM Sterling Gentran:Server for Windows. Installation Guide. Version 5.3.1 IBM Sterling Gentran:Serer for Windows Installation Guide Version 5.3.1 IBM Sterling Gentran:Serer for Windows Installation Guide Version 5.3.1 Note Before using this information and the product it supports,

More information

07 - TRANSCRIPTION... 1 TRANSCRIPTION MODE Turning on Transcription Mode Start transcribing... 2

07 - TRANSCRIPTION... 1 TRANSCRIPTION MODE Turning on Transcription Mode Start transcribing... 2 07 - Transcription Contents 07 - TRANSCRIPTION... 1 TRANSCRIPTION MODE... 1 Turning on Transcription Mode... 1 Start transcribing... 2 Adjust rewind interval, volume and playback speed... 3 Coding while

More information

Digidesign CoreAudio Driver Usage Guide

Digidesign CoreAudio Driver Usage Guide Digidesign CoreAudio Driver Usage Guide Version 7.0 for Pro Tools HD and Pro Tools LE Systems on Mac OS X 10.4 ( Tiger ) Only Introduction This document covers two versions of the CoreAudio Driver, as

More information

SmartCloud Notes. Administering SmartCloud Notes: Hybrid Environment March 2015

SmartCloud Notes. Administering SmartCloud Notes: Hybrid Environment March 2015 SmartCloud Notes Administering SmartCloud Notes: Hybrid Enironment March 2015 SmartCloud Notes Administering SmartCloud Notes: Hybrid Enironment March 2015 Note Before using this information and the product

More information

LotusLive. LotusLive Engage and LotusLive Connections User's Guide

LotusLive. LotusLive Engage and LotusLive Connections User's Guide LotusLie LotusLie Engage and LotusLie Connections User's Guide LotusLie LotusLie Engage and LotusLie Connections User's Guide Note Before using this information and the product it supports, read the information

More information

EEG and Video Data Acquisition with ASA. Tutorial

EEG and Video Data Acquisition with ASA. Tutorial EEG and Video Data Acquisition with ASA Tutorial January 19, 2009 A.N.T. Software BV Enschede, The Netherlands e-mail info@ant-neuro.com phone +31 (0)53-4365175 fax +31 (0)53-4303795 internet www.ant-neuro.com

More information

OVERVIEW SYSTEM REQUIREMENTS

OVERVIEW SYSTEM REQUIREMENTS USER GUIDE OVERVIEW The AI-1 USB Audio Interface adds studio-quality Input and Output capabilities to your PC or Mac, turning your recording software into a full recording setup. With its high quality

More information

Hidden Line and Surface

Hidden Line and Surface Copyright@00, YZU Optimal Design Laboratory. All rights resered. Last updated: Yeh-Liang Hsu (00--). Note: This is the course material for ME550 Geometric modeling and computer graphics, Yuan Ze Uniersity.

More information

ThinkCentre User Guide. Machine Types: 7522, 7560, 7610, and 7705

ThinkCentre User Guide. Machine Types: 7522, 7560, 7610, and 7705 ThinkCentre User Guide Machine Types: 7522, 7560, 7610, and 7705 ThinkCentre User Guide Note Before using this information and the product it supports, be sure to read and understand the ThinkCentre Safety

More information

IBM Netcool Operations Insight Version 1 Release 4.1. Integration Guide IBM SC

IBM Netcool Operations Insight Version 1 Release 4.1. Integration Guide IBM SC IBM Netcool Operations Insight Version 1 Release 4.1 Integration Guide IBM SC27-8601-08 Note Before using this information and the product it supports, read the information in Notices on page 403. This

More information

Availability High availability overview

Availability High availability overview System i Aailability High aailability oeriew Version 6 Release 1 System i Aailability High aailability oeriew Version 6 Release 1 Note Before using this information and the product it supports, read the

More information

Blue Point Engineering

Blue Point Engineering Blue Point Engineering Board - Pro Module (E) Instruction Pointing the Way to Solutions! Controller I Version 2.1 The Board Pro E Module provides the following features: Up to 4 minutes recording time

More information

Installing and Configuring Tivoli Enterprise Data Warehouse

Installing and Configuring Tivoli Enterprise Data Warehouse Installing and Configuring Tioli Enterprise Data Warehouse Version 1 Release 1 GC32-0744-00 Installing and Configuring Tioli Enterprise Data Warehouse Version 1 Release 1 GC32-0744-00 Installing and Configuring

More information

IBM BigFix Inventory Version Scalability Guide. Version 1 IBM

IBM BigFix Inventory Version Scalability Guide. Version 1 IBM IBM BigFix Inentory Version 9.2.4 Scalability Guide Version 1 IBM IBM BigFix Inentory Version 9.2.4 Scalability Guide Version 1 IBM Scalability Guide This edition applies to ersion 9.2.4 of IBM BigFix

More information

Podcasting with GarageBand The simple guide to making your own podcast

Podcasting with GarageBand The simple guide to making your own podcast Podcasting with GarageBand The simple guide to making your own podcast Create a podcast using technologies in the Gaskill Learning Technologies Center: - imac computer - Snowball microphone - GarageBand

More information

NuForce DAC-80 User s Guide

NuForce DAC-80 User s Guide NuForce DAC-80 User s Guide Quick Start Guide: Make sure that the AC Voltage selector switch at the rear of the unit is switched to the appropriate voltage for your country. All DAC-80s are shipped with

More information

ThinkCentre User Guide. Machine Types: 0804, 0809, 0811, 0822, 0825, 0828, 0830, 0833, 0837, 0843, 0845, 0847, and 0849

ThinkCentre User Guide. Machine Types: 0804, 0809, 0811, 0822, 0825, 0828, 0830, 0833, 0837, 0843, 0845, 0847, and 0849 ThinkCentre User Guide Machine Types: 0804, 0809, 0811, 0822, 0825, 0828, 0830, 0833, 0837, 0843, 0845, 0847, and 0849 ThinkCentre User Guide Note Before using this information and the product it supports,

More information

VSAM File System Reply Messages

VSAM File System Reply Messages COBOL for AIX VSAM File System Reply Messages Version 3.1 SC23-8568-00 COBOL for AIX VSAM File System Reply Messages Version 3.1 SC23-8568-00 Note! Before using this information and the product it supports,

More information

IBM TS7700 v8.41 Phase 2. Introduction and Planning Guide IBM GA

IBM TS7700 v8.41 Phase 2. Introduction and Planning Guide IBM GA IBM TS7700 8.41 Phase 2 Introduction and Planning Guide IBM GA32-0567-25 Note Before using this information and the product it supports, read the information in Safety and Enironmental notices on page

More information

Tivoli IBM Tivoli Advanced Catalog Management for z/os

Tivoli IBM Tivoli Advanced Catalog Management for z/os Tioli IBM Tioli Adanced Catalog Management for z/os Version 2.2.0 Monitoring Agent User s Guide SC23-9818-00 Tioli IBM Tioli Adanced Catalog Management for z/os Version 2.2.0 Monitoring Agent User s Guide

More information

Lightweight AccessAgent mode on Terminal Server SDK

Lightweight AccessAgent mode on Terminal Server SDK IBM Security Access Manager for Enterprise Single Sign-On Version 8.2 Lightweight AccessAgent mode on Terminal Serer SDK SC14-7657-00 IBM Security Access Manager for Enterprise Single Sign-On Version

More information

A New Multicast Wavelength Assignment Algorithm in Wavelength-Converted Optical Networks

A New Multicast Wavelength Assignment Algorithm in Wavelength-Converted Optical Networks Int J Communications, Network and System Sciences, 2009, 2, 912-916 doi:104236/ijcns200929106 Published Online December 2009 (http://wwwscirporg/journal/ijcns/) A New Multicast Waelength Assignment Algorithm

More information

AVM 105S, 115S: Valve actuator with SAUTER Universal Technology (SUT)

AVM 105S, 115S: Valve actuator with SAUTER Universal Technology (SUT) Product data sheet 7.1 51.362 AVM 105S, 115S: Vale actuator with SAUTER Uniersal Technology (SUT) How energy efficiency is improed Automatic adaptation to ale, precision actiation and high energy efficiency

More information

IBM Storage Management Pack for Microsoft System Center Operations Manager (SCOM) Version Release Notes

IBM Storage Management Pack for Microsoft System Center Operations Manager (SCOM) Version Release Notes IBM Storage Management Pack for Microsoft System Center Operations Manager (SCOM) Version 2.4.0 Release Notes First Edition (June 2015) This edition applies to ersion 2.4.0 of the IBM Storage Management

More information

IBM Tealeaf UI Capture j2 Version 2 Release 1 May 15, IBM Tealeaf UI Capture j2 Release Notes

IBM Tealeaf UI Capture j2 Version 2 Release 1 May 15, IBM Tealeaf UI Capture j2 Release Notes IBM Tealeaf UI Capture j2 Version 2 Release 1 May 15, 2013 IBM Tealeaf UI Capture j2 Release Notes Note Before using this information and the product it supports, read the information in Notices on page

More information

User Manual. Please read this manual carefully before using the Phoenix Octopus

User Manual. Please read this manual carefully before using the Phoenix Octopus User Manual Please read this manual carefully before using the Phoenix Octopus For additional help and updates, refer to our website To contact Phoenix Audio for support, please send a detailed e-mail

More information

WebSphere MQ. Clients GC

WebSphere MQ. Clients GC WebSphere MQ Clients GC34-6058-01 Note! Before using this information and the product it supports, be sure to read the general information under Notices on page 179. Second edition (October 2002) This

More information

High Availability Policies Guide

High Availability Policies Guide Tioli System Automation for Multiplatforms High Aailability Policies Guide Version 4 Release 1 SC34-2660-03 Tioli System Automation for Multiplatforms High Aailability Policies Guide Version 4 Release

More information