Tone.Master is a single master output which connects to context.destination (the speakers). Before going to the DestinationNode, audio is run through a limiter (a DynamicsCompressorNode with threshold of 0db and a high ratio) to reduce the chances of blowing any ear drums.
The Transport allows events to be triggered along a musical timeline. The clock-source is bound to an Oscillator which allows for smooth tempo-curving and sample-accurate timing.
### Properties
#### .state {string}
The current state of the transport ('stopped' | 'started' | 'paused')
* interval - {number | Notation | TransportTime} see [Timing and Musical Notation](#timing-and-musical-notation) for more information about timing in Tone.js
* timeoutTime - {number | Notation | TransportTime} see [Timing and Musical Notation](#timing-and-musical-notation) for more information about timing in Tone.js
All ToneNodes that accept a time as an argument can parse that time in a few ways.
#### 'now' relative timing
A timing value preceeded by a "+" will be now-relative meaning that the time will be added to the context's currentTime.
```javascript
oscillator.start("+1") //starts exactly 1 second from now
```
#### Notation
Timing can also be described in musical notation. A quarter-note is notated as "4n" and a sixteenth-note triplet is notated as "16t". Three measures is "3m". The tempo and time signature is set by Tone.Transport. This can be combined with now-relative timing.
```javascript
lfo.setFrequency("4n") //oscillates at the rate of a quarter note
```
#### Transport Time
Transport Time is described measures:quater-notes:sixteenth-notes.