| Index: client/html/generated/src/interface/RealtimeAnalyserNode.dart
|
| diff --git a/client/html/generated/src/interface/RealtimeAnalyserNode.dart b/client/html/generated/src/interface/RealtimeAnalyserNode.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a8d2f97c3b82544c9953767aa0cfde87220921b8
|
| --- /dev/null
|
| +++ b/client/html/generated/src/interface/RealtimeAnalyserNode.dart
|
| @@ -0,0 +1,32 @@
|
| +// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +// WARNING: Do not edit - generated code.
|
| +
|
| +interface RealtimeAnalyserNode extends AudioNode {
|
| +
|
| + int get fftSize();
|
| +
|
| + void set fftSize(int value);
|
| +
|
| + int get frequencyBinCount();
|
| +
|
| + num get maxDecibels();
|
| +
|
| + void set maxDecibels(num value);
|
| +
|
| + num get minDecibels();
|
| +
|
| + void set minDecibels(num value);
|
| +
|
| + num get smoothingTimeConstant();
|
| +
|
| + void set smoothingTimeConstant(num value);
|
| +
|
| + void getByteFrequencyData(Uint8Array array);
|
| +
|
| + void getByteTimeDomainData(Uint8Array array);
|
| +
|
| + void getFloatFrequencyData(Float32Array array);
|
| +}
|
|
|